diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 71753d5a..10ac8913 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -47,11 +47,10 @@ make backend-test
# Start Development Environment
-To run Fasten from source, you'll need to create 3 separate processes:
+To run Fasten from source, you'll need to create 2 separate processes:
- Angular Frontend
- Go Backend
-- CouchDB Database
First we'll create a development config file (`config.dev.yaml`)
diff --git a/docker-compose.yml b/docker-compose.yml
index 07f9590e..dde19bc7 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -1,16 +1,17 @@
version: "3.9"
services:
- couchdb:
+ fasten:
+ # NOTE: only developers need to build Fasten from source
+ # For production, use the pre-built image from GitHub Packages
+ # ghcr.io/fastenhealth/fasten-onprem:main
build:
context: .
dockerfile: Dockerfile
-# environment:
-# - COUCHDB_USER=admin
-# - COUCHDB_PASSWORD=password
+ args:
+ - FASTEN_ENV=prod
+# - FASTEN_ENV=sandbox
ports:
- "9090:8080"
- - "5984:5984"
volumes:
- - ./.couchdb/data:/opt/couchdb/data
- - ./.couchdb/config:/opt/couchdb/etc/local.d
+ - ./db:/opt/fasten/db
# - ./config.example.yaml:/opt/fasten/config/config.yaml
diff --git a/frontend/package.json b/frontend/package.json
index d2a223af..465fd3ba 100644
--- a/frontend/package.json
+++ b/frontend/package.json
@@ -36,7 +36,6 @@
"bootstrap": "^4.4.1",
"chart.js": "2.9.4",
"fhirpath": "^3.3.0",
- "fuse.js": "^6.6.2",
"humanize-duration": "^3.27.3",
"idb": "^7.1.0",
"jose": "^4.10.4",
@@ -44,6 +43,7 @@
"ng2-charts": "^2.3.0",
"ngx-dropzone": "^3.1.0",
"ngx-highlightjs": "^7.0.1",
+ "ngx-infinite-scroll": "^14.0.0",
"ngx-moment": "^6.0.2",
"rxjs": "~6.5.4",
"tslib": "^2.0.0",
diff --git a/frontend/src/app/app.module.ts b/frontend/src/app/app.module.ts
index 6d291fce..b7ff9d62 100644
--- a/frontend/src/app/app.module.ts
+++ b/frontend/src/app/app.module.ts
@@ -30,7 +30,7 @@ import { MedicalHistoryComponent } from './pages/medical-history/medical-history
import { ReportLabsComponent } from './pages/report-labs/report-labs.component';
import {PipesModule} from './pipes/pipes.module';
import { ResourceCreatorComponent } from './pages/resource-creator/resource-creator.component';
-
+import { InfiniteScrollModule } from 'ngx-infinite-scroll';
@NgModule({
declarations: [
@@ -62,6 +62,7 @@ import { ResourceCreatorComponent } from './pages/resource-creator/resource-crea
HighlightModule,
MomentModule,
PipesModule,
+ InfiniteScrollModule
],
providers: [
{
diff --git a/frontend/src/app/models/fasten/metadata-source.ts b/frontend/src/app/models/fasten/metadata-source.ts
index 8af9bc7c..a2ead4cf 100644
--- a/frontend/src/app/models/fasten/metadata-source.ts
+++ b/frontend/src/app/models/fasten/metadata-source.ts
@@ -1,4 +1,6 @@
export class MetadataSource {
+ platform_type: string
+ brand_logo?: string
source_type: string
display: string
category: string[]
diff --git a/frontend/src/app/models/lighthouse/lighthouse-source-metadata.ts b/frontend/src/app/models/lighthouse/lighthouse-source-metadata.ts
index 51e4c7a6..7075fe62 100644
--- a/frontend/src/app/models/lighthouse/lighthouse-source-metadata.ts
+++ b/frontend/src/app/models/lighthouse/lighthouse-source-metadata.ts
@@ -1,4 +1,7 @@
-export class LighthouseSourceMetadata {
+import {MetadataSource} from '../fasten/metadata-source';
+
+export class LighthouseSourceMetadata extends MetadataSource {
+
authorization_endpoint: string
token_endpoint: string
introspection_endpoint: string
diff --git a/frontend/src/app/models/lighthouse/lighthouse-source-search.ts b/frontend/src/app/models/lighthouse/lighthouse-source-search.ts
new file mode 100644
index 00000000..782dfa4b
--- /dev/null
+++ b/frontend/src/app/models/lighthouse/lighthouse-source-search.ts
@@ -0,0 +1,21 @@
+import {MetadataSource} from '../fasten/metadata-source';
+
+export class LighthouseSourceSearch {
+ _scroll_id: string;
+ took: number;
+ timed_out: boolean;
+ hits: {
+ total: {
+ value: number;
+ relation: string;
+ };
+ max_score: number;
+ hits: {
+ _index: string;
+ _type: string;
+ _id: string;
+ _score: number;
+ _source: MetadataSource;
+ }[];
+ };
+}
diff --git a/frontend/src/app/pages/dashboard/dashboard.component.ts b/frontend/src/app/pages/dashboard/dashboard.component.ts
index c03a510b..c6932c67 100644
--- a/frontend/src/app/pages/dashboard/dashboard.component.ts
+++ b/frontend/src/app/pages/dashboard/dashboard.component.ts
@@ -43,6 +43,7 @@ export class DashboardComponent implements OnInit {
this.metadataSource = metadataSource
this.metadataSource["manual"] = {
"source_type": "manual",
+ "platform_type": "manual",
"display": "Manual",
"category": ["Manual"],
"hidden": false,
diff --git a/frontend/src/app/pages/medical-sources/medical-sources.component.html b/frontend/src/app/pages/medical-sources/medical-sources.component.html
index db883df0..2a228020 100644
--- a/frontend/src/app/pages/medical-sources/medical-sources.component.html
+++ b/frontend/src/app/pages/medical-sources/medical-sources.component.html
@@ -32,7 +32,7 @@
-
+
@@ -71,34 +71,38 @@
-
-
+
-
+
diff --git a/frontend/src/app/pages/medical-sources/medical-sources.component.ts b/frontend/src/app/pages/medical-sources/medical-sources.component.ts
index 72402c83..64f08916 100644
--- a/frontend/src/app/pages/medical-sources/medical-sources.component.ts
+++ b/frontend/src/app/pages/medical-sources/medical-sources.component.ts
@@ -10,8 +10,9 @@ import {Location} from '@angular/common';
import {ToastService} from '../../services/toast.service';
import {ToastNotification, ToastType} from '../../models/fasten/toast';
import {environment} from '../../../environments/environment';
-import {forkJoin} from 'rxjs';
-import Fuse from 'fuse.js'
+import {BehaviorSubject, forkJoin, Subject} from 'rxjs';
+import {LighthouseSourceSearch} from '../../models/lighthouse/lighthouse-source-search';
+import {debounceTime, distinctUntilChanged} from 'rxjs/operators';
// If you dont import this angular will import the wrong "Location"
export const sourceConnectWindowTimeout = 24*5000 //wait 2 minutes (5 * 24 = 120)
@@ -32,8 +33,6 @@ export class MedicalSourcesComponent implements OnInit {
environment_name = environment.environment_name
status: { [name: string]: string } = {}
- metadataSources: {[name:string]: MetadataSource} = {}
-
connectedSourceList: SourceListItem[] = [] //source's are populated for this list
availableSourceList: SourceListItem[] = []
totalAvailableSourceList: number = 0
@@ -42,8 +41,10 @@ export class MedicalSourcesComponent implements OnInit {
closeResult = '';
modalSelectedSourceListItem:SourceListItem = null;
- searchIndex = null
- searchTerm: string = ""
+ scrollId: string = ""
+ scrollComplete: boolean = false
+ searchTermUpdate = new BehaviorSubject
("");
+ showHidden: boolean = false
constructor(
private lighthouseApi: LighthouseService,
@@ -57,29 +58,20 @@ export class MedicalSourcesComponent implements OnInit {
ngOnInit(): void {
this.loading = true
- forkJoin([this.lighthouseApi.getLighthouseSourceMetadataMap(false), this.fastenApi.getSources()]).subscribe(results => {
+ forkJoin([this.lighthouseApi.findLighthouseSources("", "", this.showHidden), this.fastenApi.getSources()]).subscribe(results => {
this.loading = false
+
+ //handle connected sources sources
+ const connectedSources = results[1] as Source[]
+ forkJoin(connectedSources.map((source) => this.lighthouseApi.getLighthouseSource(source.source_type))).subscribe((connectedMetadata) => {
+ for(const ndx in connectedSources){
+ this.connectedSourceList.push({source: connectedSources[ndx], metadata: connectedMetadata[ndx]})
+ }
+ })
+
+
//handle source metadata map response
- this.metadataSources = results[0] as {[name:string]: MetadataSource}
-
- //handle sources
- const sourceList = results[1] as Source[]
-
- for (const sourceType in this.metadataSources) {
- let isConnected = false
- for(const connectedSource of sourceList){
- if(connectedSource.source_type == sourceType){
- this.connectedSourceList.push({source: connectedSource, metadata: this.metadataSources[sourceType]})
- isConnected = true
- break
- }
- }
-
- if(!isConnected){
- //this source has not been found in the connected list, lets add it to the available list.
- this.availableSourceList.push({metadata: this.metadataSources[sourceType]})
- }
- }
+ this.populateAvailableSourceList(results[0] as LighthouseSourceSearch)
//check if we've just started connecting a "source_type"
@@ -97,55 +89,59 @@ export class MedicalSourcesComponent implements OnInit {
this.callback(callbackSourceType).then(console.log)
}
- this.totalAvailableSourceList = this.availableSourceList.length
-
- //setup Search
- const options = {
- // isCaseSensitive: false,
- // includeScore: false,
- // shouldSort: true,
- // includeMatches: false,
- findAllMatches: true,
- // minMatchCharLength: 1,
- // location: 0,
- // threshold: 0.6,
- // distance: 100,
- // useExtendedSearch: false,
- // ignoreLocation: false,
- // ignoreFieldNorm: false,
- // fieldNormWeight: 1,
- keys: [
- "metadata.display",
- "metadata.category",
- "metadata.source_type"
- ]
- };
-
- this.searchIndex = new Fuse(this.availableSourceList, options);
-
}, err => {
this.loading = false
})
+
+
+ //register a callback for when the search term changes
+ this.searchTermUpdate
+ .pipe(
+ debounceTime(200),
+ distinctUntilChanged(),
+ )
+ .subscribe(value => {
+ console.log("search term changed:", value)
+
+ //reset available sources
+ this.availableSourceList = []
+ this.scrollId = ""
+ this.scrollComplete = false
+ this.totalAvailableSourceList = 0
+
+ this.lighthouseApi.findLighthouseSources(value, this.scrollId, this.showHidden)
+ .subscribe((results) => {
+ this.populateAvailableSourceList(results)
+ })
+ });
+
}
- public searchTermChanged($event):void {
- this.searchTerm = $event.target.value
- console.log("search term changed:", )
+ private populateAvailableSourceList(results: LighthouseSourceSearch): void {
+ this.totalAvailableSourceList = results.hits.total.value
+ if(results.hits.hits.length == 0){
+ this.scrollComplete = true
+ console.log("scroll complete")
+ return
+ }
+ this.scrollId = results._scroll_id
+ this.availableSourceList = this.availableSourceList.concat(results.hits.hits.map((result) => {
+ return {metadata: result._source}
+ }).filter((item) => {
+ return !this.connectedSourceList.find((connectedItem) => connectedItem.metadata.source_type == item.metadata.source_type)
+ }))
+ }
- let searchResults
- if(this.searchTerm){
- searchResults = this.searchIndex.search(this.searchTerm).map((result) => {
- return result.item
+ public onScroll(): void {
+ if(this.scrollComplete){
+ return
+ }
+
+ this.lighthouseApi.findLighthouseSources(this.searchTermUpdate.getValue(), this.scrollId, this.showHidden)
+ .subscribe((results) => {
+ this.populateAvailableSourceList(results)
})
- }
- else {
- //emtpy search term, show all (original) values.
- searchResults = this.searchIndex.getIndex().docs
- }
-
- this.availableSourceList = searchResults
- console.log(this.availableSourceList)
}
/**
@@ -222,7 +218,14 @@ export class MedicalSourcesComponent implements OnInit {
console.log("NO PATIENT ID present, decoding jwt to extract patient")
//const introspectionResp = await Oauth.introspectionRequest(as, client, payload.access_token)
//console.log(introspectionResp)
- payload.patient = this.jwtDecode(payload.id_token)["profile"].replace(/^(Patient\/)/,'')
+ let decodedIdToken = this.jwtDecode(payload.id_token)
+ //nextGen uses fhirUser instead of profile.
+ payload.patient = decodedIdToken["profile"] || decodedIdToken["fhirUser"]
+
+ if(payload.patient){
+ payload.patient = payload.patient.replace(/^(Patient\/)/,'')
+ }
+
}
diff --git a/frontend/src/app/services/lighthouse.service.ts b/frontend/src/app/services/lighthouse.service.ts
index a652ad63..55f8f7e3 100644
--- a/frontend/src/app/services/lighthouse.service.ts
+++ b/frontend/src/app/services/lighthouse.service.ts
@@ -9,6 +9,7 @@ import * as Oauth from '@panva/oauth4webapi';
import {SourceState} from '../models/fasten/source-state';
import {MetadataSource} from '../models/fasten/metadata-source';
import {uuidV4} from '../../lib/utils/uuid';
+import {LighthouseSourceSearch} from '../models/lighthouse/lighthouse-source-search';
@Injectable({
providedIn: 'root'
@@ -18,6 +19,27 @@ export class LighthouseService {
constructor(private _httpClient: HttpClient) {
}
+ public findLighthouseSources(searchTerm: string, scrollId= "", showHidden = false): Observable {
+ const endpointUrl = new URL(`${environment.lighthouse_api_endpoint_base}/list/search`);
+ if(showHidden){
+ endpointUrl.searchParams.set('show_hidden', 'true');
+ }
+ if(scrollId){
+ endpointUrl.searchParams.set('scroll_id', scrollId);
+ }
+ if(searchTerm){
+ endpointUrl.searchParams.set('query', searchTerm);
+ }
+
+ return this._httpClient.get(endpointUrl.toString())
+ .pipe(
+ map((response: ResponseWrapper) => {
+ console.log("Metadata RESPONSE", response)
+ return response.data as LighthouseSourceSearch
+ })
+ );
+ }
+
public getLighthouseSourceMetadataMap(showHidden = false): Observable<{[name: string]: MetadataSource}> {
const endpointUrl = new URL(`${environment.lighthouse_api_endpoint_base}/list`);
if(showHidden){
diff --git a/frontend/src/assets/sources/360care-of-delaware.png b/frontend/src/assets/sources/360care-of-delaware.png
new file mode 100644
index 00000000..c38f5695
Binary files /dev/null and b/frontend/src/assets/sources/360care-of-delaware.png differ
diff --git a/frontend/src/assets/sources/360care-of-georgia.png b/frontend/src/assets/sources/360care-of-georgia.png
new file mode 100644
index 00000000..c38f5695
Binary files /dev/null and b/frontend/src/assets/sources/360care-of-georgia.png differ
diff --git a/frontend/src/assets/sources/360care-of-kansas.png b/frontend/src/assets/sources/360care-of-kansas.png
new file mode 100644
index 00000000..9b21d3d2
Binary files /dev/null and b/frontend/src/assets/sources/360care-of-kansas.png differ
diff --git a/frontend/src/assets/sources/360care-of-kentucky.jpg b/frontend/src/assets/sources/360care-of-kentucky.jpg
new file mode 100644
index 00000000..c716e7b4
Binary files /dev/null and b/frontend/src/assets/sources/360care-of-kentucky.jpg differ
diff --git a/frontend/src/assets/sources/360care-of-maryland.png b/frontend/src/assets/sources/360care-of-maryland.png
new file mode 100644
index 00000000..9b21d3d2
Binary files /dev/null and b/frontend/src/assets/sources/360care-of-maryland.png differ
diff --git a/frontend/src/assets/sources/360care-of-massachusetts.svg b/frontend/src/assets/sources/360care-of-massachusetts.svg
new file mode 100644
index 00000000..2efd2f29
--- /dev/null
+++ b/frontend/src/assets/sources/360care-of-massachusetts.svg
@@ -0,0 +1,95 @@
+
+
+
+
diff --git a/frontend/src/assets/sources/360care-of-mississippi.jpg b/frontend/src/assets/sources/360care-of-mississippi.jpg
new file mode 100644
index 00000000..b9ea49ea
Binary files /dev/null and b/frontend/src/assets/sources/360care-of-mississippi.jpg differ
diff --git a/frontend/src/assets/sources/360care-of-missouri.png b/frontend/src/assets/sources/360care-of-missouri.png
new file mode 100644
index 00000000..c38f5695
Binary files /dev/null and b/frontend/src/assets/sources/360care-of-missouri.png differ
diff --git a/frontend/src/assets/sources/360care-of-nebraska.png b/frontend/src/assets/sources/360care-of-nebraska.png
new file mode 100644
index 00000000..c38f5695
Binary files /dev/null and b/frontend/src/assets/sources/360care-of-nebraska.png differ
diff --git a/frontend/src/assets/sources/360care-of-north-carolina.png b/frontend/src/assets/sources/360care-of-north-carolina.png
new file mode 100644
index 00000000..c38f5695
Binary files /dev/null and b/frontend/src/assets/sources/360care-of-north-carolina.png differ
diff --git a/frontend/src/assets/sources/360care-of-south-carolina.jpg b/frontend/src/assets/sources/360care-of-south-carolina.jpg
new file mode 100644
index 00000000..c190f9da
Binary files /dev/null and b/frontend/src/assets/sources/360care-of-south-carolina.jpg differ
diff --git a/frontend/src/assets/sources/360care-of-tennessee.png b/frontend/src/assets/sources/360care-of-tennessee.png
new file mode 100644
index 00000000..5fb4ece7
Binary files /dev/null and b/frontend/src/assets/sources/360care-of-tennessee.png differ
diff --git a/frontend/src/assets/sources/360care-of-virginia.png b/frontend/src/assets/sources/360care-of-virginia.png
new file mode 100644
index 00000000..c38f5695
Binary files /dev/null and b/frontend/src/assets/sources/360care-of-virginia.png differ
diff --git a/frontend/src/assets/sources/7-springs-orthopedics-pc.png b/frontend/src/assets/sources/7-springs-orthopedics-pc.png
new file mode 100644
index 00000000..ac8bd6aa
Binary files /dev/null and b/frontend/src/assets/sources/7-springs-orthopedics-pc.png differ
diff --git a/frontend/src/assets/sources/a-step-ahead-foot-and-ankle-center.png b/frontend/src/assets/sources/a-step-ahead-foot-and-ankle-center.png
new file mode 100644
index 00000000..da010031
Binary files /dev/null and b/frontend/src/assets/sources/a-step-ahead-foot-and-ankle-center.png differ
diff --git a/frontend/src/assets/sources/aaa-comprehensive-healthcare-inc.png b/frontend/src/assets/sources/aaa-comprehensive-healthcare-inc.png
new file mode 100644
index 00000000..67ea5721
Binary files /dev/null and b/frontend/src/assets/sources/aaa-comprehensive-healthcare-inc.png differ
diff --git a/frontend/src/assets/sources/aac-suffolk.png b/frontend/src/assets/sources/aac-suffolk.png
new file mode 100644
index 00000000..592d0790
Binary files /dev/null and b/frontend/src/assets/sources/aac-suffolk.png differ
diff --git a/frontend/src/assets/sources/aaci-mental-health.png b/frontend/src/assets/sources/aaci-mental-health.png
new file mode 100644
index 00000000..eb511852
Binary files /dev/null and b/frontend/src/assets/sources/aaci-mental-health.png differ
diff --git a/frontend/src/assets/sources/abbeville-general-hospital.png b/frontend/src/assets/sources/abbeville-general-hospital.png
new file mode 100644
index 00000000..2339720b
Binary files /dev/null and b/frontend/src/assets/sources/abbeville-general-hospital.png differ
diff --git a/frontend/src/assets/sources/abc-pediatrics.png b/frontend/src/assets/sources/abc-pediatrics.png
new file mode 100644
index 00000000..53c3491d
Binary files /dev/null and b/frontend/src/assets/sources/abc-pediatrics.png differ
diff --git a/frontend/src/assets/sources/abid-hussain-md-pc.png b/frontend/src/assets/sources/abid-hussain-md-pc.png
new file mode 100644
index 00000000..bf0f6c1a
Binary files /dev/null and b/frontend/src/assets/sources/abid-hussain-md-pc.png differ
diff --git a/frontend/src/assets/sources/abigail-family-medicine-l-l-c.png b/frontend/src/assets/sources/abigail-family-medicine-l-l-c.png
new file mode 100644
index 00000000..fb85ee02
Binary files /dev/null and b/frontend/src/assets/sources/abigail-family-medicine-l-l-c.png differ
diff --git a/frontend/src/assets/sources/abilene-bone-and-joint.png b/frontend/src/assets/sources/abilene-bone-and-joint.png
new file mode 100644
index 00000000..cd2b8e45
Binary files /dev/null and b/frontend/src/assets/sources/abilene-bone-and-joint.png differ
diff --git a/frontend/src/assets/sources/abrams-eye-institute.png b/frontend/src/assets/sources/abrams-eye-institute.png
new file mode 100644
index 00000000..704fdfce
Binary files /dev/null and b/frontend/src/assets/sources/abrams-eye-institute.png differ
diff --git a/frontend/src/assets/sources/abrams-eyecare-associates.png b/frontend/src/assets/sources/abrams-eyecare-associates.png
new file mode 100644
index 00000000..df3ea969
Binary files /dev/null and b/frontend/src/assets/sources/abrams-eyecare-associates.png differ
diff --git a/frontend/src/assets/sources/acadia-st-landry-hospital-dba.png b/frontend/src/assets/sources/acadia-st-landry-hospital-dba.png
new file mode 100644
index 00000000..d953bffb
Binary files /dev/null and b/frontend/src/assets/sources/acadia-st-landry-hospital-dba.png differ
diff --git a/frontend/src/assets/sources/accelwell-inc.jpg b/frontend/src/assets/sources/accelwell-inc.jpg
new file mode 100644
index 00000000..2b530956
Binary files /dev/null and b/frontend/src/assets/sources/accelwell-inc.jpg differ
diff --git a/frontend/src/assets/sources/access-care-physicians-of-union.png b/frontend/src/assets/sources/access-care-physicians-of-union.png
new file mode 100644
index 00000000..6da4cb53
Binary files /dev/null and b/frontend/src/assets/sources/access-care-physicians-of-union.png differ
diff --git a/frontend/src/assets/sources/access-care-physicians-of-westchester.png b/frontend/src/assets/sources/access-care-physicians-of-westchester.png
new file mode 100644
index 00000000..29178ca3
Binary files /dev/null and b/frontend/src/assets/sources/access-care-physicians-of-westchester.png differ
diff --git a/frontend/src/assets/sources/access-medical-center-ok.jpg b/frontend/src/assets/sources/access-medical-center-ok.jpg
new file mode 100644
index 00000000..12bb29c6
Binary files /dev/null and b/frontend/src/assets/sources/access-medical-center-ok.jpg differ
diff --git a/frontend/src/assets/sources/access-medical-center-ok.png b/frontend/src/assets/sources/access-medical-center-ok.png
new file mode 100644
index 00000000..9b291bde
Binary files /dev/null and b/frontend/src/assets/sources/access-medical-center-ok.png differ
diff --git a/frontend/src/assets/sources/access-medical-center.svg b/frontend/src/assets/sources/access-medical-center.svg
new file mode 100644
index 00000000..5e69768a
--- /dev/null
+++ b/frontend/src/assets/sources/access-medical-center.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/accesshealth.png b/frontend/src/assets/sources/accesshealth.png
new file mode 100644
index 00000000..866059d7
Binary files /dev/null and b/frontend/src/assets/sources/accesshealth.png differ
diff --git a/frontend/src/assets/sources/accordia-health.png b/frontend/src/assets/sources/accordia-health.png
new file mode 100644
index 00000000..89927140
Binary files /dev/null and b/frontend/src/assets/sources/accordia-health.png differ
diff --git a/frontend/src/assets/sources/accurate-eye-care-llc.png b/frontend/src/assets/sources/accurate-eye-care-llc.png
new file mode 100644
index 00000000..ff3ab708
Binary files /dev/null and b/frontend/src/assets/sources/accurate-eye-care-llc.png differ
diff --git a/frontend/src/assets/sources/acdp.jpg b/frontend/src/assets/sources/acdp.jpg
new file mode 100644
index 00000000..81a7ff4a
Binary files /dev/null and b/frontend/src/assets/sources/acdp.jpg differ
diff --git a/frontend/src/assets/sources/adams-county-health-center-inc.png b/frontend/src/assets/sources/adams-county-health-center-inc.png
new file mode 100644
index 00000000..b1e4bf37
Binary files /dev/null and b/frontend/src/assets/sources/adams-county-health-center-inc.png differ
diff --git a/frontend/src/assets/sources/adelante-healthcare.jpeg b/frontend/src/assets/sources/adelante-healthcare.jpeg
new file mode 100644
index 00000000..e7384d0f
Binary files /dev/null and b/frontend/src/assets/sources/adelante-healthcare.jpeg differ
diff --git a/frontend/src/assets/sources/adult-and-pediatric-urology.png b/frontend/src/assets/sources/adult-and-pediatric-urology.png
new file mode 100644
index 00000000..ba2e3647
Binary files /dev/null and b/frontend/src/assets/sources/adult-and-pediatric-urology.png differ
diff --git a/frontend/src/assets/sources/adult-internal-medicine.svg b/frontend/src/assets/sources/adult-internal-medicine.svg
new file mode 100644
index 00000000..6b355d7a
--- /dev/null
+++ b/frontend/src/assets/sources/adult-internal-medicine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/advanced-access-medical-care-pllc.png b/frontend/src/assets/sources/advanced-access-medical-care-pllc.png
new file mode 100644
index 00000000..4e08fea9
Binary files /dev/null and b/frontend/src/assets/sources/advanced-access-medical-care-pllc.png differ
diff --git a/frontend/src/assets/sources/advanced-anesthesia-associates-llc.png b/frontend/src/assets/sources/advanced-anesthesia-associates-llc.png
new file mode 100644
index 00000000..a9144477
Binary files /dev/null and b/frontend/src/assets/sources/advanced-anesthesia-associates-llc.png differ
diff --git a/frontend/src/assets/sources/advanced-care-podiatry-llc.png b/frontend/src/assets/sources/advanced-care-podiatry-llc.png
new file mode 100644
index 00000000..ec36adc8
Binary files /dev/null and b/frontend/src/assets/sources/advanced-care-podiatry-llc.png differ
diff --git a/frontend/src/assets/sources/advanced-dermasurgery-associates.png b/frontend/src/assets/sources/advanced-dermasurgery-associates.png
new file mode 100644
index 00000000..ede2f8ab
Binary files /dev/null and b/frontend/src/assets/sources/advanced-dermasurgery-associates.png differ
diff --git a/frontend/src/assets/sources/advanced-dermasurgery-associates.svg b/frontend/src/assets/sources/advanced-dermasurgery-associates.svg
new file mode 100644
index 00000000..930752e2
--- /dev/null
+++ b/frontend/src/assets/sources/advanced-dermasurgery-associates.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/advanced-dermatology-care.png b/frontend/src/assets/sources/advanced-dermatology-care.png
new file mode 100644
index 00000000..a67ba78b
Binary files /dev/null and b/frontend/src/assets/sources/advanced-dermatology-care.png differ
diff --git a/frontend/src/assets/sources/advanced-dermatology.jpg b/frontend/src/assets/sources/advanced-dermatology.jpg
new file mode 100644
index 00000000..6f52b83a
Binary files /dev/null and b/frontend/src/assets/sources/advanced-dermatology.jpg differ
diff --git a/frontend/src/assets/sources/advanced-dermatology.png b/frontend/src/assets/sources/advanced-dermatology.png
new file mode 100644
index 00000000..6ad2802b
Binary files /dev/null and b/frontend/src/assets/sources/advanced-dermatology.png differ
diff --git a/frontend/src/assets/sources/advanced-endoscopy-and-surgical-center-llc.png b/frontend/src/assets/sources/advanced-endoscopy-and-surgical-center-llc.png
new file mode 100644
index 00000000..3945c5d3
Binary files /dev/null and b/frontend/src/assets/sources/advanced-endoscopy-and-surgical-center-llc.png differ
diff --git a/frontend/src/assets/sources/advanced-eye-surgery-center.png b/frontend/src/assets/sources/advanced-eye-surgery-center.png
new file mode 100644
index 00000000..20127934
Binary files /dev/null and b/frontend/src/assets/sources/advanced-eye-surgery-center.png differ
diff --git a/frontend/src/assets/sources/advanced-family-practice-pllc.png b/frontend/src/assets/sources/advanced-family-practice-pllc.png
new file mode 100644
index 00000000..6dbcd36c
Binary files /dev/null and b/frontend/src/assets/sources/advanced-family-practice-pllc.png differ
diff --git a/frontend/src/assets/sources/advanced-gastroenterology-and-nutrition.png b/frontend/src/assets/sources/advanced-gastroenterology-and-nutrition.png
new file mode 100644
index 00000000..707140fb
Binary files /dev/null and b/frontend/src/assets/sources/advanced-gastroenterology-and-nutrition.png differ
diff --git a/frontend/src/assets/sources/advanced-heart-vascular-ins-of-hunterdon.png b/frontend/src/assets/sources/advanced-heart-vascular-ins-of-hunterdon.png
new file mode 100644
index 00000000..b3d26002
Binary files /dev/null and b/frontend/src/assets/sources/advanced-heart-vascular-ins-of-hunterdon.png differ
diff --git a/frontend/src/assets/sources/advanced-imaging-at-bridgewater.svg b/frontend/src/assets/sources/advanced-imaging-at-bridgewater.svg
new file mode 100644
index 00000000..1c6f1c47
--- /dev/null
+++ b/frontend/src/assets/sources/advanced-imaging-at-bridgewater.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/advanced-obstetrics-and-gynecology-llc.png b/frontend/src/assets/sources/advanced-obstetrics-and-gynecology-llc.png
new file mode 100644
index 00000000..1e831a45
Binary files /dev/null and b/frontend/src/assets/sources/advanced-obstetrics-and-gynecology-llc.png differ
diff --git a/frontend/src/assets/sources/advanced-pain-diagnostic-and-solutions-inc.png b/frontend/src/assets/sources/advanced-pain-diagnostic-and-solutions-inc.png
new file mode 100644
index 00000000..07847ce0
Binary files /dev/null and b/frontend/src/assets/sources/advanced-pain-diagnostic-and-solutions-inc.png differ
diff --git a/frontend/src/assets/sources/advanced-pain-management-specialists.png b/frontend/src/assets/sources/advanced-pain-management-specialists.png
new file mode 100644
index 00000000..89160f32
Binary files /dev/null and b/frontend/src/assets/sources/advanced-pain-management-specialists.png differ
diff --git a/frontend/src/assets/sources/advanced-pain-management.png b/frontend/src/assets/sources/advanced-pain-management.png
new file mode 100644
index 00000000..42ef1b8a
Binary files /dev/null and b/frontend/src/assets/sources/advanced-pain-management.png differ
diff --git a/frontend/src/assets/sources/advanced-rheumatology-pc.jpg b/frontend/src/assets/sources/advanced-rheumatology-pc.jpg
new file mode 100644
index 00000000..17beb2cc
Binary files /dev/null and b/frontend/src/assets/sources/advanced-rheumatology-pc.jpg differ
diff --git a/frontend/src/assets/sources/advanced-specialty-care-p-c.png b/frontend/src/assets/sources/advanced-specialty-care-p-c.png
new file mode 100644
index 00000000..8e3c2763
Binary files /dev/null and b/frontend/src/assets/sources/advanced-specialty-care-p-c.png differ
diff --git a/frontend/src/assets/sources/advanced-vascular-and-vein-associates.png b/frontend/src/assets/sources/advanced-vascular-and-vein-associates.png
new file mode 100644
index 00000000..795186e4
Binary files /dev/null and b/frontend/src/assets/sources/advanced-vascular-and-vein-associates.png differ
diff --git a/frontend/src/assets/sources/advantage-health-convenient-care.jpg b/frontend/src/assets/sources/advantage-health-convenient-care.jpg
new file mode 100644
index 00000000..8f96ba2b
Binary files /dev/null and b/frontend/src/assets/sources/advantage-health-convenient-care.jpg differ
diff --git a/frontend/src/assets/sources/adventhealth-orlando.png b/frontend/src/assets/sources/adventhealth-orlando.png
new file mode 100644
index 00000000..6fac6b97
Binary files /dev/null and b/frontend/src/assets/sources/adventhealth-orlando.png differ
diff --git a/frontend/src/assets/sources/adventhealth-ottawa.png b/frontend/src/assets/sources/adventhealth-ottawa.png
new file mode 100644
index 00000000..0177c885
Binary files /dev/null and b/frontend/src/assets/sources/adventhealth-ottawa.png differ
diff --git a/frontend/src/assets/sources/adventist-health-delano.jpg b/frontend/src/assets/sources/adventist-health-delano.jpg
new file mode 100644
index 00000000..e3a2d41a
Binary files /dev/null and b/frontend/src/assets/sources/adventist-health-delano.jpg differ
diff --git a/frontend/src/assets/sources/adventist-health-mendocino-coast.png b/frontend/src/assets/sources/adventist-health-mendocino-coast.png
new file mode 100644
index 00000000..d49ae21b
Binary files /dev/null and b/frontend/src/assets/sources/adventist-health-mendocino-coast.png differ
diff --git a/frontend/src/assets/sources/adventist-health-revenue-cycle-intent-rci.png b/frontend/src/assets/sources/adventist-health-revenue-cycle-intent-rci.png
new file mode 100644
index 00000000..ded11910
Binary files /dev/null and b/frontend/src/assets/sources/adventist-health-revenue-cycle-intent-rci.png differ
diff --git a/frontend/src/assets/sources/adventist-healthcare.png b/frontend/src/assets/sources/adventist-healthcare.png
new file mode 100644
index 00000000..fa9037ec
Binary files /dev/null and b/frontend/src/assets/sources/adventist-healthcare.png differ
diff --git a/frontend/src/assets/sources/advocate-aurora-health.png b/frontend/src/assets/sources/advocate-aurora-health.png
new file mode 100644
index 00000000..2fe83416
Binary files /dev/null and b/frontend/src/assets/sources/advocate-aurora-health.png differ
diff --git a/frontend/src/assets/sources/advocate-sherman-hospital.png b/frontend/src/assets/sources/advocate-sherman-hospital.png
new file mode 100644
index 00000000..064df4f9
Binary files /dev/null and b/frontend/src/assets/sources/advocate-sherman-hospital.png differ
diff --git a/frontend/src/assets/sources/affiliated-podiatrists-ltd.png b/frontend/src/assets/sources/affiliated-podiatrists-ltd.png
new file mode 100644
index 00000000..045e25b8
Binary files /dev/null and b/frontend/src/assets/sources/affiliated-podiatrists-ltd.png differ
diff --git a/frontend/src/assets/sources/affordable-health-inc.png b/frontend/src/assets/sources/affordable-health-inc.png
new file mode 100644
index 00000000..6500dfee
Binary files /dev/null and b/frontend/src/assets/sources/affordable-health-inc.png differ
diff --git a/frontend/src/assets/sources/agnesian-health-care.png b/frontend/src/assets/sources/agnesian-health-care.png
new file mode 100644
index 00000000..41c2868a
Binary files /dev/null and b/frontend/src/assets/sources/agnesian-health-care.png differ
diff --git a/frontend/src/assets/sources/aica-orthopedics-p-c.png b/frontend/src/assets/sources/aica-orthopedics-p-c.png
new file mode 100644
index 00000000..878d872a
Binary files /dev/null and b/frontend/src/assets/sources/aica-orthopedics-p-c.png differ
diff --git a/frontend/src/assets/sources/aijaz-hashmi-md-inc.png b/frontend/src/assets/sources/aijaz-hashmi-md-inc.png
new file mode 100644
index 00000000..2c02230d
Binary files /dev/null and b/frontend/src/assets/sources/aijaz-hashmi-md-inc.png differ
diff --git a/frontend/src/assets/sources/airport-endoscopy-center.png b/frontend/src/assets/sources/airport-endoscopy-center.png
new file mode 100644
index 00000000..943562b5
Binary files /dev/null and b/frontend/src/assets/sources/airport-endoscopy-center.png differ
diff --git a/frontend/src/assets/sources/akron-oh-gi-anesthesia.png b/frontend/src/assets/sources/akron-oh-gi-anesthesia.png
new file mode 100644
index 00000000..9e88403c
Binary files /dev/null and b/frontend/src/assets/sources/akron-oh-gi-anesthesia.png differ
diff --git a/frontend/src/assets/sources/alabama-foot-care.png b/frontend/src/assets/sources/alabama-foot-care.png
new file mode 100644
index 00000000..42524b80
Binary files /dev/null and b/frontend/src/assets/sources/alabama-foot-care.png differ
diff --git a/frontend/src/assets/sources/alamo-city-eye-physicians.png b/frontend/src/assets/sources/alamo-city-eye-physicians.png
new file mode 100644
index 00000000..48a7a512
Binary files /dev/null and b/frontend/src/assets/sources/alamo-city-eye-physicians.png differ
diff --git a/frontend/src/assets/sources/alamogordo-surgical-associates.png b/frontend/src/assets/sources/alamogordo-surgical-associates.png
new file mode 100644
index 00000000..5733f786
Binary files /dev/null and b/frontend/src/assets/sources/alamogordo-surgical-associates.png differ
diff --git a/frontend/src/assets/sources/alan-nili-do-inc.png b/frontend/src/assets/sources/alan-nili-do-inc.png
new file mode 100644
index 00000000..3e58cb69
Binary files /dev/null and b/frontend/src/assets/sources/alan-nili-do-inc.png differ
diff --git a/frontend/src/assets/sources/alaska-native-medical-center.png b/frontend/src/assets/sources/alaska-native-medical-center.png
new file mode 100644
index 00000000..ac253720
Binary files /dev/null and b/frontend/src/assets/sources/alaska-native-medical-center.png differ
diff --git a/frontend/src/assets/sources/albany-ent-and-allergy-services.png b/frontend/src/assets/sources/albany-ent-and-allergy-services.png
new file mode 100644
index 00000000..b23ee0a8
Binary files /dev/null and b/frontend/src/assets/sources/albany-ent-and-allergy-services.png differ
diff --git a/frontend/src/assets/sources/albany-ketamine-medical-infusions.png b/frontend/src/assets/sources/albany-ketamine-medical-infusions.png
new file mode 100644
index 00000000..1d0ccb39
Binary files /dev/null and b/frontend/src/assets/sources/albany-ketamine-medical-infusions.png differ
diff --git a/frontend/src/assets/sources/albany-surgical-pc.png b/frontend/src/assets/sources/albany-surgical-pc.png
new file mode 100644
index 00000000..843d5395
Binary files /dev/null and b/frontend/src/assets/sources/albany-surgical-pc.png differ
diff --git a/frontend/src/assets/sources/albuquerque-center-for-rheumatology.png b/frontend/src/assets/sources/albuquerque-center-for-rheumatology.png
new file mode 100644
index 00000000..f5dc7f3c
Binary files /dev/null and b/frontend/src/assets/sources/albuquerque-center-for-rheumatology.png differ
diff --git a/frontend/src/assets/sources/alcona-health-center.png b/frontend/src/assets/sources/alcona-health-center.png
new file mode 100644
index 00000000..ba9a9908
Binary files /dev/null and b/frontend/src/assets/sources/alcona-health-center.png differ
diff --git a/frontend/src/assets/sources/alecsandra-roberts-md-inc.png b/frontend/src/assets/sources/alecsandra-roberts-md-inc.png
new file mode 100644
index 00000000..c8949967
Binary files /dev/null and b/frontend/src/assets/sources/alecsandra-roberts-md-inc.png differ
diff --git a/frontend/src/assets/sources/alex-deyan-md.png b/frontend/src/assets/sources/alex-deyan-md.png
new file mode 100644
index 00000000..818d1bd1
Binary files /dev/null and b/frontend/src/assets/sources/alex-deyan-md.png differ
diff --git a/frontend/src/assets/sources/alexandra-chrysanthis-md-inc.jpg b/frontend/src/assets/sources/alexandra-chrysanthis-md-inc.jpg
new file mode 100644
index 00000000..a1203ffd
Binary files /dev/null and b/frontend/src/assets/sources/alexandra-chrysanthis-md-inc.jpg differ
diff --git a/frontend/src/assets/sources/alexandra-chrysanthis-md-inc.svg b/frontend/src/assets/sources/alexandra-chrysanthis-md-inc.svg
new file mode 100644
index 00000000..57e6e0dc
--- /dev/null
+++ b/frontend/src/assets/sources/alexandra-chrysanthis-md-inc.svg
@@ -0,0 +1,129 @@
+
+
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/alexius-m-bishop-m-d-p-s-c.png b/frontend/src/assets/sources/alexius-m-bishop-m-d-p-s-c.png
new file mode 100644
index 00000000..371b5d75
Binary files /dev/null and b/frontend/src/assets/sources/alexius-m-bishop-m-d-p-s-c.png differ
diff --git a/frontend/src/assets/sources/alfieri-cardiology-pa.png b/frontend/src/assets/sources/alfieri-cardiology-pa.png
new file mode 100644
index 00000000..c67e1a61
Binary files /dev/null and b/frontend/src/assets/sources/alfieri-cardiology-pa.png differ
diff --git a/frontend/src/assets/sources/alfieri-cardiology-pa.svg b/frontend/src/assets/sources/alfieri-cardiology-pa.svg
new file mode 100644
index 00000000..89784731
--- /dev/null
+++ b/frontend/src/assets/sources/alfieri-cardiology-pa.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/algos-pasadena-dermatology-medical-group.png b/frontend/src/assets/sources/algos-pasadena-dermatology-medical-group.png
new file mode 100644
index 00000000..2a34451e
Binary files /dev/null and b/frontend/src/assets/sources/algos-pasadena-dermatology-medical-group.png differ
diff --git a/frontend/src/assets/sources/all-ear-doctors-a-professional-medical-c.png b/frontend/src/assets/sources/all-ear-doctors-a-professional-medical-c.png
new file mode 100644
index 00000000..e4fd36a4
Binary files /dev/null and b/frontend/src/assets/sources/all-ear-doctors-a-professional-medical-c.png differ
diff --git a/frontend/src/assets/sources/all-for-health-health-for-all.png b/frontend/src/assets/sources/all-for-health-health-for-all.png
new file mode 100644
index 00000000..a4404341
Binary files /dev/null and b/frontend/src/assets/sources/all-for-health-health-for-all.png differ
diff --git a/frontend/src/assets/sources/all-saints-family-care-center.svg b/frontend/src/assets/sources/all-saints-family-care-center.svg
new file mode 100644
index 00000000..a1af01aa
--- /dev/null
+++ b/frontend/src/assets/sources/all-saints-family-care-center.svg
@@ -0,0 +1,19 @@
+
+
diff --git a/frontend/src/assets/sources/all-your-family-needs-primary-care.png b/frontend/src/assets/sources/all-your-family-needs-primary-care.png
new file mode 100644
index 00000000..a1ea35a1
Binary files /dev/null and b/frontend/src/assets/sources/all-your-family-needs-primary-care.png differ
diff --git a/frontend/src/assets/sources/allen-county-regional-hospital.svg b/frontend/src/assets/sources/allen-county-regional-hospital.svg
new file mode 100644
index 00000000..7c786839
--- /dev/null
+++ b/frontend/src/assets/sources/allen-county-regional-hospital.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/allen-l-fein-family-medicine.png b/frontend/src/assets/sources/allen-l-fein-family-medicine.png
new file mode 100644
index 00000000..3e06d25c
Binary files /dev/null and b/frontend/src/assets/sources/allen-l-fein-family-medicine.png differ
diff --git a/frontend/src/assets/sources/allentown-family-foot-care.jpg b/frontend/src/assets/sources/allentown-family-foot-care.jpg
new file mode 100644
index 00000000..2737e656
Binary files /dev/null and b/frontend/src/assets/sources/allentown-family-foot-care.jpg differ
diff --git a/frontend/src/assets/sources/allergy-and-asthma-assoc.jpg b/frontend/src/assets/sources/allergy-and-asthma-assoc.jpg
new file mode 100644
index 00000000..8526c805
Binary files /dev/null and b/frontend/src/assets/sources/allergy-and-asthma-assoc.jpg differ
diff --git a/frontend/src/assets/sources/allergy-and-asthma-clinic-of-alexandria.png b/frontend/src/assets/sources/allergy-and-asthma-clinic-of-alexandria.png
new file mode 100644
index 00000000..29f30f63
Binary files /dev/null and b/frontend/src/assets/sources/allergy-and-asthma-clinic-of-alexandria.png differ
diff --git a/frontend/src/assets/sources/allergy-and-asthma-specialists-pc.png b/frontend/src/assets/sources/allergy-and-asthma-specialists-pc.png
new file mode 100644
index 00000000..c1e25317
Binary files /dev/null and b/frontend/src/assets/sources/allergy-and-asthma-specialists-pc.png differ
diff --git a/frontend/src/assets/sources/allergy-and-asthma.png b/frontend/src/assets/sources/allergy-and-asthma.png
new file mode 100644
index 00000000..1b00f64e
Binary files /dev/null and b/frontend/src/assets/sources/allergy-and-asthma.png differ
diff --git a/frontend/src/assets/sources/allergy-and-immunology.png b/frontend/src/assets/sources/allergy-and-immunology.png
new file mode 100644
index 00000000..319bea71
Binary files /dev/null and b/frontend/src/assets/sources/allergy-and-immunology.png differ
diff --git a/frontend/src/assets/sources/allergy-associates-of-la-crosse-ltd.png b/frontend/src/assets/sources/allergy-associates-of-la-crosse-ltd.png
new file mode 100644
index 00000000..9703706d
Binary files /dev/null and b/frontend/src/assets/sources/allergy-associates-of-la-crosse-ltd.png differ
diff --git a/frontend/src/assets/sources/allergy-asthma-and-sinus-center-of-nj.jpg b/frontend/src/assets/sources/allergy-asthma-and-sinus-center-of-nj.jpg
new file mode 100644
index 00000000..34a179a8
Binary files /dev/null and b/frontend/src/assets/sources/allergy-asthma-and-sinus-center-of-nj.jpg differ
diff --git a/frontend/src/assets/sources/allervie-health-alabama.svg b/frontend/src/assets/sources/allervie-health-alabama.svg
new file mode 100644
index 00000000..eacfcac6
--- /dev/null
+++ b/frontend/src/assets/sources/allervie-health-alabama.svg
@@ -0,0 +1,72 @@
+
diff --git a/frontend/src/assets/sources/allervie-health-virginia.svg b/frontend/src/assets/sources/allervie-health-virginia.svg
new file mode 100644
index 00000000..eacfcac6
--- /dev/null
+++ b/frontend/src/assets/sources/allervie-health-virginia.svg
@@ -0,0 +1,72 @@
+
diff --git a/frontend/src/assets/sources/alliance-family-health-center.png b/frontend/src/assets/sources/alliance-family-health-center.png
new file mode 100644
index 00000000..ff3d784c
Binary files /dev/null and b/frontend/src/assets/sources/alliance-family-health-center.png differ
diff --git a/frontend/src/assets/sources/allied-nds.jpg b/frontend/src/assets/sources/allied-nds.jpg
new file mode 100644
index 00000000..58920a1d
Binary files /dev/null and b/frontend/src/assets/sources/allied-nds.jpg differ
diff --git a/frontend/src/assets/sources/alonso-medical-group.png b/frontend/src/assets/sources/alonso-medical-group.png
new file mode 100644
index 00000000..ad51eec6
Binary files /dev/null and b/frontend/src/assets/sources/alonso-medical-group.png differ
diff --git a/frontend/src/assets/sources/alta-california-medical-group.png b/frontend/src/assets/sources/alta-california-medical-group.png
new file mode 100644
index 00000000..c3944c4b
Binary files /dev/null and b/frontend/src/assets/sources/alta-california-medical-group.png differ
diff --git a/frontend/src/assets/sources/altura-centers-for-health.png b/frontend/src/assets/sources/altura-centers-for-health.png
new file mode 100644
index 00000000..ae188967
Binary files /dev/null and b/frontend/src/assets/sources/altura-centers-for-health.png differ
diff --git a/frontend/src/assets/sources/amarillo-cataract-and-eye-surg-ctr.jpg b/frontend/src/assets/sources/amarillo-cataract-and-eye-surg-ctr.jpg
new file mode 100644
index 00000000..367536ab
Binary files /dev/null and b/frontend/src/assets/sources/amarillo-cataract-and-eye-surg-ctr.jpg differ
diff --git a/frontend/src/assets/sources/amarillo-pain-associates-pllc.png b/frontend/src/assets/sources/amarillo-pain-associates-pllc.png
new file mode 100644
index 00000000..6f99300d
Binary files /dev/null and b/frontend/src/assets/sources/amarillo-pain-associates-pllc.png differ
diff --git a/frontend/src/assets/sources/amarillo-pediatric-clinic-pllc.png b/frontend/src/assets/sources/amarillo-pediatric-clinic-pllc.png
new file mode 100644
index 00000000..973a1381
Binary files /dev/null and b/frontend/src/assets/sources/amarillo-pediatric-clinic-pllc.png differ
diff --git a/frontend/src/assets/sources/ambulatory-surgery-centers.png b/frontend/src/assets/sources/ambulatory-surgery-centers.png
new file mode 100644
index 00000000..dfec9f9a
Binary files /dev/null and b/frontend/src/assets/sources/ambulatory-surgery-centers.png differ
diff --git a/frontend/src/assets/sources/american-access-care-of-atlanta.png b/frontend/src/assets/sources/american-access-care-of-atlanta.png
new file mode 100644
index 00000000..59028d47
Binary files /dev/null and b/frontend/src/assets/sources/american-access-care-of-atlanta.png differ
diff --git a/frontend/src/assets/sources/american-access-care-of-baltimore.png b/frontend/src/assets/sources/american-access-care-of-baltimore.png
new file mode 100644
index 00000000..23a03a4b
Binary files /dev/null and b/frontend/src/assets/sources/american-access-care-of-baltimore.png differ
diff --git a/frontend/src/assets/sources/american-access-care-of-florida-llc.png b/frontend/src/assets/sources/american-access-care-of-florida-llc.png
new file mode 100644
index 00000000..7fd50ac1
Binary files /dev/null and b/frontend/src/assets/sources/american-access-care-of-florida-llc.png differ
diff --git a/frontend/src/assets/sources/american-access-care-of-jacksonville-llc.png b/frontend/src/assets/sources/american-access-care-of-jacksonville-llc.png
new file mode 100644
index 00000000..755dd11b
Binary files /dev/null and b/frontend/src/assets/sources/american-access-care-of-jacksonville-llc.png differ
diff --git a/frontend/src/assets/sources/american-access-care-of-richmond-llc.png b/frontend/src/assets/sources/american-access-care-of-richmond-llc.png
new file mode 100644
index 00000000..5c274efd
Binary files /dev/null and b/frontend/src/assets/sources/american-access-care-of-richmond-llc.png differ
diff --git a/frontend/src/assets/sources/american-access-care-physicians-bl.png b/frontend/src/assets/sources/american-access-care-physicians-bl.png
new file mode 100644
index 00000000..a1b8c675
Binary files /dev/null and b/frontend/src/assets/sources/american-access-care-physicians-bl.png differ
diff --git a/frontend/src/assets/sources/american-access-care-physicians-bx.png b/frontend/src/assets/sources/american-access-care-physicians-bx.png
new file mode 100644
index 00000000..29178ca3
Binary files /dev/null and b/frontend/src/assets/sources/american-access-care-physicians-bx.png differ
diff --git a/frontend/src/assets/sources/american-access-care-physicians-ny.png b/frontend/src/assets/sources/american-access-care-physicians-ny.png
new file mode 100644
index 00000000..a1b8c675
Binary files /dev/null and b/frontend/src/assets/sources/american-access-care-physicians-ny.png differ
diff --git a/frontend/src/assets/sources/american-cardiology.png b/frontend/src/assets/sources/american-cardiology.png
new file mode 100644
index 00000000..ea7d7584
Binary files /dev/null and b/frontend/src/assets/sources/american-cardiology.png differ
diff --git a/frontend/src/assets/sources/american-century.png b/frontend/src/assets/sources/american-century.png
new file mode 100644
index 00000000..74f1c9f8
Binary files /dev/null and b/frontend/src/assets/sources/american-century.png differ
diff --git a/frontend/src/assets/sources/american-indian-health-and-services.svg b/frontend/src/assets/sources/american-indian-health-and-services.svg
new file mode 100644
index 00000000..3f227248
--- /dev/null
+++ b/frontend/src/assets/sources/american-indian-health-and-services.svg
@@ -0,0 +1,255 @@
+
+
+
diff --git a/frontend/src/assets/sources/american-pain-and-wellness.png b/frontend/src/assets/sources/american-pain-and-wellness.png
new file mode 100644
index 00000000..02a88207
Binary files /dev/null and b/frontend/src/assets/sources/american-pain-and-wellness.png differ
diff --git a/frontend/src/assets/sources/american-vision-partners.png b/frontend/src/assets/sources/american-vision-partners.png
new file mode 100644
index 00000000..ca140938
Binary files /dev/null and b/frontend/src/assets/sources/american-vision-partners.png differ
diff --git a/frontend/src/assets/sources/americo-services-inc.png b/frontend/src/assets/sources/americo-services-inc.png
new file mode 100644
index 00000000..a9ad2324
Binary files /dev/null and b/frontend/src/assets/sources/americo-services-inc.png differ
diff --git a/frontend/src/assets/sources/amita-heart-and-vascular.png b/frontend/src/assets/sources/amita-heart-and-vascular.png
new file mode 100644
index 00000000..2d648a94
Binary files /dev/null and b/frontend/src/assets/sources/amita-heart-and-vascular.png differ
diff --git a/frontend/src/assets/sources/amm-healthcare.jpg b/frontend/src/assets/sources/amm-healthcare.jpg
new file mode 100644
index 00000000..60f96016
Binary files /dev/null and b/frontend/src/assets/sources/amm-healthcare.jpg differ
diff --git a/frontend/src/assets/sources/amsurg-citrus-anesthesia-llc.svg b/frontend/src/assets/sources/amsurg-citrus-anesthesia-llc.svg
new file mode 100644
index 00000000..d56489ff
--- /dev/null
+++ b/frontend/src/assets/sources/amsurg-citrus-anesthesia-llc.svg
@@ -0,0 +1,8 @@
+
diff --git a/frontend/src/assets/sources/amsurg-columbia-anesthesia-llc.jpg b/frontend/src/assets/sources/amsurg-columbia-anesthesia-llc.jpg
new file mode 100644
index 00000000..14905cfc
Binary files /dev/null and b/frontend/src/assets/sources/amsurg-columbia-anesthesia-llc.jpg differ
diff --git a/frontend/src/assets/sources/amsurg-durham-anesthesia-llc.png b/frontend/src/assets/sources/amsurg-durham-anesthesia-llc.png
new file mode 100644
index 00000000..4af365ee
Binary files /dev/null and b/frontend/src/assets/sources/amsurg-durham-anesthesia-llc.png differ
diff --git a/frontend/src/assets/sources/amsurg-durham-anesthesia-llc.svg b/frontend/src/assets/sources/amsurg-durham-anesthesia-llc.svg
new file mode 100644
index 00000000..d56489ff
--- /dev/null
+++ b/frontend/src/assets/sources/amsurg-durham-anesthesia-llc.svg
@@ -0,0 +1,8 @@
+
diff --git a/frontend/src/assets/sources/amsurg-greensboro-anesthesia-llc.jpg b/frontend/src/assets/sources/amsurg-greensboro-anesthesia-llc.jpg
new file mode 100644
index 00000000..e4c686b2
Binary files /dev/null and b/frontend/src/assets/sources/amsurg-greensboro-anesthesia-llc.jpg differ
diff --git a/frontend/src/assets/sources/amsurg-greenville-anesthesia-llc.svg b/frontend/src/assets/sources/amsurg-greenville-anesthesia-llc.svg
new file mode 100644
index 00000000..d56489ff
--- /dev/null
+++ b/frontend/src/assets/sources/amsurg-greenville-anesthesia-llc.svg
@@ -0,0 +1,8 @@
+
diff --git a/frontend/src/assets/sources/amsurg-melbourne-anesthesia-llc.png b/frontend/src/assets/sources/amsurg-melbourne-anesthesia-llc.png
new file mode 100644
index 00000000..5f15f6e1
Binary files /dev/null and b/frontend/src/assets/sources/amsurg-melbourne-anesthesia-llc.png differ
diff --git a/frontend/src/assets/sources/amsurg-new-orleans-anesthesia-llc.svg b/frontend/src/assets/sources/amsurg-new-orleans-anesthesia-llc.svg
new file mode 100644
index 00000000..d56489ff
--- /dev/null
+++ b/frontend/src/assets/sources/amsurg-new-orleans-anesthesia-llc.svg
@@ -0,0 +1,8 @@
+
diff --git a/frontend/src/assets/sources/amsurg-port-orange-anesthesia-llc.png b/frontend/src/assets/sources/amsurg-port-orange-anesthesia-llc.png
new file mode 100644
index 00000000..6950ed26
Binary files /dev/null and b/frontend/src/assets/sources/amsurg-port-orange-anesthesia-llc.png differ
diff --git a/frontend/src/assets/sources/amsurg-salt-lake-city-anesthesia-llc.jpg b/frontend/src/assets/sources/amsurg-salt-lake-city-anesthesia-llc.jpg
new file mode 100644
index 00000000..3fa27662
Binary files /dev/null and b/frontend/src/assets/sources/amsurg-salt-lake-city-anesthesia-llc.jpg differ
diff --git a/frontend/src/assets/sources/amsurg-tampa-bay-anesthesia-llc.svg b/frontend/src/assets/sources/amsurg-tampa-bay-anesthesia-llc.svg
new file mode 100644
index 00000000..d56489ff
--- /dev/null
+++ b/frontend/src/assets/sources/amsurg-tampa-bay-anesthesia-llc.svg
@@ -0,0 +1,8 @@
+
diff --git a/frontend/src/assets/sources/amsurg-toms-river-anesthesia-llc.png b/frontend/src/assets/sources/amsurg-toms-river-anesthesia-llc.png
new file mode 100644
index 00000000..74e2bf9c
Binary files /dev/null and b/frontend/src/assets/sources/amsurg-toms-river-anesthesia-llc.png differ
diff --git a/frontend/src/assets/sources/anaheim-family-medical.jpg b/frontend/src/assets/sources/anaheim-family-medical.jpg
new file mode 100644
index 00000000..aaf510aa
Binary files /dev/null and b/frontend/src/assets/sources/anaheim-family-medical.jpg differ
diff --git a/frontend/src/assets/sources/anderson-dermatology-and-skin-surgery.png b/frontend/src/assets/sources/anderson-dermatology-and-skin-surgery.png
new file mode 100644
index 00000000..499a1afd
Binary files /dev/null and b/frontend/src/assets/sources/anderson-dermatology-and-skin-surgery.png differ
diff --git a/frontend/src/assets/sources/anderson-infectious-disease-center.png b/frontend/src/assets/sources/anderson-infectious-disease-center.png
new file mode 100644
index 00000000..b3bbe5f5
Binary files /dev/null and b/frontend/src/assets/sources/anderson-infectious-disease-center.png differ
diff --git a/frontend/src/assets/sources/anderson-physician-alliance.png b/frontend/src/assets/sources/anderson-physician-alliance.png
new file mode 100644
index 00000000..beb0af4f
Binary files /dev/null and b/frontend/src/assets/sources/anderson-physician-alliance.png differ
diff --git a/frontend/src/assets/sources/anderson-professional-services.png b/frontend/src/assets/sources/anderson-professional-services.png
new file mode 100644
index 00000000..0cca1a07
Binary files /dev/null and b/frontend/src/assets/sources/anderson-professional-services.png differ
diff --git a/frontend/src/assets/sources/anderson-sports-medicine.png b/frontend/src/assets/sources/anderson-sports-medicine.png
new file mode 100644
index 00000000..99a91ff0
Binary files /dev/null and b/frontend/src/assets/sources/anderson-sports-medicine.png differ
diff --git a/frontend/src/assets/sources/andrea-roberson-do-inc.png b/frontend/src/assets/sources/andrea-roberson-do-inc.png
new file mode 100644
index 00000000..2ac2bcbe
Binary files /dev/null and b/frontend/src/assets/sources/andrea-roberson-do-inc.png differ
diff --git a/frontend/src/assets/sources/andrew-r-weymer-md-a-professional-corp.png b/frontend/src/assets/sources/andrew-r-weymer-md-a-professional-corp.png
new file mode 100644
index 00000000..0217ba93
Binary files /dev/null and b/frontend/src/assets/sources/andrew-r-weymer-md-a-professional-corp.png differ
diff --git a/frontend/src/assets/sources/andros-ent-and-sleep-center-p-a.png b/frontend/src/assets/sources/andros-ent-and-sleep-center-p-a.png
new file mode 100644
index 00000000..2634f0d2
Binary files /dev/null and b/frontend/src/assets/sources/andros-ent-and-sleep-center-p-a.png differ
diff --git a/frontend/src/assets/sources/anesthesia-associates-of-bryan-llc.png b/frontend/src/assets/sources/anesthesia-associates-of-bryan-llc.png
new file mode 100644
index 00000000..bb8f69e6
Binary files /dev/null and b/frontend/src/assets/sources/anesthesia-associates-of-bryan-llc.png differ
diff --git a/frontend/src/assets/sources/anesthesia-associates-of-columbia-tn.jpg b/frontend/src/assets/sources/anesthesia-associates-of-columbia-tn.jpg
new file mode 100644
index 00000000..c8196de4
Binary files /dev/null and b/frontend/src/assets/sources/anesthesia-associates-of-columbia-tn.jpg differ
diff --git a/frontend/src/assets/sources/anesthesia-associates-of-joplin-llc.png b/frontend/src/assets/sources/anesthesia-associates-of-joplin-llc.png
new file mode 100644
index 00000000..def1427a
Binary files /dev/null and b/frontend/src/assets/sources/anesthesia-associates-of-joplin-llc.png differ
diff --git a/frontend/src/assets/sources/anesthesia-associates-of-ok-pllc.png b/frontend/src/assets/sources/anesthesia-associates-of-ok-pllc.png
new file mode 100644
index 00000000..4bdd334e
Binary files /dev/null and b/frontend/src/assets/sources/anesthesia-associates-of-ok-pllc.png differ
diff --git a/frontend/src/assets/sources/anesthesia-service-gas-gas-llc.jpg b/frontend/src/assets/sources/anesthesia-service-gas-gas-llc.jpg
new file mode 100644
index 00000000..c716e7b4
Binary files /dev/null and b/frontend/src/assets/sources/anesthesia-service-gas-gas-llc.jpg differ
diff --git a/frontend/src/assets/sources/aneta-stirling-md.svg b/frontend/src/assets/sources/aneta-stirling-md.svg
new file mode 100644
index 00000000..2e7480ee
--- /dev/null
+++ b/frontend/src/assets/sources/aneta-stirling-md.svg
@@ -0,0 +1,224 @@
+
+
+
diff --git a/frontend/src/assets/sources/animas-surgical-hospital.png b/frontend/src/assets/sources/animas-surgical-hospital.png
new file mode 100644
index 00000000..d2beacdf
Binary files /dev/null and b/frontend/src/assets/sources/animas-surgical-hospital.png differ
diff --git a/frontend/src/assets/sources/anita-c-jackson-md-inc.png b/frontend/src/assets/sources/anita-c-jackson-md-inc.png
new file mode 100644
index 00000000..0f5a75a5
Binary files /dev/null and b/frontend/src/assets/sources/anita-c-jackson-md-inc.png differ
diff --git a/frontend/src/assets/sources/antelope-valley-medical-center.png b/frontend/src/assets/sources/antelope-valley-medical-center.png
new file mode 100644
index 00000000..7ed96ad3
Binary files /dev/null and b/frontend/src/assets/sources/antelope-valley-medical-center.png differ
diff --git a/frontend/src/assets/sources/anthony-parks-m-d.png b/frontend/src/assets/sources/anthony-parks-m-d.png
new file mode 100644
index 00000000..ab12fd51
Binary files /dev/null and b/frontend/src/assets/sources/anthony-parks-m-d.png differ
diff --git a/frontend/src/assets/sources/anthony-san-diego-md.jpg b/frontend/src/assets/sources/anthony-san-diego-md.jpg
new file mode 100644
index 00000000..eb44846a
Binary files /dev/null and b/frontend/src/assets/sources/anthony-san-diego-md.jpg differ
diff --git a/frontend/src/assets/sources/antietam-oncology-and-hematology-group.png b/frontend/src/assets/sources/antietam-oncology-and-hematology-group.png
new file mode 100644
index 00000000..48525f61
Binary files /dev/null and b/frontend/src/assets/sources/antietam-oncology-and-hematology-group.png differ
diff --git a/frontend/src/assets/sources/anuva-health.png b/frontend/src/assets/sources/anuva-health.png
new file mode 100644
index 00000000..d7415dc8
Binary files /dev/null and b/frontend/src/assets/sources/anuva-health.png differ
diff --git a/frontend/src/assets/sources/anwar-gerges-md-pllc.png b/frontend/src/assets/sources/anwar-gerges-md-pllc.png
new file mode 100644
index 00000000..95ba2719
Binary files /dev/null and b/frontend/src/assets/sources/anwar-gerges-md-pllc.png differ
diff --git a/frontend/src/assets/sources/aoc-surgery-center-inc.jpg b/frontend/src/assets/sources/aoc-surgery-center-inc.jpg
new file mode 100644
index 00000000..fa25d262
Binary files /dev/null and b/frontend/src/assets/sources/aoc-surgery-center-inc.jpg differ
diff --git a/frontend/src/assets/sources/apex-cardiology.png b/frontend/src/assets/sources/apex-cardiology.png
new file mode 100644
index 00000000..2c0ede84
Binary files /dev/null and b/frontend/src/assets/sources/apex-cardiology.png differ
diff --git a/frontend/src/assets/sources/apex-healthcare-medical-center-pt.jpg b/frontend/src/assets/sources/apex-healthcare-medical-center-pt.jpg
new file mode 100644
index 00000000..65436c10
Binary files /dev/null and b/frontend/src/assets/sources/apex-healthcare-medical-center-pt.jpg differ
diff --git a/frontend/src/assets/sources/apex-healthcare-medical-cntr-oncology.png b/frontend/src/assets/sources/apex-healthcare-medical-cntr-oncology.png
new file mode 100644
index 00000000..5780060f
Binary files /dev/null and b/frontend/src/assets/sources/apex-healthcare-medical-cntr-oncology.png differ
diff --git a/frontend/src/assets/sources/apex-hospitalist-medical-group-inc.svg b/frontend/src/assets/sources/apex-hospitalist-medical-group-inc.svg
new file mode 100644
index 00000000..1a0638e0
--- /dev/null
+++ b/frontend/src/assets/sources/apex-hospitalist-medical-group-inc.svg
@@ -0,0 +1,48 @@
+
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/apple-medical-group-haun.png b/frontend/src/assets/sources/apple-medical-group-haun.png
new file mode 100644
index 00000000..0d06b11c
Binary files /dev/null and b/frontend/src/assets/sources/apple-medical-group-haun.png differ
diff --git a/frontend/src/assets/sources/apple-medical-group.jpg b/frontend/src/assets/sources/apple-medical-group.jpg
new file mode 100644
index 00000000..20906783
Binary files /dev/null and b/frontend/src/assets/sources/apple-medical-group.jpg differ
diff --git a/frontend/src/assets/sources/archbold-brooks-primary-care.png b/frontend/src/assets/sources/archbold-brooks-primary-care.png
new file mode 100644
index 00000000..f04308b4
Binary files /dev/null and b/frontend/src/assets/sources/archbold-brooks-primary-care.png differ
diff --git a/frontend/src/assets/sources/archbold-center-for-wound-management.png b/frontend/src/assets/sources/archbold-center-for-wound-management.png
new file mode 100644
index 00000000..73221f62
Binary files /dev/null and b/frontend/src/assets/sources/archbold-center-for-wound-management.png differ
diff --git a/frontend/src/assets/sources/archbold-gastroenterology-group.png b/frontend/src/assets/sources/archbold-gastroenterology-group.png
new file mode 100644
index 00000000..c7ff9dc7
Binary files /dev/null and b/frontend/src/assets/sources/archbold-gastroenterology-group.png differ
diff --git a/frontend/src/assets/sources/archbold-integrative-medicine.png b/frontend/src/assets/sources/archbold-integrative-medicine.png
new file mode 100644
index 00000000..f04308b4
Binary files /dev/null and b/frontend/src/assets/sources/archbold-integrative-medicine.png differ
diff --git a/frontend/src/assets/sources/archbold-nephrology-group.png b/frontend/src/assets/sources/archbold-nephrology-group.png
new file mode 100644
index 00000000..f04308b4
Binary files /dev/null and b/frontend/src/assets/sources/archbold-nephrology-group.png differ
diff --git a/frontend/src/assets/sources/archbold-neurosurgery-services.png b/frontend/src/assets/sources/archbold-neurosurgery-services.png
new file mode 100644
index 00000000..f04308b4
Binary files /dev/null and b/frontend/src/assets/sources/archbold-neurosurgery-services.png differ
diff --git a/frontend/src/assets/sources/archbold-orthopedic-group.png b/frontend/src/assets/sources/archbold-orthopedic-group.png
new file mode 100644
index 00000000..f04308b4
Binary files /dev/null and b/frontend/src/assets/sources/archbold-orthopedic-group.png differ
diff --git a/frontend/src/assets/sources/archbold-pelham-primary-care.png b/frontend/src/assets/sources/archbold-pelham-primary-care.png
new file mode 100644
index 00000000..f04308b4
Binary files /dev/null and b/frontend/src/assets/sources/archbold-pelham-primary-care.png differ
diff --git a/frontend/src/assets/sources/archbold-phy-med-and-rehab-of-s-ga.png b/frontend/src/assets/sources/archbold-phy-med-and-rehab-of-s-ga.png
new file mode 100644
index 00000000..f04308b4
Binary files /dev/null and b/frontend/src/assets/sources/archbold-phy-med-and-rehab-of-s-ga.png differ
diff --git a/frontend/src/assets/sources/archbold-primary-care-clinic.png b/frontend/src/assets/sources/archbold-primary-care-clinic.png
new file mode 100644
index 00000000..73221f62
Binary files /dev/null and b/frontend/src/assets/sources/archbold-primary-care-clinic.png differ
diff --git a/frontend/src/assets/sources/archbold-pulmonary-and-critical-care-svc.png b/frontend/src/assets/sources/archbold-pulmonary-and-critical-care-svc.png
new file mode 100644
index 00000000..c7ff9dc7
Binary files /dev/null and b/frontend/src/assets/sources/archbold-pulmonary-and-critical-care-svc.png differ
diff --git a/frontend/src/assets/sources/aria-community-health-center-kc.jpg b/frontend/src/assets/sources/aria-community-health-center-kc.jpg
new file mode 100644
index 00000000..10c635aa
Binary files /dev/null and b/frontend/src/assets/sources/aria-community-health-center-kc.jpg differ
diff --git a/frontend/src/assets/sources/aria-community-health-center-stratford.jpg b/frontend/src/assets/sources/aria-community-health-center-stratford.jpg
new file mode 100644
index 00000000..10c635aa
Binary files /dev/null and b/frontend/src/assets/sources/aria-community-health-center-stratford.jpg differ
diff --git a/frontend/src/assets/sources/aria-community-health-center.png b/frontend/src/assets/sources/aria-community-health-center.png
new file mode 100644
index 00000000..8e23354e
Binary files /dev/null and b/frontend/src/assets/sources/aria-community-health-center.png differ
diff --git a/frontend/src/assets/sources/arizona-arthritis-and-rheumatology.jpg b/frontend/src/assets/sources/arizona-arthritis-and-rheumatology.jpg
new file mode 100644
index 00000000..ed305407
Binary files /dev/null and b/frontend/src/assets/sources/arizona-arthritis-and-rheumatology.jpg differ
diff --git a/frontend/src/assets/sources/arizona-digestive-institute-llc.png b/frontend/src/assets/sources/arizona-digestive-institute-llc.png
new file mode 100644
index 00000000..8919b67b
Binary files /dev/null and b/frontend/src/assets/sources/arizona-digestive-institute-llc.png differ
diff --git a/frontend/src/assets/sources/arizona-endoscopy-center-sedation-plc.jpg b/frontend/src/assets/sources/arizona-endoscopy-center-sedation-plc.jpg
new file mode 100644
index 00000000..f410d4e8
Binary files /dev/null and b/frontend/src/assets/sources/arizona-endoscopy-center-sedation-plc.jpg differ
diff --git a/frontend/src/assets/sources/arizona-endoscopy-center.png b/frontend/src/assets/sources/arizona-endoscopy-center.png
new file mode 100644
index 00000000..0b32a2c3
Binary files /dev/null and b/frontend/src/assets/sources/arizona-endoscopy-center.png differ
diff --git a/frontend/src/assets/sources/arizona-gastroenterology-ltd.png b/frontend/src/assets/sources/arizona-gastroenterology-ltd.png
new file mode 100644
index 00000000..48adc83a
Binary files /dev/null and b/frontend/src/assets/sources/arizona-gastroenterology-ltd.png differ
diff --git a/frontend/src/assets/sources/arizona-ophthalmic-outpatient-surgery.png b/frontend/src/assets/sources/arizona-ophthalmic-outpatient-surgery.png
new file mode 100644
index 00000000..2fe83416
Binary files /dev/null and b/frontend/src/assets/sources/arizona-ophthalmic-outpatient-surgery.png differ
diff --git a/frontend/src/assets/sources/arizona-priority-care.png b/frontend/src/assets/sources/arizona-priority-care.png
new file mode 100644
index 00000000..43dbf35f
Binary files /dev/null and b/frontend/src/assets/sources/arizona-priority-care.png differ
diff --git a/frontend/src/assets/sources/arizonas-children-association.png b/frontend/src/assets/sources/arizonas-children-association.png
new file mode 100644
index 00000000..6afa7e38
Binary files /dev/null and b/frontend/src/assets/sources/arizonas-children-association.png differ
diff --git a/frontend/src/assets/sources/arkansas-otolaryngology-center.png b/frontend/src/assets/sources/arkansas-otolaryngology-center.png
new file mode 100644
index 00000000..bc8080f7
Binary files /dev/null and b/frontend/src/assets/sources/arkansas-otolaryngology-center.png differ
diff --git a/frontend/src/assets/sources/arklamiss-surgery-center-llc.png b/frontend/src/assets/sources/arklamiss-surgery-center-llc.png
new file mode 100644
index 00000000..47140bdd
Binary files /dev/null and b/frontend/src/assets/sources/arklamiss-surgery-center-llc.png differ
diff --git a/frontend/src/assets/sources/arlington-podiatry.png b/frontend/src/assets/sources/arlington-podiatry.png
new file mode 100644
index 00000000..9fea84ef
Binary files /dev/null and b/frontend/src/assets/sources/arlington-podiatry.png differ
diff --git a/frontend/src/assets/sources/arrowhead-pediatric-medical-group-inc.png b/frontend/src/assets/sources/arrowhead-pediatric-medical-group-inc.png
new file mode 100644
index 00000000..d773f4cd
Binary files /dev/null and b/frontend/src/assets/sources/arrowhead-pediatric-medical-group-inc.png differ
diff --git a/frontend/src/assets/sources/arthritis-and-osteoporosis-associates.png b/frontend/src/assets/sources/arthritis-and-osteoporosis-associates.png
new file mode 100644
index 00000000..5d50754d
Binary files /dev/null and b/frontend/src/assets/sources/arthritis-and-osteoporosis-associates.png differ
diff --git a/frontend/src/assets/sources/arthritis-and-osteoporosis-consultants.png b/frontend/src/assets/sources/arthritis-and-osteoporosis-consultants.png
new file mode 100644
index 00000000..4a5c776e
Binary files /dev/null and b/frontend/src/assets/sources/arthritis-and-osteoporosis-consultants.png differ
diff --git a/frontend/src/assets/sources/arthritis-and-rheum-assoc-of-palm-beach.png b/frontend/src/assets/sources/arthritis-and-rheum-assoc-of-palm-beach.png
new file mode 100644
index 00000000..cfc58dd0
Binary files /dev/null and b/frontend/src/assets/sources/arthritis-and-rheum-assoc-of-palm-beach.png differ
diff --git a/frontend/src/assets/sources/arthritis-and-rheum-clinics-of-ks.svg b/frontend/src/assets/sources/arthritis-and-rheum-clinics-of-ks.svg
new file mode 100644
index 00000000..7a8245e2
--- /dev/null
+++ b/frontend/src/assets/sources/arthritis-and-rheum-clinics-of-ks.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/arthritis-and-rheumatic-disease-spec.png b/frontend/src/assets/sources/arthritis-and-rheumatic-disease-spec.png
new file mode 100644
index 00000000..a002a99a
Binary files /dev/null and b/frontend/src/assets/sources/arthritis-and-rheumatic-disease-spec.png differ
diff --git a/frontend/src/assets/sources/arthritis-and-rheumatic-diseases-pc.png b/frontend/src/assets/sources/arthritis-and-rheumatic-diseases-pc.png
new file mode 100644
index 00000000..943bbb07
Binary files /dev/null and b/frontend/src/assets/sources/arthritis-and-rheumatic-diseases-pc.png differ
diff --git a/frontend/src/assets/sources/arthritis-and-rheumatism-associates-pc.png b/frontend/src/assets/sources/arthritis-and-rheumatism-associates-pc.png
new file mode 100644
index 00000000..ad0f3082
Binary files /dev/null and b/frontend/src/assets/sources/arthritis-and-rheumatism-associates-pc.png differ
diff --git a/frontend/src/assets/sources/arthritis-and-rheumatism-associates-pc.svg b/frontend/src/assets/sources/arthritis-and-rheumatism-associates-pc.svg
new file mode 100644
index 00000000..a1af01aa
--- /dev/null
+++ b/frontend/src/assets/sources/arthritis-and-rheumatism-associates-pc.svg
@@ -0,0 +1,19 @@
+
+
diff --git a/frontend/src/assets/sources/arthritis-and-rheumatism-associates.png b/frontend/src/assets/sources/arthritis-and-rheumatism-associates.png
new file mode 100644
index 00000000..3b4cbc65
Binary files /dev/null and b/frontend/src/assets/sources/arthritis-and-rheumatism-associates.png differ
diff --git a/frontend/src/assets/sources/arthritis-and-rheumatology-consultants.jpg b/frontend/src/assets/sources/arthritis-and-rheumatology-consultants.jpg
new file mode 100644
index 00000000..fca7f5ed
Binary files /dev/null and b/frontend/src/assets/sources/arthritis-and-rheumatology-consultants.jpg differ
diff --git a/frontend/src/assets/sources/arthritis-and-sports-orthopaedics-and-pt.jpg b/frontend/src/assets/sources/arthritis-and-sports-orthopaedics-and-pt.jpg
new file mode 100644
index 00000000..6b51649f
Binary files /dev/null and b/frontend/src/assets/sources/arthritis-and-sports-orthopaedics-and-pt.jpg differ
diff --git a/frontend/src/assets/sources/arthritis-associates-of-south-florida.png b/frontend/src/assets/sources/arthritis-associates-of-south-florida.png
new file mode 100644
index 00000000..5bd03e5d
Binary files /dev/null and b/frontend/src/assets/sources/arthritis-associates-of-south-florida.png differ
diff --git a/frontend/src/assets/sources/arthritis-associates-pllc.svg b/frontend/src/assets/sources/arthritis-associates-pllc.svg
new file mode 100644
index 00000000..611448f8
--- /dev/null
+++ b/frontend/src/assets/sources/arthritis-associates-pllc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/arthritis-autoimmune-and-allergy-llc.jpg b/frontend/src/assets/sources/arthritis-autoimmune-and-allergy-llc.jpg
new file mode 100644
index 00000000..a7b58ddb
Binary files /dev/null and b/frontend/src/assets/sources/arthritis-autoimmune-and-allergy-llc.jpg differ
diff --git a/frontend/src/assets/sources/arthritis-autoimmune-and-allergy-llc.png b/frontend/src/assets/sources/arthritis-autoimmune-and-allergy-llc.png
new file mode 100644
index 00000000..774aa646
Binary files /dev/null and b/frontend/src/assets/sources/arthritis-autoimmune-and-allergy-llc.png differ
diff --git a/frontend/src/assets/sources/arthritis-care-and-research-center.jpg b/frontend/src/assets/sources/arthritis-care-and-research-center.jpg
new file mode 100644
index 00000000..e5743200
Binary files /dev/null and b/frontend/src/assets/sources/arthritis-care-and-research-center.jpg differ
diff --git a/frontend/src/assets/sources/arthritis-care-center-oklahoma-pllc.png b/frontend/src/assets/sources/arthritis-care-center-oklahoma-pllc.png
new file mode 100644
index 00000000..acdf81b3
Binary files /dev/null and b/frontend/src/assets/sources/arthritis-care-center-oklahoma-pllc.png differ
diff --git a/frontend/src/assets/sources/arthritis-care-center-oklahoma-pllc.svg b/frontend/src/assets/sources/arthritis-care-center-oklahoma-pllc.svg
new file mode 100644
index 00000000..89220cad
--- /dev/null
+++ b/frontend/src/assets/sources/arthritis-care-center-oklahoma-pllc.svg
@@ -0,0 +1,89 @@
+
+
+
diff --git a/frontend/src/assets/sources/arthritis-center-of-connecticut.jpeg b/frontend/src/assets/sources/arthritis-center-of-connecticut.jpeg
new file mode 100644
index 00000000..896fdd90
Binary files /dev/null and b/frontend/src/assets/sources/arthritis-center-of-connecticut.jpeg differ
diff --git a/frontend/src/assets/sources/arthritis-center-of-lexington-p-s-c.png b/frontend/src/assets/sources/arthritis-center-of-lexington-p-s-c.png
new file mode 100644
index 00000000..3a357e8a
Binary files /dev/null and b/frontend/src/assets/sources/arthritis-center-of-lexington-p-s-c.png differ
diff --git a/frontend/src/assets/sources/arthritis-consultants-north-county-apc.png b/frontend/src/assets/sources/arthritis-consultants-north-county-apc.png
new file mode 100644
index 00000000..e0d661b7
Binary files /dev/null and b/frontend/src/assets/sources/arthritis-consultants-north-county-apc.png differ
diff --git a/frontend/src/assets/sources/arthritis-health-associates-pllc.png b/frontend/src/assets/sources/arthritis-health-associates-pllc.png
new file mode 100644
index 00000000..5d107db0
Binary files /dev/null and b/frontend/src/assets/sources/arthritis-health-associates-pllc.png differ
diff --git a/frontend/src/assets/sources/arthritis-northwest-pllc.jpg b/frontend/src/assets/sources/arthritis-northwest-pllc.jpg
new file mode 100644
index 00000000..f37b9bb5
Binary files /dev/null and b/frontend/src/assets/sources/arthritis-northwest-pllc.jpg differ
diff --git a/frontend/src/assets/sources/arthritis-treatment-center.png b/frontend/src/assets/sources/arthritis-treatment-center.png
new file mode 100644
index 00000000..bf56e5ae
Binary files /dev/null and b/frontend/src/assets/sources/arthritis-treatment-center.png differ
diff --git a/frontend/src/assets/sources/arthur-center-community-health.png b/frontend/src/assets/sources/arthur-center-community-health.png
new file mode 100644
index 00000000..6654c122
Binary files /dev/null and b/frontend/src/assets/sources/arthur-center-community-health.png differ
diff --git a/frontend/src/assets/sources/articularis-health-group-inc-aacga.png b/frontend/src/assets/sources/articularis-health-group-inc-aacga.png
new file mode 100644
index 00000000..c8949967
Binary files /dev/null and b/frontend/src/assets/sources/articularis-health-group-inc-aacga.png differ
diff --git a/frontend/src/assets/sources/articularis-healthcare-group-inc-praal.png b/frontend/src/assets/sources/articularis-healthcare-group-inc-praal.png
new file mode 100644
index 00000000..1a3bbf40
Binary files /dev/null and b/frontend/src/assets/sources/articularis-healthcare-group-inc-praal.png differ
diff --git a/frontend/src/assets/sources/articularis-healthcare.png b/frontend/src/assets/sources/articularis-healthcare.png
new file mode 100644
index 00000000..1a3bbf40
Binary files /dev/null and b/frontend/src/assets/sources/articularis-healthcare.png differ
diff --git a/frontend/src/assets/sources/arturo-quintanilla-md-faap.png b/frontend/src/assets/sources/arturo-quintanilla-md-faap.png
new file mode 100644
index 00000000..0de9940f
Binary files /dev/null and b/frontend/src/assets/sources/arturo-quintanilla-md-faap.png differ
diff --git a/frontend/src/assets/sources/asad-bakir.png b/frontend/src/assets/sources/asad-bakir.png
new file mode 100644
index 00000000..65e1c6b2
Binary files /dev/null and b/frontend/src/assets/sources/asad-bakir.png differ
diff --git a/frontend/src/assets/sources/ascension-borgess-allegan-outpatient.png b/frontend/src/assets/sources/ascension-borgess-allegan-outpatient.png
new file mode 100644
index 00000000..74443452
Binary files /dev/null and b/frontend/src/assets/sources/ascension-borgess-allegan-outpatient.png differ
diff --git a/frontend/src/assets/sources/ascension-borgess-allegan.png b/frontend/src/assets/sources/ascension-borgess-allegan.png
new file mode 100644
index 00000000..d584a641
Binary files /dev/null and b/frontend/src/assets/sources/ascension-borgess-allegan.png differ
diff --git a/frontend/src/assets/sources/ascension-borgess-psychological-medicine.svg b/frontend/src/assets/sources/ascension-borgess-psychological-medicine.svg
new file mode 100644
index 00000000..a1af01aa
--- /dev/null
+++ b/frontend/src/assets/sources/ascension-borgess-psychological-medicine.svg
@@ -0,0 +1,19 @@
+
+
diff --git a/frontend/src/assets/sources/ascension-health.svg b/frontend/src/assets/sources/ascension-health.svg
new file mode 100644
index 00000000..a1af01aa
--- /dev/null
+++ b/frontend/src/assets/sources/ascension-health.svg
@@ -0,0 +1,19 @@
+
+
diff --git a/frontend/src/assets/sources/ascension-providence-rochester-hospital.svg b/frontend/src/assets/sources/ascension-providence-rochester-hospital.svg
new file mode 100644
index 00000000..a1af01aa
--- /dev/null
+++ b/frontend/src/assets/sources/ascension-providence-rochester-hospital.svg
@@ -0,0 +1,19 @@
+
+
diff --git a/frontend/src/assets/sources/ascension-seton.png b/frontend/src/assets/sources/ascension-seton.png
new file mode 100644
index 00000000..89a70079
Binary files /dev/null and b/frontend/src/assets/sources/ascension-seton.png differ
diff --git a/frontend/src/assets/sources/aschinberg-pediatrics.png b/frontend/src/assets/sources/aschinberg-pediatrics.png
new file mode 100644
index 00000000..5c4eb2f6
Binary files /dev/null and b/frontend/src/assets/sources/aschinberg-pediatrics.png differ
diff --git a/frontend/src/assets/sources/ash-dermatology-and-skin-cancer-center-pa.png b/frontend/src/assets/sources/ash-dermatology-and-skin-cancer-center-pa.png
new file mode 100644
index 00000000..8adba549
Binary files /dev/null and b/frontend/src/assets/sources/ash-dermatology-and-skin-cancer-center-pa.png differ
diff --git a/frontend/src/assets/sources/ashland-health-center.png b/frontend/src/assets/sources/ashland-health-center.png
new file mode 100644
index 00000000..8efcdb71
Binary files /dev/null and b/frontend/src/assets/sources/ashland-health-center.png differ
diff --git a/frontend/src/assets/sources/ashland-mansfield-foot-and-ankle-specialist.jpg b/frontend/src/assets/sources/ashland-mansfield-foot-and-ankle-specialist.jpg
new file mode 100644
index 00000000..e56df4dc
Binary files /dev/null and b/frontend/src/assets/sources/ashland-mansfield-foot-and-ankle-specialist.jpg differ
diff --git a/frontend/src/assets/sources/asian-human-services-family-health-ctr.png b/frontend/src/assets/sources/asian-human-services-family-health-ctr.png
new file mode 100644
index 00000000..32b48aad
Binary files /dev/null and b/frontend/src/assets/sources/asian-human-services-family-health-ctr.png differ
diff --git a/frontend/src/assets/sources/asian-pacific-health-care-venture-inc.svg b/frontend/src/assets/sources/asian-pacific-health-care-venture-inc.svg
new file mode 100644
index 00000000..2d97ffbe
--- /dev/null
+++ b/frontend/src/assets/sources/asian-pacific-health-care-venture-inc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/aspen-sleep-centers.png b/frontend/src/assets/sources/aspen-sleep-centers.png
new file mode 100644
index 00000000..71e7a718
Binary files /dev/null and b/frontend/src/assets/sources/aspen-sleep-centers.png differ
diff --git a/frontend/src/assets/sources/aspen-speech-therapy.png b/frontend/src/assets/sources/aspen-speech-therapy.png
new file mode 100644
index 00000000..7d547b1e
Binary files /dev/null and b/frontend/src/assets/sources/aspen-speech-therapy.png differ
diff --git a/frontend/src/assets/sources/aspire-allergy-and-sinus.png b/frontend/src/assets/sources/aspire-allergy-and-sinus.png
new file mode 100644
index 00000000..deadc18e
Binary files /dev/null and b/frontend/src/assets/sources/aspire-allergy-and-sinus.png differ
diff --git a/frontend/src/assets/sources/associated-eye-care-asc.png b/frontend/src/assets/sources/associated-eye-care-asc.png
new file mode 100644
index 00000000..6f2a00a5
Binary files /dev/null and b/frontend/src/assets/sources/associated-eye-care-asc.png differ
diff --git a/frontend/src/assets/sources/associated-eye-care-optical.png b/frontend/src/assets/sources/associated-eye-care-optical.png
new file mode 100644
index 00000000..6f2a00a5
Binary files /dev/null and b/frontend/src/assets/sources/associated-eye-care-optical.png differ
diff --git a/frontend/src/assets/sources/associated-eye-care.png b/frontend/src/assets/sources/associated-eye-care.png
new file mode 100644
index 00000000..7a262b50
Binary files /dev/null and b/frontend/src/assets/sources/associated-eye-care.png differ
diff --git a/frontend/src/assets/sources/associated-ophthalmologists.png b/frontend/src/assets/sources/associated-ophthalmologists.png
new file mode 100644
index 00000000..552a1f0a
Binary files /dev/null and b/frontend/src/assets/sources/associated-ophthalmologists.png differ
diff --git a/frontend/src/assets/sources/associated-podiatrists-llp.png b/frontend/src/assets/sources/associated-podiatrists-llp.png
new file mode 100644
index 00000000..0328d3bc
Binary files /dev/null and b/frontend/src/assets/sources/associated-podiatrists-llp.png differ
diff --git a/frontend/src/assets/sources/associated-skin-care-specialists.jpg b/frontend/src/assets/sources/associated-skin-care-specialists.jpg
new file mode 100644
index 00000000..003fb96c
Binary files /dev/null and b/frontend/src/assets/sources/associated-skin-care-specialists.jpg differ
diff --git a/frontend/src/assets/sources/associates-dermatology-cosmetic-surgery.png b/frontend/src/assets/sources/associates-dermatology-cosmetic-surgery.png
new file mode 100644
index 00000000..867fd3ab
Binary files /dev/null and b/frontend/src/assets/sources/associates-dermatology-cosmetic-surgery.png differ
diff --git a/frontend/src/assets/sources/associates-for-womens-medicine.jpg b/frontend/src/assets/sources/associates-for-womens-medicine.jpg
new file mode 100644
index 00000000..486029ca
Binary files /dev/null and b/frontend/src/assets/sources/associates-for-womens-medicine.jpg differ
diff --git a/frontend/src/assets/sources/associates-in-anesthesia.png b/frontend/src/assets/sources/associates-in-anesthesia.png
new file mode 100644
index 00000000..fafdf2f5
Binary files /dev/null and b/frontend/src/assets/sources/associates-in-anesthesia.png differ
diff --git a/frontend/src/assets/sources/associates-in-gastroenterology-p-c.jpg b/frontend/src/assets/sources/associates-in-gastroenterology-p-c.jpg
new file mode 100644
index 00000000..60329046
Binary files /dev/null and b/frontend/src/assets/sources/associates-in-gastroenterology-p-c.jpg differ
diff --git a/frontend/src/assets/sources/associates-surgery-centers.png b/frontend/src/assets/sources/associates-surgery-centers.png
new file mode 100644
index 00000000..83cc580a
Binary files /dev/null and b/frontend/src/assets/sources/associates-surgery-centers.png differ
diff --git a/frontend/src/assets/sources/assure-ob.jpg b/frontend/src/assets/sources/assure-ob.jpg
new file mode 100644
index 00000000..698d7fc1
Binary files /dev/null and b/frontend/src/assets/sources/assure-ob.jpg differ
diff --git a/frontend/src/assets/sources/astria-sunnyside-hospital.png b/frontend/src/assets/sources/astria-sunnyside-hospital.png
new file mode 100644
index 00000000..dee48102
Binary files /dev/null and b/frontend/src/assets/sources/astria-sunnyside-hospital.png differ
diff --git a/frontend/src/assets/sources/atascosa-health-center-inc.png b/frontend/src/assets/sources/atascosa-health-center-inc.png
new file mode 100644
index 00000000..6828382b
Binary files /dev/null and b/frontend/src/assets/sources/atascosa-health-center-inc.png differ
diff --git a/frontend/src/assets/sources/atc-of-the-low-country.jpg b/frontend/src/assets/sources/atc-of-the-low-country.jpg
new file mode 100644
index 00000000..54355a58
Binary files /dev/null and b/frontend/src/assets/sources/atc-of-the-low-country.jpg differ
diff --git a/frontend/src/assets/sources/athens-retina-center.svg b/frontend/src/assets/sources/athens-retina-center.svg
new file mode 100644
index 00000000..ce20a00b
--- /dev/null
+++ b/frontend/src/assets/sources/athens-retina-center.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/athletico-arc-ilinoh.svg b/frontend/src/assets/sources/athletico-arc-ilinoh.svg
new file mode 100644
index 00000000..713c6287
--- /dev/null
+++ b/frontend/src/assets/sources/athletico-arc-ilinoh.svg
@@ -0,0 +1,63 @@
+
+
+
diff --git a/frontend/src/assets/sources/athletico-arizona.svg b/frontend/src/assets/sources/athletico-arizona.svg
new file mode 100644
index 00000000..713c6287
--- /dev/null
+++ b/frontend/src/assets/sources/athletico-arizona.svg
@@ -0,0 +1,63 @@
+
+
+
diff --git a/frontend/src/assets/sources/athletico-excel-nebraska.svg b/frontend/src/assets/sources/athletico-excel-nebraska.svg
new file mode 100644
index 00000000..713c6287
--- /dev/null
+++ b/frontend/src/assets/sources/athletico-excel-nebraska.svg
@@ -0,0 +1,63 @@
+
+
+
diff --git a/frontend/src/assets/sources/athletico-ltd.svg b/frontend/src/assets/sources/athletico-ltd.svg
new file mode 100644
index 00000000..713c6287
--- /dev/null
+++ b/frontend/src/assets/sources/athletico-ltd.svg
@@ -0,0 +1,63 @@
+
+
+
diff --git a/frontend/src/assets/sources/athletico-missouri.svg b/frontend/src/assets/sources/athletico-missouri.svg
new file mode 100644
index 00000000..713c6287
--- /dev/null
+++ b/frontend/src/assets/sources/athletico-missouri.svg
@@ -0,0 +1,63 @@
+
+
+
diff --git a/frontend/src/assets/sources/athletico-northeast.svg b/frontend/src/assets/sources/athletico-northeast.svg
new file mode 100644
index 00000000..713c6287
--- /dev/null
+++ b/frontend/src/assets/sources/athletico-northeast.svg
@@ -0,0 +1,63 @@
+
+
+
diff --git a/frontend/src/assets/sources/athletico-south-central.jpg b/frontend/src/assets/sources/athletico-south-central.jpg
new file mode 100644
index 00000000..ad01a090
Binary files /dev/null and b/frontend/src/assets/sources/athletico-south-central.jpg differ
diff --git a/frontend/src/assets/sources/athletico-texas.svg b/frontend/src/assets/sources/athletico-texas.svg
new file mode 100644
index 00000000..713c6287
--- /dev/null
+++ b/frontend/src/assets/sources/athletico-texas.svg
@@ -0,0 +1,63 @@
+
+
+
diff --git a/frontend/src/assets/sources/athletico-wisconsin.svg b/frontend/src/assets/sources/athletico-wisconsin.svg
new file mode 100644
index 00000000..713c6287
--- /dev/null
+++ b/frontend/src/assets/sources/athletico-wisconsin.svg
@@ -0,0 +1,63 @@
+
+
+
diff --git a/frontend/src/assets/sources/ati-sm-occupational-health-center.png b/frontend/src/assets/sources/ati-sm-occupational-health-center.png
new file mode 100644
index 00000000..28eedb15
Binary files /dev/null and b/frontend/src/assets/sources/ati-sm-occupational-health-center.png differ
diff --git a/frontend/src/assets/sources/ati-sm-richburg-health-center.jpg b/frontend/src/assets/sources/ati-sm-richburg-health-center.jpg
new file mode 100644
index 00000000..5e5aee52
Binary files /dev/null and b/frontend/src/assets/sources/ati-sm-richburg-health-center.jpg differ
diff --git a/frontend/src/assets/sources/atlanta-asc.png b/frontend/src/assets/sources/atlanta-asc.png
new file mode 100644
index 00000000..46ac5bd0
Binary files /dev/null and b/frontend/src/assets/sources/atlanta-asc.png differ
diff --git a/frontend/src/assets/sources/atlanta-neuromuscular-diagnostics.jpg b/frontend/src/assets/sources/atlanta-neuromuscular-diagnostics.jpg
new file mode 100644
index 00000000..d6be968f
Binary files /dev/null and b/frontend/src/assets/sources/atlanta-neuromuscular-diagnostics.jpg differ
diff --git a/frontend/src/assets/sources/atlanta-rehabilitation-physicians-p-c.png b/frontend/src/assets/sources/atlanta-rehabilitation-physicians-p-c.png
new file mode 100644
index 00000000..5219fb9d
Binary files /dev/null and b/frontend/src/assets/sources/atlanta-rehabilitation-physicians-p-c.png differ
diff --git a/frontend/src/assets/sources/atlanta-ropheka-medical-center.png b/frontend/src/assets/sources/atlanta-ropheka-medical-center.png
new file mode 100644
index 00000000..4104da10
Binary files /dev/null and b/frontend/src/assets/sources/atlanta-ropheka-medical-center.png differ
diff --git a/frontend/src/assets/sources/atlantic-center-for-aesth-and-recon-surg.png b/frontend/src/assets/sources/atlantic-center-for-aesth-and-recon-surg.png
new file mode 100644
index 00000000..720a3c13
Binary files /dev/null and b/frontend/src/assets/sources/atlantic-center-for-aesth-and-recon-surg.png differ
diff --git a/frontend/src/assets/sources/atlantic-pulmonary-associates-pa.svg b/frontend/src/assets/sources/atlantic-pulmonary-associates-pa.svg
new file mode 100644
index 00000000..a5993188
--- /dev/null
+++ b/frontend/src/assets/sources/atlantic-pulmonary-associates-pa.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/atlantic-skin-and-cosmetic-surgery-group.png b/frontend/src/assets/sources/atlantic-skin-and-cosmetic-surgery-group.png
new file mode 100644
index 00000000..e17ca57d
Binary files /dev/null and b/frontend/src/assets/sources/atlantic-skin-and-cosmetic-surgery-group.png differ
diff --git a/frontend/src/assets/sources/atlanticare-health-system.png b/frontend/src/assets/sources/atlanticare-health-system.png
new file mode 100644
index 00000000..49ae4549
Binary files /dev/null and b/frontend/src/assets/sources/atlanticare-health-system.png differ
diff --git a/frontend/src/assets/sources/au-medical-center-inc.png b/frontend/src/assets/sources/au-medical-center-inc.png
new file mode 100644
index 00000000..bccd84f2
Binary files /dev/null and b/frontend/src/assets/sources/au-medical-center-inc.png differ
diff --git a/frontend/src/assets/sources/audiology.png b/frontend/src/assets/sources/audiology.png
new file mode 100644
index 00000000..41b445d6
Binary files /dev/null and b/frontend/src/assets/sources/audiology.png differ
diff --git a/frontend/src/assets/sources/aultman-health-foundation.png b/frontend/src/assets/sources/aultman-health-foundation.png
new file mode 100644
index 00000000..11ee6c75
Binary files /dev/null and b/frontend/src/assets/sources/aultman-health-foundation.png differ
diff --git a/frontend/src/assets/sources/aurora-eye-clinic-ltd.png b/frontend/src/assets/sources/aurora-eye-clinic-ltd.png
new file mode 100644
index 00000000..c482e6fe
Binary files /dev/null and b/frontend/src/assets/sources/aurora-eye-clinic-ltd.png differ
diff --git a/frontend/src/assets/sources/aurora-obh.svg b/frontend/src/assets/sources/aurora-obh.svg
new file mode 100644
index 00000000..93fb46dd
--- /dev/null
+++ b/frontend/src/assets/sources/aurora-obh.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/austin-j-ma-md-a-professional-corp.png b/frontend/src/assets/sources/austin-j-ma-md-a-professional-corp.png
new file mode 100644
index 00000000..cfb6ad8b
Binary files /dev/null and b/frontend/src/assets/sources/austin-j-ma-md-a-professional-corp.png differ
diff --git a/frontend/src/assets/sources/austins-first-steps.svg b/frontend/src/assets/sources/austins-first-steps.svg
new file mode 100644
index 00000000..0f582ce3
--- /dev/null
+++ b/frontend/src/assets/sources/austins-first-steps.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/automation-direct.png b/frontend/src/assets/sources/automation-direct.png
new file mode 100644
index 00000000..9b8cfbbd
Binary files /dev/null and b/frontend/src/assets/sources/automation-direct.png differ
diff --git a/frontend/src/assets/sources/avala-health.png b/frontend/src/assets/sources/avala-health.png
new file mode 100644
index 00000000..c2fe529a
Binary files /dev/null and b/frontend/src/assets/sources/avala-health.png differ
diff --git a/frontend/src/assets/sources/avenal-community-health-center.jpeg b/frontend/src/assets/sources/avenal-community-health-center.jpeg
new file mode 100644
index 00000000..10c635aa
Binary files /dev/null and b/frontend/src/assets/sources/avenal-community-health-center.jpeg differ
diff --git a/frontend/src/assets/sources/aveon-health.jpg b/frontend/src/assets/sources/aveon-health.jpg
new file mode 100644
index 00000000..f78544a8
Binary files /dev/null and b/frontend/src/assets/sources/aveon-health.jpg differ
diff --git a/frontend/src/assets/sources/avinash-gupta-md-pc.png b/frontend/src/assets/sources/avinash-gupta-md-pc.png
new file mode 100644
index 00000000..ab12fd51
Binary files /dev/null and b/frontend/src/assets/sources/avinash-gupta-md-pc.png differ
diff --git a/frontend/src/assets/sources/axis-medical-group.jpg b/frontend/src/assets/sources/axis-medical-group.jpg
new file mode 100644
index 00000000..cd4e0223
Binary files /dev/null and b/frontend/src/assets/sources/axis-medical-group.jpg differ
diff --git a/frontend/src/assets/sources/azhar-khan-md-pc.svg b/frontend/src/assets/sources/azhar-khan-md-pc.svg
new file mode 100644
index 00000000..bab017c1
--- /dev/null
+++ b/frontend/src/assets/sources/azhar-khan-md-pc.svg
@@ -0,0 +1,33 @@
+
diff --git a/frontend/src/assets/sources/azpcp-case-management.png b/frontend/src/assets/sources/azpcp-case-management.png
new file mode 100644
index 00000000..817de060
Binary files /dev/null and b/frontend/src/assets/sources/azpcp-case-management.png differ
diff --git a/frontend/src/assets/sources/bacharach-institute-for-rehabilitation.png b/frontend/src/assets/sources/bacharach-institute-for-rehabilitation.png
new file mode 100644
index 00000000..54caf9f2
Binary files /dev/null and b/frontend/src/assets/sources/bacharach-institute-for-rehabilitation.png differ
diff --git a/frontend/src/assets/sources/baldwin-family-health-care.png b/frontend/src/assets/sources/baldwin-family-health-care.png
new file mode 100644
index 00000000..0a8c9709
Binary files /dev/null and b/frontend/src/assets/sources/baldwin-family-health-care.png differ
diff --git a/frontend/src/assets/sources/baltimore-asc.svg b/frontend/src/assets/sources/baltimore-asc.svg
new file mode 100644
index 00000000..66da6934
--- /dev/null
+++ b/frontend/src/assets/sources/baltimore-asc.svg
@@ -0,0 +1,103 @@
+
+
+
diff --git a/frontend/src/assets/sources/baltimore-medical-system-inc.svg b/frontend/src/assets/sources/baltimore-medical-system-inc.svg
new file mode 100644
index 00000000..56a1d154
--- /dev/null
+++ b/frontend/src/assets/sources/baltimore-medical-system-inc.svg
@@ -0,0 +1,121 @@
+
+
+
+
diff --git a/frontend/src/assets/sources/baltimore-vascular-care.png b/frontend/src/assets/sources/baltimore-vascular-care.png
new file mode 100644
index 00000000..d8f58eec
Binary files /dev/null and b/frontend/src/assets/sources/baltimore-vascular-care.png differ
diff --git a/frontend/src/assets/sources/banner-health.png b/frontend/src/assets/sources/banner-health.png
new file mode 100644
index 00000000..fb85ee02
Binary files /dev/null and b/frontend/src/assets/sources/banner-health.png differ
diff --git a/frontend/src/assets/sources/baptist-after-hours-pediatric-clinic.png b/frontend/src/assets/sources/baptist-after-hours-pediatric-clinic.png
new file mode 100644
index 00000000..647453bf
Binary files /dev/null and b/frontend/src/assets/sources/baptist-after-hours-pediatric-clinic.png differ
diff --git a/frontend/src/assets/sources/baptist-gi-specialists-surgery-center.jpg b/frontend/src/assets/sources/baptist-gi-specialists-surgery-center.jpg
new file mode 100644
index 00000000..5b634c56
Binary files /dev/null and b/frontend/src/assets/sources/baptist-gi-specialists-surgery-center.jpg differ
diff --git a/frontend/src/assets/sources/baptist-health-medical-group-inc.svg b/frontend/src/assets/sources/baptist-health-medical-group-inc.svg
new file mode 100644
index 00000000..eb8b1111
--- /dev/null
+++ b/frontend/src/assets/sources/baptist-health-medical-group-inc.svg
@@ -0,0 +1,113 @@
+
+
+
diff --git a/frontend/src/assets/sources/baptist-health-system-inc.png b/frontend/src/assets/sources/baptist-health-system-inc.png
new file mode 100644
index 00000000..e0d3a817
Binary files /dev/null and b/frontend/src/assets/sources/baptist-health-system-inc.png differ
diff --git a/frontend/src/assets/sources/baraga-county-memorial-hospital.png b/frontend/src/assets/sources/baraga-county-memorial-hospital.png
new file mode 100644
index 00000000..2b93353d
Binary files /dev/null and b/frontend/src/assets/sources/baraga-county-memorial-hospital.png differ
diff --git a/frontend/src/assets/sources/barbara-lebron-md.svg b/frontend/src/assets/sources/barbara-lebron-md.svg
new file mode 100644
index 00000000..5d9dd151
--- /dev/null
+++ b/frontend/src/assets/sources/barbara-lebron-md.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/frontend/src/assets/sources/barker-sleep-medicine-pllc.png b/frontend/src/assets/sources/barker-sleep-medicine-pllc.png
new file mode 100644
index 00000000..4e8d3eb7
Binary files /dev/null and b/frontend/src/assets/sources/barker-sleep-medicine-pllc.png differ
diff --git a/frontend/src/assets/sources/barnet-dulaney-surgery-centers.png b/frontend/src/assets/sources/barnet-dulaney-surgery-centers.png
new file mode 100644
index 00000000..606c4d02
Binary files /dev/null and b/frontend/src/assets/sources/barnet-dulaney-surgery-centers.png differ
diff --git a/frontend/src/assets/sources/barry-l-gellisod.jpg b/frontend/src/assets/sources/barry-l-gellisod.jpg
new file mode 100644
index 00000000..411cb2a8
Binary files /dev/null and b/frontend/src/assets/sources/barry-l-gellisod.jpg differ
diff --git a/frontend/src/assets/sources/bart-barrett-md.png b/frontend/src/assets/sources/bart-barrett-md.png
new file mode 100644
index 00000000..7f7c4de7
Binary files /dev/null and b/frontend/src/assets/sources/bart-barrett-md.png differ
diff --git a/frontend/src/assets/sources/bartlett-regional-hospital.png b/frontend/src/assets/sources/bartlett-regional-hospital.png
new file mode 100644
index 00000000..2595cb7a
Binary files /dev/null and b/frontend/src/assets/sources/bartlett-regional-hospital.png differ
diff --git a/frontend/src/assets/sources/basel-refai-md.jpg b/frontend/src/assets/sources/basel-refai-md.jpg
new file mode 100644
index 00000000..58a54bea
Binary files /dev/null and b/frontend/src/assets/sources/basel-refai-md.jpg differ
diff --git a/frontend/src/assets/sources/bastian-voice-institute.svg b/frontend/src/assets/sources/bastian-voice-institute.svg
new file mode 100644
index 00000000..976c60af
--- /dev/null
+++ b/frontend/src/assets/sources/bastian-voice-institute.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/baton-rouge-vascular.png b/frontend/src/assets/sources/baton-rouge-vascular.png
new file mode 100644
index 00000000..880ef4fa
Binary files /dev/null and b/frontend/src/assets/sources/baton-rouge-vascular.png differ
diff --git a/frontend/src/assets/sources/baxter-regional-medical-center.png b/frontend/src/assets/sources/baxter-regional-medical-center.png
new file mode 100644
index 00000000..1504b77b
Binary files /dev/null and b/frontend/src/assets/sources/baxter-regional-medical-center.png differ
diff --git a/frontend/src/assets/sources/bay-area-family-physicians-p-c.jpg b/frontend/src/assets/sources/bay-area-family-physicians-p-c.jpg
new file mode 100644
index 00000000..f36aa955
Binary files /dev/null and b/frontend/src/assets/sources/bay-area-family-physicians-p-c.jpg differ
diff --git a/frontend/src/assets/sources/bay-area-neurology-associates.jpg b/frontend/src/assets/sources/bay-area-neurology-associates.jpg
new file mode 100644
index 00000000..5dc85151
Binary files /dev/null and b/frontend/src/assets/sources/bay-area-neurology-associates.jpg differ
diff --git a/frontend/src/assets/sources/bay-area-vascular-asc.png b/frontend/src/assets/sources/bay-area-vascular-asc.png
new file mode 100644
index 00000000..93355e1c
Binary files /dev/null and b/frontend/src/assets/sources/bay-area-vascular-asc.png differ
diff --git a/frontend/src/assets/sources/bay-clinic.png b/frontend/src/assets/sources/bay-clinic.png
new file mode 100644
index 00000000..339f5b3c
Binary files /dev/null and b/frontend/src/assets/sources/bay-clinic.png differ
diff --git a/frontend/src/assets/sources/bay-eye-care-center.jpg b/frontend/src/assets/sources/bay-eye-care-center.jpg
new file mode 100644
index 00000000..92494627
Binary files /dev/null and b/frontend/src/assets/sources/bay-eye-care-center.jpg differ
diff --git a/frontend/src/assets/sources/bay-microsurgical-unit-inc.png b/frontend/src/assets/sources/bay-microsurgical-unit-inc.png
new file mode 100644
index 00000000..7cc3b01d
Binary files /dev/null and b/frontend/src/assets/sources/bay-microsurgical-unit-inc.png differ
diff --git a/frontend/src/assets/sources/center-for-visual-independence.png b/frontend/src/assets/sources/center-for-visual-independence.png
new file mode 100644
index 00000000..9efae84a
Binary files /dev/null and b/frontend/src/assets/sources/center-for-visual-independence.png differ
diff --git a/frontend/src/assets/sources/colonial-healthcare.png b/frontend/src/assets/sources/colonial-healthcare.png
new file mode 100644
index 00000000..c8be982f
Binary files /dev/null and b/frontend/src/assets/sources/colonial-healthcare.png differ
diff --git a/frontend/src/assets/sources/colorado-canyons-hospital-and-medical-center.jpg b/frontend/src/assets/sources/colorado-canyons-hospital-and-medical-center.jpg
new file mode 100644
index 00000000..3d2c2b36
Binary files /dev/null and b/frontend/src/assets/sources/colorado-canyons-hospital-and-medical-center.jpg differ
diff --git a/frontend/src/assets/sources/colorado-canyons-hospital-and-medical-center.png b/frontend/src/assets/sources/colorado-canyons-hospital-and-medical-center.png
new file mode 100644
index 00000000..44eaf1f4
Binary files /dev/null and b/frontend/src/assets/sources/colorado-canyons-hospital-and-medical-center.png differ
diff --git a/frontend/src/assets/sources/colorado-coalition-for-the-homeless.png b/frontend/src/assets/sources/colorado-coalition-for-the-homeless.png
new file mode 100644
index 00000000..a612ba64
Binary files /dev/null and b/frontend/src/assets/sources/colorado-coalition-for-the-homeless.png differ
diff --git a/frontend/src/assets/sources/colorado-eye-center.jpeg b/frontend/src/assets/sources/colorado-eye-center.jpeg
new file mode 100644
index 00000000..775761d1
Binary files /dev/null and b/frontend/src/assets/sources/colorado-eye-center.jpeg differ
diff --git a/frontend/src/assets/sources/colorado-eye-center.png b/frontend/src/assets/sources/colorado-eye-center.png
new file mode 100644
index 00000000..09f55073
Binary files /dev/null and b/frontend/src/assets/sources/colorado-eye-center.png differ
diff --git a/frontend/src/assets/sources/colorado-heart-and-vascular-pc.png b/frontend/src/assets/sources/colorado-heart-and-vascular-pc.png
new file mode 100644
index 00000000..b426620c
Binary files /dev/null and b/frontend/src/assets/sources/colorado-heart-and-vascular-pc.png differ
diff --git a/frontend/src/assets/sources/colorado-springs-cardiologists-pc.jpg b/frontend/src/assets/sources/colorado-springs-cardiologists-pc.jpg
new file mode 100644
index 00000000..eae13a00
Binary files /dev/null and b/frontend/src/assets/sources/colorado-springs-cardiologists-pc.jpg differ
diff --git a/frontend/src/assets/sources/colorado.jpg b/frontend/src/assets/sources/colorado.jpg
new file mode 100644
index 00000000..703807ca
Binary files /dev/null and b/frontend/src/assets/sources/colorado.jpg differ
diff --git a/frontend/src/assets/sources/colorado.png b/frontend/src/assets/sources/colorado.png
new file mode 100644
index 00000000..ed5baa1c
Binary files /dev/null and b/frontend/src/assets/sources/colorado.png differ
diff --git a/frontend/src/assets/sources/columbia-arthritis-center-pa.png b/frontend/src/assets/sources/columbia-arthritis-center-pa.png
new file mode 100644
index 00000000..2924ff2d
Binary files /dev/null and b/frontend/src/assets/sources/columbia-arthritis-center-pa.png differ
diff --git a/frontend/src/assets/sources/columbia-eye-clinic-pa.png b/frontend/src/assets/sources/columbia-eye-clinic-pa.png
new file mode 100644
index 00000000..c319678d
Binary files /dev/null and b/frontend/src/assets/sources/columbia-eye-clinic-pa.png differ
diff --git a/frontend/src/assets/sources/columbia-eye-surgery-center-inc.jpg b/frontend/src/assets/sources/columbia-eye-surgery-center-inc.jpg
new file mode 100644
index 00000000..f601d59f
Binary files /dev/null and b/frontend/src/assets/sources/columbia-eye-surgery-center-inc.jpg differ
diff --git a/frontend/src/assets/sources/columbia-memorial-hospital.jpg b/frontend/src/assets/sources/columbia-memorial-hospital.jpg
new file mode 100644
index 00000000..3c6c2abc
Binary files /dev/null and b/frontend/src/assets/sources/columbia-memorial-hospital.jpg differ
diff --git a/frontend/src/assets/sources/columbia-st-marys-inc.jpg b/frontend/src/assets/sources/columbia-st-marys-inc.jpg
new file mode 100644
index 00000000..abd3dbe5
Binary files /dev/null and b/frontend/src/assets/sources/columbia-st-marys-inc.jpg differ
diff --git a/frontend/src/assets/sources/columbia-st-marys-inc.png b/frontend/src/assets/sources/columbia-st-marys-inc.png
new file mode 100644
index 00000000..44f39894
Binary files /dev/null and b/frontend/src/assets/sources/columbia-st-marys-inc.png differ
diff --git a/frontend/src/assets/sources/columbus-arthritis-center-inc.png b/frontend/src/assets/sources/columbus-arthritis-center-inc.png
new file mode 100644
index 00000000..2ea2afa5
Binary files /dev/null and b/frontend/src/assets/sources/columbus-arthritis-center-inc.png differ
diff --git a/frontend/src/assets/sources/columbus-health-department.jpg b/frontend/src/assets/sources/columbus-health-department.jpg
new file mode 100644
index 00000000..2476322e
Binary files /dev/null and b/frontend/src/assets/sources/columbus-health-department.jpg differ
diff --git a/frontend/src/assets/sources/columbus-nephrology-inc.png b/frontend/src/assets/sources/columbus-nephrology-inc.png
new file mode 100644
index 00000000..ee728143
Binary files /dev/null and b/frontend/src/assets/sources/columbus-nephrology-inc.png differ
diff --git a/frontend/src/assets/sources/columbus-nephrology-inc.svg b/frontend/src/assets/sources/columbus-nephrology-inc.svg
new file mode 100644
index 00000000..5670c465
--- /dev/null
+++ b/frontend/src/assets/sources/columbus-nephrology-inc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/columbus-pain-center-p-c.png b/frontend/src/assets/sources/columbus-pain-center-p-c.png
new file mode 100644
index 00000000..90278a85
Binary files /dev/null and b/frontend/src/assets/sources/columbus-pain-center-p-c.png differ
diff --git a/frontend/src/assets/sources/columbus-regional-healthcare-system.jpg b/frontend/src/assets/sources/columbus-regional-healthcare-system.jpg
new file mode 100644
index 00000000..9d1f33bf
Binary files /dev/null and b/frontend/src/assets/sources/columbus-regional-healthcare-system.jpg differ
diff --git a/frontend/src/assets/sources/columbus-regional-healthcare-system.png b/frontend/src/assets/sources/columbus-regional-healthcare-system.png
new file mode 100644
index 00000000..ef1a9ebe
Binary files /dev/null and b/frontend/src/assets/sources/columbus-regional-healthcare-system.png differ
diff --git a/frontend/src/assets/sources/columbus-womens-care.png b/frontend/src/assets/sources/columbus-womens-care.png
new file mode 100644
index 00000000..e50d7eb5
Binary files /dev/null and b/frontend/src/assets/sources/columbus-womens-care.png differ
diff --git a/frontend/src/assets/sources/commonspirit-health.jpeg b/frontend/src/assets/sources/commonspirit-health.jpeg
new file mode 100644
index 00000000..47b59177
Binary files /dev/null and b/frontend/src/assets/sources/commonspirit-health.jpeg differ
diff --git a/frontend/src/assets/sources/commonwealth-eye-care-associates.jpg b/frontend/src/assets/sources/commonwealth-eye-care-associates.jpg
new file mode 100644
index 00000000..20e60709
Binary files /dev/null and b/frontend/src/assets/sources/commonwealth-eye-care-associates.jpg differ
diff --git a/frontend/src/assets/sources/communicare-health-centers.png b/frontend/src/assets/sources/communicare-health-centers.png
new file mode 100644
index 00000000..323805bf
Binary files /dev/null and b/frontend/src/assets/sources/communicare-health-centers.png differ
diff --git a/frontend/src/assets/sources/community-bridges-inc.png b/frontend/src/assets/sources/community-bridges-inc.png
new file mode 100644
index 00000000..08c9762c
Binary files /dev/null and b/frontend/src/assets/sources/community-bridges-inc.png differ
diff --git a/frontend/src/assets/sources/community-first-health-plans.png b/frontend/src/assets/sources/community-first-health-plans.png
new file mode 100644
index 00000000..5f3e5c42
Binary files /dev/null and b/frontend/src/assets/sources/community-first-health-plans.png differ
diff --git a/frontend/src/assets/sources/community-health-and-dental-care.png b/frontend/src/assets/sources/community-health-and-dental-care.png
new file mode 100644
index 00000000..13a7f497
Binary files /dev/null and b/frontend/src/assets/sources/community-health-and-dental-care.png differ
diff --git a/frontend/src/assets/sources/community-health-care-inc.jpg b/frontend/src/assets/sources/community-health-care-inc.jpg
new file mode 100644
index 00000000..5dbf3e56
Binary files /dev/null and b/frontend/src/assets/sources/community-health-care-inc.jpg differ
diff --git a/frontend/src/assets/sources/community-health-care.jpg b/frontend/src/assets/sources/community-health-care.jpg
new file mode 100644
index 00000000..0801eb58
Binary files /dev/null and b/frontend/src/assets/sources/community-health-care.jpg differ
diff --git a/frontend/src/assets/sources/community-health-care.png b/frontend/src/assets/sources/community-health-care.png
new file mode 100644
index 00000000..6d441835
Binary files /dev/null and b/frontend/src/assets/sources/community-health-care.png differ
diff --git a/frontend/src/assets/sources/community-health-center-of-central-mis.png b/frontend/src/assets/sources/community-health-center-of-central-mis.png
new file mode 100644
index 00000000..56770ab0
Binary files /dev/null and b/frontend/src/assets/sources/community-health-center-of-central-mis.png differ
diff --git a/frontend/src/assets/sources/community-health-centers-of-burlington.png b/frontend/src/assets/sources/community-health-centers-of-burlington.png
new file mode 100644
index 00000000..43103ad9
Binary files /dev/null and b/frontend/src/assets/sources/community-health-centers-of-burlington.png differ
diff --git a/frontend/src/assets/sources/community-health-connections.png b/frontend/src/assets/sources/community-health-connections.png
new file mode 100644
index 00000000..51b88335
Binary files /dev/null and b/frontend/src/assets/sources/community-health-connections.png differ
diff --git a/frontend/src/assets/sources/community-health-ctrs-of-greater-dayton.png b/frontend/src/assets/sources/community-health-ctrs-of-greater-dayton.png
new file mode 100644
index 00000000..72e9634e
Binary files /dev/null and b/frontend/src/assets/sources/community-health-ctrs-of-greater-dayton.png differ
diff --git a/frontend/src/assets/sources/community-health-imaging-centers.jpg b/frontend/src/assets/sources/community-health-imaging-centers.jpg
new file mode 100644
index 00000000..e7c99fc7
Binary files /dev/null and b/frontend/src/assets/sources/community-health-imaging-centers.jpg differ
diff --git a/frontend/src/assets/sources/community-health-network-inc.png b/frontend/src/assets/sources/community-health-network-inc.png
new file mode 100644
index 00000000..9802a685
Binary files /dev/null and b/frontend/src/assets/sources/community-health-network-inc.png differ
diff --git a/frontend/src/assets/sources/community-health-of-east-tennessee.png b/frontend/src/assets/sources/community-health-of-east-tennessee.png
new file mode 100644
index 00000000..ba4eaf8f
Binary files /dev/null and b/frontend/src/assets/sources/community-health-of-east-tennessee.png differ
diff --git a/frontend/src/assets/sources/community-health-practice.png b/frontend/src/assets/sources/community-health-practice.png
new file mode 100644
index 00000000..6e3672ff
Binary files /dev/null and b/frontend/src/assets/sources/community-health-practice.png differ
diff --git a/frontend/src/assets/sources/community-health-programs-inc.png b/frontend/src/assets/sources/community-health-programs-inc.png
new file mode 100644
index 00000000..fe877611
Binary files /dev/null and b/frontend/src/assets/sources/community-health-programs-inc.png differ
diff --git a/frontend/src/assets/sources/community-health-service-agency.png b/frontend/src/assets/sources/community-health-service-agency.png
new file mode 100644
index 00000000..02ac6525
Binary files /dev/null and b/frontend/src/assets/sources/community-health-service-agency.png differ
diff --git a/frontend/src/assets/sources/community-health-services.jpg b/frontend/src/assets/sources/community-health-services.jpg
new file mode 100644
index 00000000..132d87ec
Binary files /dev/null and b/frontend/src/assets/sources/community-health-services.jpg differ
diff --git a/frontend/src/assets/sources/community-health-services.png b/frontend/src/assets/sources/community-health-services.png
new file mode 100644
index 00000000..6e3672ff
Binary files /dev/null and b/frontend/src/assets/sources/community-health-services.png differ
diff --git a/frontend/src/assets/sources/community-health-systems-inc.png b/frontend/src/assets/sources/community-health-systems-inc.png
new file mode 100644
index 00000000..191e11d3
Binary files /dev/null and b/frontend/src/assets/sources/community-health-systems-inc.png differ
diff --git a/frontend/src/assets/sources/community-healthcare-system-inc.png b/frontend/src/assets/sources/community-healthcare-system-inc.png
new file mode 100644
index 00000000..c47ce2f4
Binary files /dev/null and b/frontend/src/assets/sources/community-healthcare-system-inc.png differ
diff --git a/frontend/src/assets/sources/community-medical-center-missoula.png b/frontend/src/assets/sources/community-medical-center-missoula.png
new file mode 100644
index 00000000..8566e39a
Binary files /dev/null and b/frontend/src/assets/sources/community-medical-center-missoula.png differ
diff --git a/frontend/src/assets/sources/community-medical-centers-inc.jpg b/frontend/src/assets/sources/community-medical-centers-inc.jpg
new file mode 100644
index 00000000..eaa315c1
Binary files /dev/null and b/frontend/src/assets/sources/community-medical-centers-inc.jpg differ
diff --git a/frontend/src/assets/sources/community-medical-centers-inc.png b/frontend/src/assets/sources/community-medical-centers-inc.png
new file mode 100644
index 00000000..18aecf4c
Binary files /dev/null and b/frontend/src/assets/sources/community-medical-centers-inc.png differ
diff --git a/frontend/src/assets/sources/community-medicine-inc.png b/frontend/src/assets/sources/community-medicine-inc.png
new file mode 100644
index 00000000..a0f8ada2
Binary files /dev/null and b/frontend/src/assets/sources/community-medicine-inc.png differ
diff --git a/frontend/src/assets/sources/community-memorial-hospital.png b/frontend/src/assets/sources/community-memorial-hospital.png
new file mode 100644
index 00000000..b2cb79eb
Binary files /dev/null and b/frontend/src/assets/sources/community-memorial-hospital.png differ
diff --git a/frontend/src/assets/sources/community-orthopedic-medical-grp.png b/frontend/src/assets/sources/community-orthopedic-medical-grp.png
new file mode 100644
index 00000000..9d9de78b
Binary files /dev/null and b/frontend/src/assets/sources/community-orthopedic-medical-grp.png differ
diff --git a/frontend/src/assets/sources/community-practice-services.png b/frontend/src/assets/sources/community-practice-services.png
new file mode 100644
index 00000000..dea62134
Binary files /dev/null and b/frontend/src/assets/sources/community-practice-services.png differ
diff --git a/frontend/src/assets/sources/community-pulmonary-associates.jpg b/frontend/src/assets/sources/community-pulmonary-associates.jpg
new file mode 100644
index 00000000..8fc4c8fc
Binary files /dev/null and b/frontend/src/assets/sources/community-pulmonary-associates.jpg differ
diff --git a/frontend/src/assets/sources/compass-community-health.jpg b/frontend/src/assets/sources/compass-community-health.jpg
new file mode 100644
index 00000000..44b3a1e7
Binary files /dev/null and b/frontend/src/assets/sources/compass-community-health.jpg differ
diff --git a/frontend/src/assets/sources/compass-medical-clinic.png b/frontend/src/assets/sources/compass-medical-clinic.png
new file mode 100644
index 00000000..d489d8c9
Binary files /dev/null and b/frontend/src/assets/sources/compass-medical-clinic.png differ
diff --git a/frontend/src/assets/sources/compass-medical-clinic.svg b/frontend/src/assets/sources/compass-medical-clinic.svg
new file mode 100644
index 00000000..87def689
--- /dev/null
+++ b/frontend/src/assets/sources/compass-medical-clinic.svg
@@ -0,0 +1,96 @@
+
+
+
diff --git a/frontend/src/assets/sources/complete-care-community-health-center.png b/frontend/src/assets/sources/complete-care-community-health-center.png
new file mode 100644
index 00000000..f56bd220
Binary files /dev/null and b/frontend/src/assets/sources/complete-care-community-health-center.png differ
diff --git a/frontend/src/assets/sources/complete-care-medical-center.jpg b/frontend/src/assets/sources/complete-care-medical-center.jpg
new file mode 100644
index 00000000..740fbac9
Binary files /dev/null and b/frontend/src/assets/sources/complete-care-medical-center.jpg differ
diff --git a/frontend/src/assets/sources/complete-care-medical-center.png b/frontend/src/assets/sources/complete-care-medical-center.png
new file mode 100644
index 00000000..3dd7e154
Binary files /dev/null and b/frontend/src/assets/sources/complete-care-medical-center.png differ
diff --git a/frontend/src/assets/sources/completecare-health-network.png b/frontend/src/assets/sources/completecare-health-network.png
new file mode 100644
index 00000000..73b70002
Binary files /dev/null and b/frontend/src/assets/sources/completecare-health-network.png differ
diff --git a/frontend/src/assets/sources/comprehensive-cardiovascular.jpg b/frontend/src/assets/sources/comprehensive-cardiovascular.jpg
new file mode 100644
index 00000000..04aa1e20
Binary files /dev/null and b/frontend/src/assets/sources/comprehensive-cardiovascular.jpg differ
diff --git a/frontend/src/assets/sources/comprehensive-care-clinic.jpg b/frontend/src/assets/sources/comprehensive-care-clinic.jpg
new file mode 100644
index 00000000..5952ef4d
Binary files /dev/null and b/frontend/src/assets/sources/comprehensive-care-clinic.jpg differ
diff --git a/frontend/src/assets/sources/comprehensive-counseling-center.jpg b/frontend/src/assets/sources/comprehensive-counseling-center.jpg
new file mode 100644
index 00000000..685f14f4
Binary files /dev/null and b/frontend/src/assets/sources/comprehensive-counseling-center.jpg differ
diff --git a/frontend/src/assets/sources/comprehensive-orthopaedics-s-c.png b/frontend/src/assets/sources/comprehensive-orthopaedics-s-c.png
new file mode 100644
index 00000000..33f9fa0a
Binary files /dev/null and b/frontend/src/assets/sources/comprehensive-orthopaedics-s-c.png differ
diff --git a/frontend/src/assets/sources/compsych.png b/frontend/src/assets/sources/compsych.png
new file mode 100644
index 00000000..2d23039b
Binary files /dev/null and b/frontend/src/assets/sources/compsych.png differ
diff --git a/frontend/src/assets/sources/concierge-medical-of-naples-llc.jpg b/frontend/src/assets/sources/concierge-medical-of-naples-llc.jpg
new file mode 100644
index 00000000..e2dfb538
Binary files /dev/null and b/frontend/src/assets/sources/concierge-medical-of-naples-llc.jpg differ
diff --git a/frontend/src/assets/sources/connecticut-eye-consultants.png b/frontend/src/assets/sources/connecticut-eye-consultants.png
new file mode 100644
index 00000000..7b629227
Binary files /dev/null and b/frontend/src/assets/sources/connecticut-eye-consultants.png differ
diff --git a/frontend/src/assets/sources/connecticut-image-guided-surgery.png b/frontend/src/assets/sources/connecticut-image-guided-surgery.png
new file mode 100644
index 00000000..e7380cd6
Binary files /dev/null and b/frontend/src/assets/sources/connecticut-image-guided-surgery.png differ
diff --git a/frontend/src/assets/sources/connecticut-vascular-thoracic-surgical.png b/frontend/src/assets/sources/connecticut-vascular-thoracic-surgical.png
new file mode 100644
index 00000000..29826307
Binary files /dev/null and b/frontend/src/assets/sources/connecticut-vascular-thoracic-surgical.png differ
diff --git a/frontend/src/assets/sources/consultants-in-infectious-disease.png b/frontend/src/assets/sources/consultants-in-infectious-disease.png
new file mode 100644
index 00000000..7304104a
Binary files /dev/null and b/frontend/src/assets/sources/consultants-in-infectious-disease.png differ
diff --git a/frontend/src/assets/sources/convenient-care-family-medicine.jpg b/frontend/src/assets/sources/convenient-care-family-medicine.jpg
new file mode 100644
index 00000000..4c427846
Binary files /dev/null and b/frontend/src/assets/sources/convenient-care-family-medicine.jpg differ
diff --git a/frontend/src/assets/sources/cook-county-health-and-hospitals-system.png b/frontend/src/assets/sources/cook-county-health-and-hospitals-system.png
new file mode 100644
index 00000000..f532bc95
Binary files /dev/null and b/frontend/src/assets/sources/cook-county-health-and-hospitals-system.png differ
diff --git a/frontend/src/assets/sources/cooper-green-mercy-health-services-auth.png b/frontend/src/assets/sources/cooper-green-mercy-health-services-auth.png
new file mode 100644
index 00000000..d6383997
Binary files /dev/null and b/frontend/src/assets/sources/cooper-green-mercy-health-services-auth.png differ
diff --git a/frontend/src/assets/sources/copper-queen-community-hospital.png b/frontend/src/assets/sources/copper-queen-community-hospital.png
new file mode 100644
index 00000000..8d4063bf
Binary files /dev/null and b/frontend/src/assets/sources/copper-queen-community-hospital.png differ
diff --git a/frontend/src/assets/sources/core-physicians-llc.jpg b/frontend/src/assets/sources/core-physicians-llc.jpg
new file mode 100644
index 00000000..8685b048
Binary files /dev/null and b/frontend/src/assets/sources/core-physicians-llc.jpg differ
diff --git a/frontend/src/assets/sources/cornea-consultants-of-texas.jpg b/frontend/src/assets/sources/cornea-consultants-of-texas.jpg
new file mode 100644
index 00000000..2d9df5d5
Binary files /dev/null and b/frontend/src/assets/sources/cornea-consultants-of-texas.jpg differ
diff --git a/frontend/src/assets/sources/cornea-consultants-of-texas.png b/frontend/src/assets/sources/cornea-consultants-of-texas.png
new file mode 100644
index 00000000..8a202592
Binary files /dev/null and b/frontend/src/assets/sources/cornea-consultants-of-texas.png differ
diff --git a/frontend/src/assets/sources/corneal-associates.png b/frontend/src/assets/sources/corneal-associates.png
new file mode 100644
index 00000000..b40616ef
Binary files /dev/null and b/frontend/src/assets/sources/corneal-associates.png differ
diff --git a/frontend/src/assets/sources/cornerstone-care.png b/frontend/src/assets/sources/cornerstone-care.png
new file mode 100644
index 00000000..e5c61875
Binary files /dev/null and b/frontend/src/assets/sources/cornerstone-care.png differ
diff --git a/frontend/src/assets/sources/cornerstone-family-care.png b/frontend/src/assets/sources/cornerstone-family-care.png
new file mode 100644
index 00000000..3924eaea
Binary files /dev/null and b/frontend/src/assets/sources/cornerstone-family-care.png differ
diff --git a/frontend/src/assets/sources/cornerstone-orthopedics-and-sports-med.png b/frontend/src/assets/sources/cornerstone-orthopedics-and-sports-med.png
new file mode 100644
index 00000000..8ed68a99
Binary files /dev/null and b/frontend/src/assets/sources/cornerstone-orthopedics-and-sports-med.png differ
diff --git a/frontend/src/assets/sources/corona-family-care-inc.png b/frontend/src/assets/sources/corona-family-care-inc.png
new file mode 100644
index 00000000..8f6ab79d
Binary files /dev/null and b/frontend/src/assets/sources/corona-family-care-inc.png differ
diff --git a/frontend/src/assets/sources/correctvision-laser-institute-llc.jpg b/frontend/src/assets/sources/correctvision-laser-institute-llc.jpg
new file mode 100644
index 00000000..3179a9a8
Binary files /dev/null and b/frontend/src/assets/sources/correctvision-laser-institute-llc.jpg differ
diff --git a/frontend/src/assets/sources/coulis-cardiology.jpg b/frontend/src/assets/sources/coulis-cardiology.jpg
new file mode 100644
index 00000000..4d353507
Binary files /dev/null and b/frontend/src/assets/sources/coulis-cardiology.jpg differ
diff --git a/frontend/src/assets/sources/council-bluffs-surgical-associates.jpg b/frontend/src/assets/sources/council-bluffs-surgical-associates.jpg
new file mode 100644
index 00000000..4abf0275
Binary files /dev/null and b/frontend/src/assets/sources/council-bluffs-surgical-associates.jpg differ
diff --git a/frontend/src/assets/sources/countryside-family-practice.png b/frontend/src/assets/sources/countryside-family-practice.png
new file mode 100644
index 00000000..8ac870dc
Binary files /dev/null and b/frontend/src/assets/sources/countryside-family-practice.png differ
diff --git a/frontend/src/assets/sources/county-of-ingham.jpg b/frontend/src/assets/sources/county-of-ingham.jpg
new file mode 100644
index 00000000..8776c6b9
Binary files /dev/null and b/frontend/src/assets/sources/county-of-ingham.jpg differ
diff --git a/frontend/src/assets/sources/county-of-ventura.png b/frontend/src/assets/sources/county-of-ventura.png
new file mode 100644
index 00000000..85749303
Binary files /dev/null and b/frontend/src/assets/sources/county-of-ventura.png differ
diff --git a/frontend/src/assets/sources/courthouse-family-medicine-pllc.jpeg b/frontend/src/assets/sources/courthouse-family-medicine-pllc.jpeg
new file mode 100644
index 00000000..48f286b7
Binary files /dev/null and b/frontend/src/assets/sources/courthouse-family-medicine-pllc.jpeg differ
diff --git a/frontend/src/assets/sources/covid-vaccine-clinic.jpg b/frontend/src/assets/sources/covid-vaccine-clinic.jpg
new file mode 100644
index 00000000..eb44846a
Binary files /dev/null and b/frontend/src/assets/sources/covid-vaccine-clinic.jpg differ
diff --git a/frontend/src/assets/sources/coxhealth.jpg b/frontend/src/assets/sources/coxhealth.jpg
new file mode 100644
index 00000000..3a1e52b8
Binary files /dev/null and b/frontend/src/assets/sources/coxhealth.jpg differ
diff --git a/frontend/src/assets/sources/coxhealth.png b/frontend/src/assets/sources/coxhealth.png
new file mode 100644
index 00000000..748466b1
Binary files /dev/null and b/frontend/src/assets/sources/coxhealth.png differ
diff --git a/frontend/src/assets/sources/cozen-oconnor.svg b/frontend/src/assets/sources/cozen-oconnor.svg
new file mode 100644
index 00000000..7d207352
--- /dev/null
+++ b/frontend/src/assets/sources/cozen-oconnor.svg
@@ -0,0 +1,43 @@
+
+
+
diff --git a/frontend/src/assets/sources/craig-a-skolnick-m-d-p-a.png b/frontend/src/assets/sources/craig-a-skolnick-m-d-p-a.png
new file mode 100644
index 00000000..31a43fb1
Binary files /dev/null and b/frontend/src/assets/sources/craig-a-skolnick-m-d-p-a.png differ
diff --git a/frontend/src/assets/sources/crawford-memorial-hospital.png b/frontend/src/assets/sources/crawford-memorial-hospital.png
new file mode 100644
index 00000000..5cff6652
Binary files /dev/null and b/frontend/src/assets/sources/crawford-memorial-hospital.png differ
diff --git a/frontend/src/assets/sources/creek-nation-community-hospital.png b/frontend/src/assets/sources/creek-nation-community-hospital.png
new file mode 100644
index 00000000..ab8d072e
Binary files /dev/null and b/frontend/src/assets/sources/creek-nation-community-hospital.png differ
diff --git a/frontend/src/assets/sources/crenshaw-medical-center.png b/frontend/src/assets/sources/crenshaw-medical-center.png
new file mode 100644
index 00000000..15c4a8ea
Binary files /dev/null and b/frontend/src/assets/sources/crenshaw-medical-center.png differ
diff --git a/frontend/src/assets/sources/crestview-asc.jpg b/frontend/src/assets/sources/crestview-asc.jpg
new file mode 100644
index 00000000..33f305db
Binary files /dev/null and b/frontend/src/assets/sources/crestview-asc.jpg differ
diff --git a/frontend/src/assets/sources/crestview-hills-surgery-center.jpg b/frontend/src/assets/sources/crestview-hills-surgery-center.jpg
new file mode 100644
index 00000000..7cbb0fab
Binary files /dev/null and b/frontend/src/assets/sources/crestview-hills-surgery-center.jpg differ
diff --git a/frontend/src/assets/sources/crestview-hills-surgery-center.png b/frontend/src/assets/sources/crestview-hills-surgery-center.png
new file mode 100644
index 00000000..91ed0882
Binary files /dev/null and b/frontend/src/assets/sources/crestview-hills-surgery-center.png differ
diff --git a/frontend/src/assets/sources/critical-care-pulmonary-and-sleep-assoc.png b/frontend/src/assets/sources/critical-care-pulmonary-and-sleep-assoc.png
new file mode 100644
index 00000000..2e4b1736
Binary files /dev/null and b/frontend/src/assets/sources/critical-care-pulmonary-and-sleep-assoc.png differ
diff --git a/frontend/src/assets/sources/crockett-medical-center.png b/frontend/src/assets/sources/crockett-medical-center.png
new file mode 100644
index 00000000..74e70848
Binary files /dev/null and b/frontend/src/assets/sources/crockett-medical-center.png differ
diff --git a/frontend/src/assets/sources/cross-road-health-ministries.png b/frontend/src/assets/sources/cross-road-health-ministries.png
new file mode 100644
index 00000000..f24ee98c
Binary files /dev/null and b/frontend/src/assets/sources/cross-road-health-ministries.png differ
diff --git a/frontend/src/assets/sources/cross-timbers-health-clinics-inc.jpg b/frontend/src/assets/sources/cross-timbers-health-clinics-inc.jpg
new file mode 100644
index 00000000..345135e5
Binary files /dev/null and b/frontend/src/assets/sources/cross-timbers-health-clinics-inc.jpg differ
diff --git a/frontend/src/assets/sources/crossing-healthcare.png b/frontend/src/assets/sources/crossing-healthcare.png
new file mode 100644
index 00000000..191f511c
Binary files /dev/null and b/frontend/src/assets/sources/crossing-healthcare.png differ
diff --git a/frontend/src/assets/sources/crossroads-for-women-inc.png b/frontend/src/assets/sources/crossroads-for-women-inc.png
new file mode 100644
index 00000000..3bc31c8b
Binary files /dev/null and b/frontend/src/assets/sources/crossroads-for-women-inc.png differ
diff --git a/frontend/src/assets/sources/crossroads-health.png b/frontend/src/assets/sources/crossroads-health.png
new file mode 100644
index 00000000..d7717da4
Binary files /dev/null and b/frontend/src/assets/sources/crossroads-health.png differ
diff --git a/frontend/src/assets/sources/crozer-health-access-network.jpg b/frontend/src/assets/sources/crozer-health-access-network.jpg
new file mode 100644
index 00000000..9c34a19f
Binary files /dev/null and b/frontend/src/assets/sources/crozer-health-access-network.jpg differ
diff --git a/frontend/src/assets/sources/crystal-clinic-orthopaedic-center-llc.png b/frontend/src/assets/sources/crystal-clinic-orthopaedic-center-llc.png
new file mode 100644
index 00000000..c78fb220
Binary files /dev/null and b/frontend/src/assets/sources/crystal-clinic-orthopaedic-center-llc.png differ
diff --git a/frontend/src/assets/sources/crystal-run-healthcare-physicians-llp.jpg b/frontend/src/assets/sources/crystal-run-healthcare-physicians-llp.jpg
new file mode 100644
index 00000000..728c32a9
Binary files /dev/null and b/frontend/src/assets/sources/crystal-run-healthcare-physicians-llp.jpg differ
diff --git a/frontend/src/assets/sources/cse-medical-group-inc.png b/frontend/src/assets/sources/cse-medical-group-inc.png
new file mode 100644
index 00000000..bc6aa603
Binary files /dev/null and b/frontend/src/assets/sources/cse-medical-group-inc.png differ
diff --git a/frontend/src/assets/sources/ct-derm-pc.png b/frontend/src/assets/sources/ct-derm-pc.png
new file mode 100644
index 00000000..6f946b6f
Binary files /dev/null and b/frontend/src/assets/sources/ct-derm-pc.png differ
diff --git a/frontend/src/assets/sources/cullman-medical-and-pediatric-assoc-pc.jpg b/frontend/src/assets/sources/cullman-medical-and-pediatric-assoc-pc.jpg
new file mode 100644
index 00000000..600f6693
Binary files /dev/null and b/frontend/src/assets/sources/cullman-medical-and-pediatric-assoc-pc.jpg differ
diff --git a/frontend/src/assets/sources/cullman-surgical-assoc-p-c.png b/frontend/src/assets/sources/cullman-surgical-assoc-p-c.png
new file mode 100644
index 00000000..54f09ded
Binary files /dev/null and b/frontend/src/assets/sources/cullman-surgical-assoc-p-c.png differ
diff --git a/frontend/src/assets/sources/cumberland-mountain-community-services-board.jpg b/frontend/src/assets/sources/cumberland-mountain-community-services-board.jpg
new file mode 100644
index 00000000..08c64e0d
Binary files /dev/null and b/frontend/src/assets/sources/cumberland-mountain-community-services-board.jpg differ
diff --git a/frontend/src/assets/sources/cure-cardiovascular-consultants-inc.png b/frontend/src/assets/sources/cure-cardiovascular-consultants-inc.png
new file mode 100644
index 00000000..23a56cad
Binary files /dev/null and b/frontend/src/assets/sources/cure-cardiovascular-consultants-inc.png differ
diff --git a/frontend/src/assets/sources/cvp-physicians.jpg b/frontend/src/assets/sources/cvp-physicians.jpg
new file mode 100644
index 00000000..cc9c1586
Binary files /dev/null and b/frontend/src/assets/sources/cvp-physicians.jpg differ
diff --git a/frontend/src/assets/sources/cvp-surgery-centers.svg b/frontend/src/assets/sources/cvp-surgery-centers.svg
new file mode 100644
index 00000000..5454cfd0
--- /dev/null
+++ b/frontend/src/assets/sources/cvp-surgery-centers.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/cypress-pointe-family-medicine.png b/frontend/src/assets/sources/cypress-pointe-family-medicine.png
new file mode 100644
index 00000000..3e4f2ba4
Binary files /dev/null and b/frontend/src/assets/sources/cypress-pointe-family-medicine.png differ
diff --git a/frontend/src/assets/sources/d-v-pasupuleti-md.png b/frontend/src/assets/sources/d-v-pasupuleti-md.png
new file mode 100644
index 00000000..58c1d281
Binary files /dev/null and b/frontend/src/assets/sources/d-v-pasupuleti-md.png differ
diff --git a/frontend/src/assets/sources/dac-corpus-christi.png b/frontend/src/assets/sources/dac-corpus-christi.png
new file mode 100644
index 00000000..5552caab
Binary files /dev/null and b/frontend/src/assets/sources/dac-corpus-christi.png differ
diff --git a/frontend/src/assets/sources/dallas-center-medical.png b/frontend/src/assets/sources/dallas-center-medical.png
new file mode 100644
index 00000000..b3e3a446
Binary files /dev/null and b/frontend/src/assets/sources/dallas-center-medical.png differ
diff --git a/frontend/src/assets/sources/dallas-renal-group.png b/frontend/src/assets/sources/dallas-renal-group.png
new file mode 100644
index 00000000..b9826c00
Binary files /dev/null and b/frontend/src/assets/sources/dallas-renal-group.png differ
diff --git a/frontend/src/assets/sources/dan-bangart-dpm.png b/frontend/src/assets/sources/dan-bangart-dpm.png
new file mode 100644
index 00000000..62d2662b
Binary files /dev/null and b/frontend/src/assets/sources/dan-bangart-dpm.png differ
diff --git a/frontend/src/assets/sources/danbury-eye-physicians.png b/frontend/src/assets/sources/danbury-eye-physicians.png
new file mode 100644
index 00000000..c32f7f80
Binary files /dev/null and b/frontend/src/assets/sources/danbury-eye-physicians.png differ
diff --git a/frontend/src/assets/sources/daniel-g-orr-md.jpg b/frontend/src/assets/sources/daniel-g-orr-md.jpg
new file mode 100644
index 00000000..e6c68c55
Binary files /dev/null and b/frontend/src/assets/sources/daniel-g-orr-md.jpg differ
diff --git a/frontend/src/assets/sources/daniel-j-ryan-m-d-p-c.png b/frontend/src/assets/sources/daniel-j-ryan-m-d-p-c.png
new file mode 100644
index 00000000..a08d61a9
Binary files /dev/null and b/frontend/src/assets/sources/daniel-j-ryan-m-d-p-c.png differ
diff --git a/frontend/src/assets/sources/david-c-morley-jr-md.jpg b/frontend/src/assets/sources/david-c-morley-jr-md.jpg
new file mode 100644
index 00000000..47c3362c
Binary files /dev/null and b/frontend/src/assets/sources/david-c-morley-jr-md.jpg differ
diff --git a/frontend/src/assets/sources/david-campisi-md.png b/frontend/src/assets/sources/david-campisi-md.png
new file mode 100644
index 00000000..b5759931
Binary files /dev/null and b/frontend/src/assets/sources/david-campisi-md.png differ
diff --git a/frontend/src/assets/sources/david-d-oh-md.png b/frontend/src/assets/sources/david-d-oh-md.png
new file mode 100644
index 00000000..66faa9c5
Binary files /dev/null and b/frontend/src/assets/sources/david-d-oh-md.png differ
diff --git a/frontend/src/assets/sources/david-e-bank-md.png b/frontend/src/assets/sources/david-e-bank-md.png
new file mode 100644
index 00000000..b727e985
Binary files /dev/null and b/frontend/src/assets/sources/david-e-bank-md.png differ
diff --git a/frontend/src/assets/sources/david-h-warner-dpm.jpg b/frontend/src/assets/sources/david-h-warner-dpm.jpg
new file mode 100644
index 00000000..3df495af
Binary files /dev/null and b/frontend/src/assets/sources/david-h-warner-dpm.jpg differ
diff --git a/frontend/src/assets/sources/david-n-rios-md.png b/frontend/src/assets/sources/david-n-rios-md.png
new file mode 100644
index 00000000..0b4043a8
Binary files /dev/null and b/frontend/src/assets/sources/david-n-rios-md.png differ
diff --git a/frontend/src/assets/sources/david-r-jensen-md-inc.jpg b/frontend/src/assets/sources/david-r-jensen-md-inc.jpg
new file mode 100644
index 00000000..6dd6ccc0
Binary files /dev/null and b/frontend/src/assets/sources/david-r-jensen-md-inc.jpg differ
diff --git a/frontend/src/assets/sources/david-w-ray-do-llc.svg b/frontend/src/assets/sources/david-w-ray-do-llc.svg
new file mode 100644
index 00000000..52452e16
--- /dev/null
+++ b/frontend/src/assets/sources/david-w-ray-do-llc.svg
@@ -0,0 +1,38 @@
+
+
+
diff --git a/frontend/src/assets/sources/davis-county-hospital.png b/frontend/src/assets/sources/davis-county-hospital.png
new file mode 100644
index 00000000..a804f732
Binary files /dev/null and b/frontend/src/assets/sources/davis-county-hospital.png differ
diff --git a/frontend/src/assets/sources/davis-medical-center.jpg b/frontend/src/assets/sources/davis-medical-center.jpg
new file mode 100644
index 00000000..c33f9a7a
Binary files /dev/null and b/frontend/src/assets/sources/davis-medical-center.jpg differ
diff --git a/frontend/src/assets/sources/davis-podiatry-llc.png b/frontend/src/assets/sources/davis-podiatry-llc.png
new file mode 100644
index 00000000..46b33ed1
Binary files /dev/null and b/frontend/src/assets/sources/davis-podiatry-llc.png differ
diff --git a/frontend/src/assets/sources/davita-complex-care-solutions.png b/frontend/src/assets/sources/davita-complex-care-solutions.png
new file mode 100644
index 00000000..56cbc12f
Binary files /dev/null and b/frontend/src/assets/sources/davita-complex-care-solutions.png differ
diff --git a/frontend/src/assets/sources/daymark-recovery-services.png b/frontend/src/assets/sources/daymark-recovery-services.png
new file mode 100644
index 00000000..79f67ab3
Binary files /dev/null and b/frontend/src/assets/sources/daymark-recovery-services.png differ
diff --git a/frontend/src/assets/sources/dayton-gastroenterology.jpg b/frontend/src/assets/sources/dayton-gastroenterology.jpg
new file mode 100644
index 00000000..30300290
Binary files /dev/null and b/frontend/src/assets/sources/dayton-gastroenterology.jpg differ
diff --git a/frontend/src/assets/sources/dayton-gastroenterology.png b/frontend/src/assets/sources/dayton-gastroenterology.png
new file mode 100644
index 00000000..5f7718c9
Binary files /dev/null and b/frontend/src/assets/sources/dayton-gastroenterology.png differ
diff --git a/frontend/src/assets/sources/dayton-interventional.png b/frontend/src/assets/sources/dayton-interventional.png
new file mode 100644
index 00000000..7eb76f02
Binary files /dev/null and b/frontend/src/assets/sources/dayton-interventional.png differ
diff --git a/frontend/src/assets/sources/dayton-renal-physicians-inc.jpg b/frontend/src/assets/sources/dayton-renal-physicians-inc.jpg
new file mode 100644
index 00000000..6c1208e7
Binary files /dev/null and b/frontend/src/assets/sources/dayton-renal-physicians-inc.jpg differ
diff --git a/frontend/src/assets/sources/dayton-renal-physicians-inc.png b/frontend/src/assets/sources/dayton-renal-physicians-inc.png
new file mode 100644
index 00000000..bc6d6c8c
Binary files /dev/null and b/frontend/src/assets/sources/dayton-renal-physicians-inc.png differ
diff --git a/frontend/src/assets/sources/dayton-skin-care.jpg b/frontend/src/assets/sources/dayton-skin-care.jpg
new file mode 100644
index 00000000..be34f999
Binary files /dev/null and b/frontend/src/assets/sources/dayton-skin-care.jpg differ
diff --git a/frontend/src/assets/sources/deanza-obstetrics-and-gynecology-med-grp.jpg b/frontend/src/assets/sources/deanza-obstetrics-and-gynecology-med-grp.jpg
new file mode 100644
index 00000000..9a01919d
Binary files /dev/null and b/frontend/src/assets/sources/deanza-obstetrics-and-gynecology-med-grp.jpg differ
diff --git a/frontend/src/assets/sources/decatur-county-hospital.png b/frontend/src/assets/sources/decatur-county-hospital.png
new file mode 100644
index 00000000..16544a6d
Binary files /dev/null and b/frontend/src/assets/sources/decatur-county-hospital.png differ
diff --git a/frontend/src/assets/sources/deen-gross-eye-centers.svg b/frontend/src/assets/sources/deen-gross-eye-centers.svg
new file mode 100644
index 00000000..06ce7c70
--- /dev/null
+++ b/frontend/src/assets/sources/deen-gross-eye-centers.svg
@@ -0,0 +1,54 @@
+
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/dekalb-eye-consultants-llc.png b/frontend/src/assets/sources/dekalb-eye-consultants-llc.png
new file mode 100644
index 00000000..96f2bc35
Binary files /dev/null and b/frontend/src/assets/sources/dekalb-eye-consultants-llc.png differ
diff --git a/frontend/src/assets/sources/dekalb-hearing-services-llc.png b/frontend/src/assets/sources/dekalb-hearing-services-llc.png
new file mode 100644
index 00000000..1fda3f2c
Binary files /dev/null and b/frontend/src/assets/sources/dekalb-hearing-services-llc.png differ
diff --git a/frontend/src/assets/sources/delaire-chiropractic-clinic-inc.jpg b/frontend/src/assets/sources/delaire-chiropractic-clinic-inc.jpg
new file mode 100644
index 00000000..be81e441
Binary files /dev/null and b/frontend/src/assets/sources/delaire-chiropractic-clinic-inc.jpg differ
diff --git a/frontend/src/assets/sources/delaire-chiropractic-clinic-inc.png b/frontend/src/assets/sources/delaire-chiropractic-clinic-inc.png
new file mode 100644
index 00000000..39e22c43
Binary files /dev/null and b/frontend/src/assets/sources/delaire-chiropractic-clinic-inc.png differ
diff --git a/frontend/src/assets/sources/delaware-county-memorial-hospital-dba-regional-medical-center.png b/frontend/src/assets/sources/delaware-county-memorial-hospital-dba-regional-medical-center.png
new file mode 100644
index 00000000..b8d30067
Binary files /dev/null and b/frontend/src/assets/sources/delaware-county-memorial-hospital-dba-regional-medical-center.png differ
diff --git a/frontend/src/assets/sources/delaware-eye-care-center.png b/frontend/src/assets/sources/delaware-eye-care-center.png
new file mode 100644
index 00000000..10507aad
Binary files /dev/null and b/frontend/src/assets/sources/delaware-eye-care-center.png differ
diff --git a/frontend/src/assets/sources/delaware-foot-and-ankle-group.svg b/frontend/src/assets/sources/delaware-foot-and-ankle-group.svg
new file mode 100644
index 00000000..66da6934
--- /dev/null
+++ b/frontend/src/assets/sources/delaware-foot-and-ankle-group.svg
@@ -0,0 +1,103 @@
+
+
+
diff --git a/frontend/src/assets/sources/delaware-valley-community-health-inc.png b/frontend/src/assets/sources/delaware-valley-community-health-inc.png
new file mode 100644
index 00000000..478af062
Binary files /dev/null and b/frontend/src/assets/sources/delaware-valley-community-health-inc.png differ
diff --git a/frontend/src/assets/sources/delaware-valley-health-trust.png b/frontend/src/assets/sources/delaware-valley-health-trust.png
new file mode 100644
index 00000000..5f32e57c
Binary files /dev/null and b/frontend/src/assets/sources/delaware-valley-health-trust.png differ
diff --git a/frontend/src/assets/sources/delaware-valley-nephrology-assc-asc.png b/frontend/src/assets/sources/delaware-valley-nephrology-assc-asc.png
new file mode 100644
index 00000000..d159aa32
Binary files /dev/null and b/frontend/src/assets/sources/delaware-valley-nephrology-assc-asc.png differ
diff --git a/frontend/src/assets/sources/delaware-valley-nephrology-associates.png b/frontend/src/assets/sources/delaware-valley-nephrology-associates.png
new file mode 100644
index 00000000..a9b6cdb8
Binary files /dev/null and b/frontend/src/assets/sources/delaware-valley-nephrology-associates.png differ
diff --git a/frontend/src/assets/sources/delray-eye-associates-pa.png b/frontend/src/assets/sources/delray-eye-associates-pa.png
new file mode 100644
index 00000000..d954cb28
Binary files /dev/null and b/frontend/src/assets/sources/delray-eye-associates-pa.png differ
diff --git a/frontend/src/assets/sources/delta-health-center.png b/frontend/src/assets/sources/delta-health-center.png
new file mode 100644
index 00000000..1ea5cce5
Binary files /dev/null and b/frontend/src/assets/sources/delta-health-center.png differ
diff --git a/frontend/src/assets/sources/denver-eye-surgeons.png b/frontend/src/assets/sources/denver-eye-surgeons.png
new file mode 100644
index 00000000..5926a223
Binary files /dev/null and b/frontend/src/assets/sources/denver-eye-surgeons.png differ
diff --git a/frontend/src/assets/sources/denver-nephrologists-pc.png b/frontend/src/assets/sources/denver-nephrologists-pc.png
new file mode 100644
index 00000000..ffaf961a
Binary files /dev/null and b/frontend/src/assets/sources/denver-nephrologists-pc.png differ
diff --git a/frontend/src/assets/sources/dermatology-and-skin-cancer-center-of-new-mexico.png b/frontend/src/assets/sources/dermatology-and-skin-cancer-center-of-new-mexico.png
new file mode 100644
index 00000000..0411c045
Binary files /dev/null and b/frontend/src/assets/sources/dermatology-and-skin-cancer-center-of-new-mexico.png differ
diff --git a/frontend/src/assets/sources/dermatology-and-skin-cancer-center-pc.png b/frontend/src/assets/sources/dermatology-and-skin-cancer-center-pc.png
new file mode 100644
index 00000000..c756118f
Binary files /dev/null and b/frontend/src/assets/sources/dermatology-and-skin-cancer-center-pc.png differ
diff --git a/frontend/src/assets/sources/dermatology-and-skin-cancer-center.png b/frontend/src/assets/sources/dermatology-and-skin-cancer-center.png
new file mode 100644
index 00000000..0411c045
Binary files /dev/null and b/frontend/src/assets/sources/dermatology-and-skin-cancer-center.png differ
diff --git a/frontend/src/assets/sources/dermatology-and-surgery-associates.png b/frontend/src/assets/sources/dermatology-and-surgery-associates.png
new file mode 100644
index 00000000..b382df52
Binary files /dev/null and b/frontend/src/assets/sources/dermatology-and-surgery-associates.png differ
diff --git a/frontend/src/assets/sources/dermatology-associates-of-georgia.png b/frontend/src/assets/sources/dermatology-associates-of-georgia.png
new file mode 100644
index 00000000..b7c75ab1
Binary files /dev/null and b/frontend/src/assets/sources/dermatology-associates-of-georgia.png differ
diff --git a/frontend/src/assets/sources/dermatology-associates-of-northwest.png b/frontend/src/assets/sources/dermatology-associates-of-northwest.png
new file mode 100644
index 00000000..f7db6f28
Binary files /dev/null and b/frontend/src/assets/sources/dermatology-associates-of-northwest.png differ
diff --git a/frontend/src/assets/sources/dermatology-associates-of-san-antonio.png b/frontend/src/assets/sources/dermatology-associates-of-san-antonio.png
new file mode 100644
index 00000000..af63aaff
Binary files /dev/null and b/frontend/src/assets/sources/dermatology-associates-of-san-antonio.png differ
diff --git a/frontend/src/assets/sources/dermatology-associates-of-the-palm-beaches.jpg b/frontend/src/assets/sources/dermatology-associates-of-the-palm-beaches.jpg
new file mode 100644
index 00000000..0b42d899
Binary files /dev/null and b/frontend/src/assets/sources/dermatology-associates-of-the-palm-beaches.jpg differ
diff --git a/frontend/src/assets/sources/dermatology-associates-of-uptown.jpg b/frontend/src/assets/sources/dermatology-associates-of-uptown.jpg
new file mode 100644
index 00000000..b175430b
Binary files /dev/null and b/frontend/src/assets/sources/dermatology-associates-of-uptown.jpg differ
diff --git a/frontend/src/assets/sources/dermatology-center-of-lake-orion.png b/frontend/src/assets/sources/dermatology-center-of-lake-orion.png
new file mode 100644
index 00000000..0f68d1a7
Binary files /dev/null and b/frontend/src/assets/sources/dermatology-center-of-lake-orion.png differ
diff --git a/frontend/src/assets/sources/dermatology-consultants-of-frisco.jpg b/frontend/src/assets/sources/dermatology-consultants-of-frisco.jpg
new file mode 100644
index 00000000..b2ecf1d5
Binary files /dev/null and b/frontend/src/assets/sources/dermatology-consultants-of-frisco.jpg differ
diff --git a/frontend/src/assets/sources/dermatology-consultants-of-frisco.svg b/frontend/src/assets/sources/dermatology-consultants-of-frisco.svg
new file mode 100644
index 00000000..ee76612d
--- /dev/null
+++ b/frontend/src/assets/sources/dermatology-consultants-of-frisco.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/dermatology-consultants-pa.png b/frontend/src/assets/sources/dermatology-consultants-pa.png
new file mode 100644
index 00000000..7ff35ee0
Binary files /dev/null and b/frontend/src/assets/sources/dermatology-consultants-pa.png differ
diff --git a/frontend/src/assets/sources/dermatology-institute.jpg b/frontend/src/assets/sources/dermatology-institute.jpg
new file mode 100644
index 00000000..fab43860
Binary files /dev/null and b/frontend/src/assets/sources/dermatology-institute.jpg differ
diff --git a/frontend/src/assets/sources/derrick-smith-md.jpg b/frontend/src/assets/sources/derrick-smith-md.jpg
new file mode 100644
index 00000000..c12dce96
Binary files /dev/null and b/frontend/src/assets/sources/derrick-smith-md.jpg differ
diff --git a/frontend/src/assets/sources/desert-heart-physicians-medical-group.png b/frontend/src/assets/sources/desert-heart-physicians-medical-group.png
new file mode 100644
index 00000000..1ecd5113
Binary files /dev/null and b/frontend/src/assets/sources/desert-heart-physicians-medical-group.png differ
diff --git a/frontend/src/assets/sources/desert-institute-for-spine-care.png b/frontend/src/assets/sources/desert-institute-for-spine-care.png
new file mode 100644
index 00000000..e2af8a33
Binary files /dev/null and b/frontend/src/assets/sources/desert-institute-for-spine-care.png differ
diff --git a/frontend/src/assets/sources/desert-oasis-healthcare.jpg b/frontend/src/assets/sources/desert-oasis-healthcare.jpg
new file mode 100644
index 00000000..8e849732
Binary files /dev/null and b/frontend/src/assets/sources/desert-oasis-healthcare.jpg differ
diff --git a/frontend/src/assets/sources/desert-oasis-healthcare.png b/frontend/src/assets/sources/desert-oasis-healthcare.png
new file mode 100644
index 00000000..ac3b534f
Binary files /dev/null and b/frontend/src/assets/sources/desert-oasis-healthcare.png differ
diff --git a/frontend/src/assets/sources/desert-peaks-surgery-center.png b/frontend/src/assets/sources/desert-peaks-surgery-center.png
new file mode 100644
index 00000000..94dba682
Binary files /dev/null and b/frontend/src/assets/sources/desert-peaks-surgery-center.png differ
diff --git a/frontend/src/assets/sources/desert-podiatric-medical-specialists.png b/frontend/src/assets/sources/desert-podiatric-medical-specialists.png
new file mode 100644
index 00000000..a08d72e5
Binary files /dev/null and b/frontend/src/assets/sources/desert-podiatric-medical-specialists.png differ
diff --git a/frontend/src/assets/sources/desert-senita-chc.png b/frontend/src/assets/sources/desert-senita-chc.png
new file mode 100644
index 00000000..c9d27e9a
Binary files /dev/null and b/frontend/src/assets/sources/desert-senita-chc.png differ
diff --git a/frontend/src/assets/sources/desert-valley-medical-group.png b/frontend/src/assets/sources/desert-valley-medical-group.png
new file mode 100644
index 00000000..2ef97532
Binary files /dev/null and b/frontend/src/assets/sources/desert-valley-medical-group.png differ
diff --git a/frontend/src/assets/sources/detroit-medical-center.png b/frontend/src/assets/sources/detroit-medical-center.png
new file mode 100644
index 00000000..2aacd652
Binary files /dev/null and b/frontend/src/assets/sources/detroit-medical-center.png differ
diff --git a/frontend/src/assets/sources/developmental-pediatric-services.svg b/frontend/src/assets/sources/developmental-pediatric-services.svg
new file mode 100644
index 00000000..535f0ce4
--- /dev/null
+++ b/frontend/src/assets/sources/developmental-pediatric-services.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/dewitt-foot-and-ankle.png b/frontend/src/assets/sources/dewitt-foot-and-ankle.png
new file mode 100644
index 00000000..01243304
Binary files /dev/null and b/frontend/src/assets/sources/dewitt-foot-and-ankle.png differ
diff --git a/frontend/src/assets/sources/dewitt-hospital-and-nursing-home.png b/frontend/src/assets/sources/dewitt-hospital-and-nursing-home.png
new file mode 100644
index 00000000..93ea7db9
Binary files /dev/null and b/frontend/src/assets/sources/dewitt-hospital-and-nursing-home.png differ
diff --git a/frontend/src/assets/sources/dfw-physicians-medical-associates.jpg b/frontend/src/assets/sources/dfw-physicians-medical-associates.jpg
new file mode 100644
index 00000000..f4a08824
Binary files /dev/null and b/frontend/src/assets/sources/dfw-physicians-medical-associates.jpg differ
diff --git a/frontend/src/assets/sources/dfw-physicians-medical-associates.png b/frontend/src/assets/sources/dfw-physicians-medical-associates.png
new file mode 100644
index 00000000..8a960b27
Binary files /dev/null and b/frontend/src/assets/sources/dfw-physicians-medical-associates.png differ
diff --git a/frontend/src/assets/sources/dfwpma-psychiatry.png b/frontend/src/assets/sources/dfwpma-psychiatry.png
new file mode 100644
index 00000000..2f68c637
Binary files /dev/null and b/frontend/src/assets/sources/dfwpma-psychiatry.png differ
diff --git a/frontend/src/assets/sources/dg-eye-institute.jpg b/frontend/src/assets/sources/dg-eye-institute.jpg
new file mode 100644
index 00000000..77dffb16
Binary files /dev/null and b/frontend/src/assets/sources/dg-eye-institute.jpg differ
diff --git a/frontend/src/assets/sources/dg-eye-institute.png b/frontend/src/assets/sources/dg-eye-institute.png
new file mode 100644
index 00000000..9f86cd8d
Binary files /dev/null and b/frontend/src/assets/sources/dg-eye-institute.png differ
diff --git a/frontend/src/assets/sources/dg-multispecialty-clinic.png b/frontend/src/assets/sources/dg-multispecialty-clinic.png
new file mode 100644
index 00000000..9f86cd8d
Binary files /dev/null and b/frontend/src/assets/sources/dg-multispecialty-clinic.png differ
diff --git a/frontend/src/assets/sources/diabetes-and-thyroid-center-of-ft-worth.png b/frontend/src/assets/sources/diabetes-and-thyroid-center-of-ft-worth.png
new file mode 100644
index 00000000..50c7b378
Binary files /dev/null and b/frontend/src/assets/sources/diabetes-and-thyroid-center-of-ft-worth.png differ
diff --git a/frontend/src/assets/sources/diabetes-thyroid-endocrine-adv-care.png b/frontend/src/assets/sources/diabetes-thyroid-endocrine-adv-care.png
new file mode 100644
index 00000000..b7882fee
Binary files /dev/null and b/frontend/src/assets/sources/diabetes-thyroid-endocrine-adv-care.png differ
diff --git a/frontend/src/assets/sources/dialysis-access-center-of-cincinnati-asc.png b/frontend/src/assets/sources/dialysis-access-center-of-cincinnati-asc.png
new file mode 100644
index 00000000..c452fc85
Binary files /dev/null and b/frontend/src/assets/sources/dialysis-access-center-of-cincinnati-asc.png differ
diff --git a/frontend/src/assets/sources/dialysis-access-center-of-cincinnati-pro.png b/frontend/src/assets/sources/dialysis-access-center-of-cincinnati-pro.png
new file mode 100644
index 00000000..b72a0c6f
Binary files /dev/null and b/frontend/src/assets/sources/dialysis-access-center-of-cincinnati-pro.png differ
diff --git a/frontend/src/assets/sources/digestive-disease-consultants.png b/frontend/src/assets/sources/digestive-disease-consultants.png
new file mode 100644
index 00000000..55848f40
Binary files /dev/null and b/frontend/src/assets/sources/digestive-disease-consultants.png differ
diff --git a/frontend/src/assets/sources/digestive-health-associates.png b/frontend/src/assets/sources/digestive-health-associates.png
new file mode 100644
index 00000000..2fc40f11
Binary files /dev/null and b/frontend/src/assets/sources/digestive-health-associates.png differ
diff --git a/frontend/src/assets/sources/dignity-health-careb.jpg b/frontend/src/assets/sources/dignity-health-careb.jpg
new file mode 100644
index 00000000..5880794e
Binary files /dev/null and b/frontend/src/assets/sources/dignity-health-careb.jpg differ
diff --git a/frontend/src/assets/sources/dignity-health-careb.png b/frontend/src/assets/sources/dignity-health-careb.png
new file mode 100644
index 00000000..4033d932
Binary files /dev/null and b/frontend/src/assets/sources/dignity-health-careb.png differ
diff --git a/frontend/src/assets/sources/dignity-health-med-grp-ventura-cnty.jpg b/frontend/src/assets/sources/dignity-health-med-grp-ventura-cnty.jpg
new file mode 100644
index 00000000..8a6c2438
Binary files /dev/null and b/frontend/src/assets/sources/dignity-health-med-grp-ventura-cnty.jpg differ
diff --git a/frontend/src/assets/sources/dignity-health-med-grp-ventura-cnty.png b/frontend/src/assets/sources/dignity-health-med-grp-ventura-cnty.png
new file mode 100644
index 00000000..a05246d7
Binary files /dev/null and b/frontend/src/assets/sources/dignity-health-med-grp-ventura-cnty.png differ
diff --git a/frontend/src/assets/sources/dignity-health-medical-group-northridge-family-medicine.jpg b/frontend/src/assets/sources/dignity-health-medical-group-northridge-family-medicine.jpg
new file mode 100644
index 00000000..7c94b1b7
Binary files /dev/null and b/frontend/src/assets/sources/dignity-health-medical-group-northridge-family-medicine.jpg differ
diff --git a/frontend/src/assets/sources/dignity-health-yavapai-regional-medical-center.png b/frontend/src/assets/sources/dignity-health-yavapai-regional-medical-center.png
new file mode 100644
index 00000000..0c7da6b6
Binary files /dev/null and b/frontend/src/assets/sources/dignity-health-yavapai-regional-medical-center.png differ
diff --git a/frontend/src/assets/sources/district-medical-group-inc.jpg b/frontend/src/assets/sources/district-medical-group-inc.jpg
new file mode 100644
index 00000000..de0c88e5
Binary files /dev/null and b/frontend/src/assets/sources/district-medical-group-inc.jpg differ
diff --git a/frontend/src/assets/sources/district-medical-group-inc.png b/frontend/src/assets/sources/district-medical-group-inc.png
new file mode 100644
index 00000000..a241c85e
Binary files /dev/null and b/frontend/src/assets/sources/district-medical-group-inc.png differ
diff --git a/frontend/src/assets/sources/dnu-e-ed-conaway-jr-md.jpg b/frontend/src/assets/sources/dnu-e-ed-conaway-jr-md.jpg
new file mode 100644
index 00000000..84556155
Binary files /dev/null and b/frontend/src/assets/sources/dnu-e-ed-conaway-jr-md.jpg differ
diff --git a/frontend/src/assets/sources/doctor-and-associates-pc.png b/frontend/src/assets/sources/doctor-and-associates-pc.png
new file mode 100644
index 00000000..9a837652
Binary files /dev/null and b/frontend/src/assets/sources/doctor-and-associates-pc.png differ
diff --git a/frontend/src/assets/sources/doctors-for-senior-health-pc.png b/frontend/src/assets/sources/doctors-for-senior-health-pc.png
new file mode 100644
index 00000000..c7eb1af8
Binary files /dev/null and b/frontend/src/assets/sources/doctors-for-senior-health-pc.png differ
diff --git a/frontend/src/assets/sources/doctors-hospital-at-renaissance.png b/frontend/src/assets/sources/doctors-hospital-at-renaissance.png
new file mode 100644
index 00000000..ea52250b
Binary files /dev/null and b/frontend/src/assets/sources/doctors-hospital-at-renaissance.png differ
diff --git a/frontend/src/assets/sources/doctors-urgent-care-nextcare.jpg b/frontend/src/assets/sources/doctors-urgent-care-nextcare.jpg
new file mode 100644
index 00000000..8a4bd830
Binary files /dev/null and b/frontend/src/assets/sources/doctors-urgent-care-nextcare.jpg differ
diff --git a/frontend/src/assets/sources/doctors-urgent-care-nextcare.png b/frontend/src/assets/sources/doctors-urgent-care-nextcare.png
new file mode 100644
index 00000000..f799f7a8
Binary files /dev/null and b/frontend/src/assets/sources/doctors-urgent-care-nextcare.png differ
diff --git a/frontend/src/assets/sources/dohc-case-management.png b/frontend/src/assets/sources/dohc-case-management.png
new file mode 100644
index 00000000..da5020ee
Binary files /dev/null and b/frontend/src/assets/sources/dohc-case-management.png differ
diff --git a/frontend/src/assets/sources/dohc-case-management.svg b/frontend/src/assets/sources/dohc-case-management.svg
new file mode 100644
index 00000000..5190554d
--- /dev/null
+++ b/frontend/src/assets/sources/dohc-case-management.svg
@@ -0,0 +1,110 @@
+
+
+
diff --git a/frontend/src/assets/sources/dohc-home-health.svg b/frontend/src/assets/sources/dohc-home-health.svg
new file mode 100644
index 00000000..2e7480ee
--- /dev/null
+++ b/frontend/src/assets/sources/dohc-home-health.svg
@@ -0,0 +1,224 @@
+
+
+
diff --git a/frontend/src/assets/sources/dohc-palliative-care.jpg b/frontend/src/assets/sources/dohc-palliative-care.jpg
new file mode 100644
index 00000000..ff93f2dc
Binary files /dev/null and b/frontend/src/assets/sources/dohc-palliative-care.jpg differ
diff --git a/frontend/src/assets/sources/dohc-palliative-care.svg b/frontend/src/assets/sources/dohc-palliative-care.svg
new file mode 100644
index 00000000..2e7480ee
--- /dev/null
+++ b/frontend/src/assets/sources/dohc-palliative-care.svg
@@ -0,0 +1,224 @@
+
+
+
diff --git a/frontend/src/assets/sources/don-f-mills-md.png b/frontend/src/assets/sources/don-f-mills-md.png
new file mode 100644
index 00000000..e4b83208
Binary files /dev/null and b/frontend/src/assets/sources/don-f-mills-md.png differ
diff --git a/frontend/src/assets/sources/don-j-schmitt-md.png b/frontend/src/assets/sources/don-j-schmitt-md.png
new file mode 100644
index 00000000..b27fb8fe
Binary files /dev/null and b/frontend/src/assets/sources/don-j-schmitt-md.png differ
diff --git a/frontend/src/assets/sources/donald-cassaday-md.png b/frontend/src/assets/sources/donald-cassaday-md.png
new file mode 100644
index 00000000..508731b5
Binary files /dev/null and b/frontend/src/assets/sources/donald-cassaday-md.png differ
diff --git a/frontend/src/assets/sources/donald-m-birch-md.png b/frontend/src/assets/sources/donald-m-birch-md.png
new file mode 100644
index 00000000..e5fe551a
Binary files /dev/null and b/frontend/src/assets/sources/donald-m-birch-md.png differ
diff --git a/frontend/src/assets/sources/douglas-a-taylor-md.png b/frontend/src/assets/sources/douglas-a-taylor-md.png
new file mode 100644
index 00000000..97a1a541
Binary files /dev/null and b/frontend/src/assets/sources/douglas-a-taylor-md.png differ
diff --git a/frontend/src/assets/sources/douglas-county-health-department.png b/frontend/src/assets/sources/douglas-county-health-department.png
new file mode 100644
index 00000000..78846bba
Binary files /dev/null and b/frontend/src/assets/sources/douglas-county-health-department.png differ
diff --git a/frontend/src/assets/sources/douglas-e-lewis-do-pa.png b/frontend/src/assets/sources/douglas-e-lewis-do-pa.png
new file mode 100644
index 00000000..18d42ea6
Binary files /dev/null and b/frontend/src/assets/sources/douglas-e-lewis-do-pa.png differ
diff --git a/frontend/src/assets/sources/douglas-grant-lincoln-and-okanogan-counties-hospital-district-6-d-b-a-coulee-medical-center.jpg b/frontend/src/assets/sources/douglas-grant-lincoln-and-okanogan-counties-hospital-district-6-d-b-a-coulee-medical-center.jpg
new file mode 100644
index 00000000..a0e73f9d
Binary files /dev/null and b/frontend/src/assets/sources/douglas-grant-lincoln-and-okanogan-counties-hospital-district-6-d-b-a-coulee-medical-center.jpg differ
diff --git a/frontend/src/assets/sources/dove-creek-community-health-clinic.jpg b/frontend/src/assets/sources/dove-creek-community-health-clinic.jpg
new file mode 100644
index 00000000..e56ee0a2
Binary files /dev/null and b/frontend/src/assets/sources/dove-creek-community-health-clinic.jpg differ
diff --git a/frontend/src/assets/sources/dover-cardiology-center.png b/frontend/src/assets/sources/dover-cardiology-center.png
new file mode 100644
index 00000000..be6537e8
Binary files /dev/null and b/frontend/src/assets/sources/dover-cardiology-center.png differ
diff --git a/frontend/src/assets/sources/dover-foot-specialty-center-inc.png b/frontend/src/assets/sources/dover-foot-specialty-center-inc.png
new file mode 100644
index 00000000..017ed9f2
Binary files /dev/null and b/frontend/src/assets/sources/dover-foot-specialty-center-inc.png differ
diff --git a/frontend/src/assets/sources/down-east-community-hospital.png b/frontend/src/assets/sources/down-east-community-hospital.png
new file mode 100644
index 00000000..450b109b
Binary files /dev/null and b/frontend/src/assets/sources/down-east-community-hospital.png differ
diff --git a/frontend/src/assets/sources/downers-grove-eye-center-pc.png b/frontend/src/assets/sources/downers-grove-eye-center-pc.png
new file mode 100644
index 00000000..324c7923
Binary files /dev/null and b/frontend/src/assets/sources/downers-grove-eye-center-pc.png differ
diff --git a/frontend/src/assets/sources/dr-amy-morris.png b/frontend/src/assets/sources/dr-amy-morris.png
new file mode 100644
index 00000000..47dd5d1c
Binary files /dev/null and b/frontend/src/assets/sources/dr-amy-morris.png differ
diff --git a/frontend/src/assets/sources/dr-belen-clark-md.png b/frontend/src/assets/sources/dr-belen-clark-md.png
new file mode 100644
index 00000000..d1a7d835
Binary files /dev/null and b/frontend/src/assets/sources/dr-belen-clark-md.png differ
diff --git a/frontend/src/assets/sources/dr-brandon-holloway.png b/frontend/src/assets/sources/dr-brandon-holloway.png
new file mode 100644
index 00000000..a068d7fd
Binary files /dev/null and b/frontend/src/assets/sources/dr-brandon-holloway.png differ
diff --git a/frontend/src/assets/sources/dr-brian-harkins-md.jpg b/frontend/src/assets/sources/dr-brian-harkins-md.jpg
new file mode 100644
index 00000000..7dcf314d
Binary files /dev/null and b/frontend/src/assets/sources/dr-brian-harkins-md.jpg differ
diff --git a/frontend/src/assets/sources/dr-brian-harkins-md.png b/frontend/src/assets/sources/dr-brian-harkins-md.png
new file mode 100644
index 00000000..59cfb0e1
Binary files /dev/null and b/frontend/src/assets/sources/dr-brian-harkins-md.png differ
diff --git a/frontend/src/assets/sources/dr-donald-huang.png b/frontend/src/assets/sources/dr-donald-huang.png
new file mode 100644
index 00000000..f925fd4f
Binary files /dev/null and b/frontend/src/assets/sources/dr-donald-huang.png differ
diff --git a/frontend/src/assets/sources/dr-douglas-w-ankrom-inc.png b/frontend/src/assets/sources/dr-douglas-w-ankrom-inc.png
new file mode 100644
index 00000000..71a1420b
Binary files /dev/null and b/frontend/src/assets/sources/dr-douglas-w-ankrom-inc.png differ
diff --git a/frontend/src/assets/sources/dr-elvira-rives.png b/frontend/src/assets/sources/dr-elvira-rives.png
new file mode 100644
index 00000000..a6241fa3
Binary files /dev/null and b/frontend/src/assets/sources/dr-elvira-rives.png differ
diff --git a/frontend/src/assets/sources/dr-francisco-martinez-md-pa.png b/frontend/src/assets/sources/dr-francisco-martinez-md-pa.png
new file mode 100644
index 00000000..c05ed0ce
Binary files /dev/null and b/frontend/src/assets/sources/dr-francisco-martinez-md-pa.png differ
diff --git a/frontend/src/assets/sources/dr-glen-e-hurst.jpg b/frontend/src/assets/sources/dr-glen-e-hurst.jpg
new file mode 100644
index 00000000..cd7424c3
Binary files /dev/null and b/frontend/src/assets/sources/dr-glen-e-hurst.jpg differ
diff --git a/frontend/src/assets/sources/dr-hisey-dr-horton.png b/frontend/src/assets/sources/dr-hisey-dr-horton.png
new file mode 100644
index 00000000..7254f5df
Binary files /dev/null and b/frontend/src/assets/sources/dr-hisey-dr-horton.png differ
diff --git a/frontend/src/assets/sources/dr-israel-alvarez.png b/frontend/src/assets/sources/dr-israel-alvarez.png
new file mode 100644
index 00000000..f5c75cc1
Binary files /dev/null and b/frontend/src/assets/sources/dr-israel-alvarez.png differ
diff --git a/frontend/src/assets/sources/dr-j-express-care.jpg b/frontend/src/assets/sources/dr-j-express-care.jpg
new file mode 100644
index 00000000..19fb7f6f
Binary files /dev/null and b/frontend/src/assets/sources/dr-j-express-care.jpg differ
diff --git a/frontend/src/assets/sources/dr-j-express-care.png b/frontend/src/assets/sources/dr-j-express-care.png
new file mode 100644
index 00000000..c040bb01
Binary files /dev/null and b/frontend/src/assets/sources/dr-j-express-care.png differ
diff --git a/frontend/src/assets/sources/dr-james-russell-md.jpg b/frontend/src/assets/sources/dr-james-russell-md.jpg
new file mode 100644
index 00000000..df0e9d99
Binary files /dev/null and b/frontend/src/assets/sources/dr-james-russell-md.jpg differ
diff --git a/frontend/src/assets/sources/dr-jeffrey-j-betman-podiatric-physician-and-surgeon-pc.svg b/frontend/src/assets/sources/dr-jeffrey-j-betman-podiatric-physician-and-surgeon-pc.svg
new file mode 100644
index 00000000..5eedbf45
--- /dev/null
+++ b/frontend/src/assets/sources/dr-jeffrey-j-betman-podiatric-physician-and-surgeon-pc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/dr-jesse-haggerty.jpg b/frontend/src/assets/sources/dr-jesse-haggerty.jpg
new file mode 100644
index 00000000..4e1e79a5
Binary files /dev/null and b/frontend/src/assets/sources/dr-jesse-haggerty.jpg differ
diff --git a/frontend/src/assets/sources/dr-jose-pena-md.jpg b/frontend/src/assets/sources/dr-jose-pena-md.jpg
new file mode 100644
index 00000000..6c503ad6
Binary files /dev/null and b/frontend/src/assets/sources/dr-jose-pena-md.jpg differ
diff --git a/frontend/src/assets/sources/dr-juan-b-martinez-jr-md.png b/frontend/src/assets/sources/dr-juan-b-martinez-jr-md.png
new file mode 100644
index 00000000..df87632f
Binary files /dev/null and b/frontend/src/assets/sources/dr-juan-b-martinez-jr-md.png differ
diff --git a/frontend/src/assets/sources/dr-kenneth-treadwell.png b/frontend/src/assets/sources/dr-kenneth-treadwell.png
new file mode 100644
index 00000000..ab12fd51
Binary files /dev/null and b/frontend/src/assets/sources/dr-kenneth-treadwell.png differ
diff --git a/frontend/src/assets/sources/dr-kermani.png b/frontend/src/assets/sources/dr-kermani.png
new file mode 100644
index 00000000..8a617d63
Binary files /dev/null and b/frontend/src/assets/sources/dr-kermani.png differ
diff --git a/frontend/src/assets/sources/dr-kou-wei-chiu.png b/frontend/src/assets/sources/dr-kou-wei-chiu.png
new file mode 100644
index 00000000..bfb73005
Binary files /dev/null and b/frontend/src/assets/sources/dr-kou-wei-chiu.png differ
diff --git a/frontend/src/assets/sources/dr-manuel-lovo.png b/frontend/src/assets/sources/dr-manuel-lovo.png
new file mode 100644
index 00000000..df87632f
Binary files /dev/null and b/frontend/src/assets/sources/dr-manuel-lovo.png differ
diff --git a/frontend/src/assets/sources/dr-maria-e-ramon-coton.png b/frontend/src/assets/sources/dr-maria-e-ramon-coton.png
new file mode 100644
index 00000000..df87632f
Binary files /dev/null and b/frontend/src/assets/sources/dr-maria-e-ramon-coton.png differ
diff --git a/frontend/src/assets/sources/dr-munif-salek.png b/frontend/src/assets/sources/dr-munif-salek.png
new file mode 100644
index 00000000..a71372ed
Binary files /dev/null and b/frontend/src/assets/sources/dr-munif-salek.png differ
diff --git a/frontend/src/assets/sources/dr-myers-dr-bell.png b/frontend/src/assets/sources/dr-myers-dr-bell.png
new file mode 100644
index 00000000..86dd22a2
Binary files /dev/null and b/frontend/src/assets/sources/dr-myers-dr-bell.png differ
diff --git a/frontend/src/assets/sources/dr-nelson-vega.png b/frontend/src/assets/sources/dr-nelson-vega.png
new file mode 100644
index 00000000..df87632f
Binary files /dev/null and b/frontend/src/assets/sources/dr-nelson-vega.png differ
diff --git a/frontend/src/assets/sources/dr-pepper-snapple-group-irving.png b/frontend/src/assets/sources/dr-pepper-snapple-group-irving.png
new file mode 100644
index 00000000..e74211ec
Binary files /dev/null and b/frontend/src/assets/sources/dr-pepper-snapple-group-irving.png differ
diff --git a/frontend/src/assets/sources/dr-r-daniel-jacob.jpg b/frontend/src/assets/sources/dr-r-daniel-jacob.jpg
new file mode 100644
index 00000000..879500b0
Binary files /dev/null and b/frontend/src/assets/sources/dr-r-daniel-jacob.jpg differ
diff --git a/frontend/src/assets/sources/dr-rodrigo-argenal-md.png b/frontend/src/assets/sources/dr-rodrigo-argenal-md.png
new file mode 100644
index 00000000..9a60b4a3
Binary files /dev/null and b/frontend/src/assets/sources/dr-rodrigo-argenal-md.png differ
diff --git a/frontend/src/assets/sources/dr-sherwin-parikh.png b/frontend/src/assets/sources/dr-sherwin-parikh.png
new file mode 100644
index 00000000..cde5de3b
Binary files /dev/null and b/frontend/src/assets/sources/dr-sherwin-parikh.png differ
diff --git a/frontend/src/assets/sources/dr-sonny-park.png b/frontend/src/assets/sources/dr-sonny-park.png
new file mode 100644
index 00000000..c349b657
Binary files /dev/null and b/frontend/src/assets/sources/dr-sonny-park.png differ
diff --git a/frontend/src/assets/sources/dr-stephanie-herrera-md.png b/frontend/src/assets/sources/dr-stephanie-herrera-md.png
new file mode 100644
index 00000000..5335a0a0
Binary files /dev/null and b/frontend/src/assets/sources/dr-stephanie-herrera-md.png differ
diff --git a/frontend/src/assets/sources/dr-suganthini-umakanthan-md.png b/frontend/src/assets/sources/dr-suganthini-umakanthan-md.png
new file mode 100644
index 00000000..2a2e9ca5
Binary files /dev/null and b/frontend/src/assets/sources/dr-suganthini-umakanthan-md.png differ
diff --git a/frontend/src/assets/sources/dr-tilak-mallik.jpg b/frontend/src/assets/sources/dr-tilak-mallik.jpg
new file mode 100644
index 00000000..5cdacf58
Binary files /dev/null and b/frontend/src/assets/sources/dr-tilak-mallik.jpg differ
diff --git a/frontend/src/assets/sources/dr-tilak-mallik.png b/frontend/src/assets/sources/dr-tilak-mallik.png
new file mode 100644
index 00000000..c876e784
Binary files /dev/null and b/frontend/src/assets/sources/dr-tilak-mallik.png differ
diff --git a/frontend/src/assets/sources/dr-william-j-hicks.png b/frontend/src/assets/sources/dr-william-j-hicks.png
new file mode 100644
index 00000000..19f6fa77
Binary files /dev/null and b/frontend/src/assets/sources/dr-william-j-hicks.png differ
diff --git a/frontend/src/assets/sources/drs-uyemura-and-jeng-llc.png b/frontend/src/assets/sources/drs-uyemura-and-jeng-llc.png
new file mode 100644
index 00000000..a0508317
Binary files /dev/null and b/frontend/src/assets/sources/drs-uyemura-and-jeng-llc.png differ
diff --git a/frontend/src/assets/sources/drumright-regional-hospital.jpg b/frontend/src/assets/sources/drumright-regional-hospital.jpg
new file mode 100644
index 00000000..f0fe9baf
Binary files /dev/null and b/frontend/src/assets/sources/drumright-regional-hospital.jpg differ
diff --git a/frontend/src/assets/sources/dsa-dermatology.png b/frontend/src/assets/sources/dsa-dermatology.png
new file mode 100644
index 00000000..c11afd23
Binary files /dev/null and b/frontend/src/assets/sources/dsa-dermatology.png differ
diff --git a/frontend/src/assets/sources/dublin-womens-center.jpg b/frontend/src/assets/sources/dublin-womens-center.jpg
new file mode 100644
index 00000000..bb19639f
Binary files /dev/null and b/frontend/src/assets/sources/dublin-womens-center.jpg differ
diff --git a/frontend/src/assets/sources/dubuque-orthopaedic-surgeons-pc.png b/frontend/src/assets/sources/dubuque-orthopaedic-surgeons-pc.png
new file mode 100644
index 00000000..719c8419
Binary files /dev/null and b/frontend/src/assets/sources/dubuque-orthopaedic-surgeons-pc.png differ
diff --git a/frontend/src/assets/sources/duc-nguyen-md.png b/frontend/src/assets/sources/duc-nguyen-md.png
new file mode 100644
index 00000000..ced3697a
Binary files /dev/null and b/frontend/src/assets/sources/duc-nguyen-md.png differ
diff --git a/frontend/src/assets/sources/dunkirk-family-practice.jpg b/frontend/src/assets/sources/dunkirk-family-practice.jpg
new file mode 100644
index 00000000..b8dfb08d
Binary files /dev/null and b/frontend/src/assets/sources/dunkirk-family-practice.jpg differ
diff --git a/frontend/src/assets/sources/dunkirk-family-practice.png b/frontend/src/assets/sources/dunkirk-family-practice.png
new file mode 100644
index 00000000..48414061
Binary files /dev/null and b/frontend/src/assets/sources/dunkirk-family-practice.png differ
diff --git a/frontend/src/assets/sources/dupage-eye-associates.png b/frontend/src/assets/sources/dupage-eye-associates.png
new file mode 100644
index 00000000..57f80e12
Binary files /dev/null and b/frontend/src/assets/sources/dupage-eye-associates.png differ
diff --git a/frontend/src/assets/sources/dupage-eye-center.png b/frontend/src/assets/sources/dupage-eye-center.png
new file mode 100644
index 00000000..b2af486f
Binary files /dev/null and b/frontend/src/assets/sources/dupage-eye-center.png differ
diff --git a/frontend/src/assets/sources/dupont-anesthesia-psc.png b/frontend/src/assets/sources/dupont-anesthesia-psc.png
new file mode 100644
index 00000000..d5f472db
Binary files /dev/null and b/frontend/src/assets/sources/dupont-anesthesia-psc.png differ
diff --git a/frontend/src/assets/sources/durfee-family-care-medical-group.jpg b/frontend/src/assets/sources/durfee-family-care-medical-group.jpg
new file mode 100644
index 00000000..66ea8425
Binary files /dev/null and b/frontend/src/assets/sources/durfee-family-care-medical-group.jpg differ
diff --git a/frontend/src/assets/sources/dutchess-county-department-of-behavioral-and-community-health.png b/frontend/src/assets/sources/dutchess-county-department-of-behavioral-and-community-health.png
new file mode 100644
index 00000000..6cae0c1f
Binary files /dev/null and b/frontend/src/assets/sources/dutchess-county-department-of-behavioral-and-community-health.png differ
diff --git a/frontend/src/assets/sources/eagle-view-community-health-system.png b/frontend/src/assets/sources/eagle-view-community-health-system.png
new file mode 100644
index 00000000..979779ce
Binary files /dev/null and b/frontend/src/assets/sources/eagle-view-community-health-system.png differ
diff --git a/frontend/src/assets/sources/eanw-asc.svg b/frontend/src/assets/sources/eanw-asc.svg
new file mode 100644
index 00000000..8f510292
--- /dev/null
+++ b/frontend/src/assets/sources/eanw-asc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/ear-nose-throat-and-allergy-associates.jpg b/frontend/src/assets/sources/ear-nose-throat-and-allergy-associates.jpg
new file mode 100644
index 00000000..555f1664
Binary files /dev/null and b/frontend/src/assets/sources/ear-nose-throat-and-allergy-associates.jpg differ
diff --git a/frontend/src/assets/sources/ear-nose-throat-and-allergy-center.png b/frontend/src/assets/sources/ear-nose-throat-and-allergy-center.png
new file mode 100644
index 00000000..46db9079
Binary files /dev/null and b/frontend/src/assets/sources/ear-nose-throat-and-allergy-center.png differ
diff --git a/frontend/src/assets/sources/east-alabama-eye-clinic-of-anniston-pc.png b/frontend/src/assets/sources/east-alabama-eye-clinic-of-anniston-pc.png
new file mode 100644
index 00000000..be226e11
Binary files /dev/null and b/frontend/src/assets/sources/east-alabama-eye-clinic-of-anniston-pc.png differ
diff --git a/frontend/src/assets/sources/east-alabama-womens-clinic.png b/frontend/src/assets/sources/east-alabama-womens-clinic.png
new file mode 100644
index 00000000..86dc4c50
Binary files /dev/null and b/frontend/src/assets/sources/east-alabama-womens-clinic.png differ
diff --git a/frontend/src/assets/sources/east-bank-gastroenterology.png b/frontend/src/assets/sources/east-bank-gastroenterology.png
new file mode 100644
index 00000000..aa09aafa
Binary files /dev/null and b/frontend/src/assets/sources/east-bank-gastroenterology.png differ
diff --git a/frontend/src/assets/sources/east-bay-cap.png b/frontend/src/assets/sources/east-bay-cap.png
new file mode 100644
index 00000000..4d00b8c3
Binary files /dev/null and b/frontend/src/assets/sources/east-bay-cap.png differ
diff --git a/frontend/src/assets/sources/east-bay-endosurgery-center.png b/frontend/src/assets/sources/east-bay-endosurgery-center.png
new file mode 100644
index 00000000..d6593add
Binary files /dev/null and b/frontend/src/assets/sources/east-bay-endosurgery-center.png differ
diff --git a/frontend/src/assets/sources/east-jordan-family-health-center.jpg b/frontend/src/assets/sources/east-jordan-family-health-center.jpg
new file mode 100644
index 00000000..d8e119cd
Binary files /dev/null and b/frontend/src/assets/sources/east-jordan-family-health-center.jpg differ
diff --git a/frontend/src/assets/sources/east-jordan-family-health-center.png b/frontend/src/assets/sources/east-jordan-family-health-center.png
new file mode 100644
index 00000000..55c95c1b
Binary files /dev/null and b/frontend/src/assets/sources/east-jordan-family-health-center.png differ
diff --git a/frontend/src/assets/sources/east-paris-surgical-center-llc.jpg b/frontend/src/assets/sources/east-paris-surgical-center-llc.jpg
new file mode 100644
index 00000000..25604894
Binary files /dev/null and b/frontend/src/assets/sources/east-paris-surgical-center-llc.jpg differ
diff --git a/frontend/src/assets/sources/east-stroudsburg-university.png b/frontend/src/assets/sources/east-stroudsburg-university.png
new file mode 100644
index 00000000..c65e1d9e
Binary files /dev/null and b/frontend/src/assets/sources/east-stroudsburg-university.png differ
diff --git a/frontend/src/assets/sources/east-tennessee-eye-surgeons-pc.png b/frontend/src/assets/sources/east-tennessee-eye-surgeons-pc.png
new file mode 100644
index 00000000..2fda4466
Binary files /dev/null and b/frontend/src/assets/sources/east-tennessee-eye-surgeons-pc.png differ
diff --git a/frontend/src/assets/sources/east-valley-community-health-center.png b/frontend/src/assets/sources/east-valley-community-health-center.png
new file mode 100644
index 00000000..4954466c
Binary files /dev/null and b/frontend/src/assets/sources/east-valley-community-health-center.png differ
diff --git a/frontend/src/assets/sources/east-valley-endoscopy.png b/frontend/src/assets/sources/east-valley-endoscopy.png
new file mode 100644
index 00000000..c11062a3
Binary files /dev/null and b/frontend/src/assets/sources/east-valley-endoscopy.png differ
diff --git a/frontend/src/assets/sources/eastern-connecticut-endoscopy-center.png b/frontend/src/assets/sources/eastern-connecticut-endoscopy-center.png
new file mode 100644
index 00000000..bcdcca40
Binary files /dev/null and b/frontend/src/assets/sources/eastern-connecticut-endoscopy-center.png differ
diff --git a/frontend/src/assets/sources/eastern-massachusetts-surgery-center.jpg b/frontend/src/assets/sources/eastern-massachusetts-surgery-center.jpg
new file mode 100644
index 00000000..bf08e883
Binary files /dev/null and b/frontend/src/assets/sources/eastern-massachusetts-surgery-center.jpg differ
diff --git a/frontend/src/assets/sources/eastern-medical-specialists-pc.png b/frontend/src/assets/sources/eastern-medical-specialists-pc.png
new file mode 100644
index 00000000..fd321efc
Binary files /dev/null and b/frontend/src/assets/sources/eastern-medical-specialists-pc.png differ
diff --git a/frontend/src/assets/sources/eastland-memorial-hospital.png b/frontend/src/assets/sources/eastland-memorial-hospital.png
new file mode 100644
index 00000000..e4d43628
Binary files /dev/null and b/frontend/src/assets/sources/eastland-memorial-hospital.png differ
diff --git a/frontend/src/assets/sources/easton-cardiovascular-associates-pc.png b/frontend/src/assets/sources/easton-cardiovascular-associates-pc.png
new file mode 100644
index 00000000..151bd4e3
Binary files /dev/null and b/frontend/src/assets/sources/easton-cardiovascular-associates-pc.png differ
diff --git a/frontend/src/assets/sources/eastside-maternal-fetal-medicine.png b/frontend/src/assets/sources/eastside-maternal-fetal-medicine.png
new file mode 100644
index 00000000..7e18e6be
Binary files /dev/null and b/frontend/src/assets/sources/eastside-maternal-fetal-medicine.png differ
diff --git a/frontend/src/assets/sources/eastside-obh.png b/frontend/src/assets/sources/eastside-obh.png
new file mode 100644
index 00000000..6f6aa82d
Binary files /dev/null and b/frontend/src/assets/sources/eastside-obh.png differ
diff --git a/frontend/src/assets/sources/ector-county-hospital-district-medical-center-health-system.png b/frontend/src/assets/sources/ector-county-hospital-district-medical-center-health-system.png
new file mode 100644
index 00000000..018ad476
Binary files /dev/null and b/frontend/src/assets/sources/ector-county-hospital-district-medical-center-health-system.png differ
diff --git a/frontend/src/assets/sources/edicine-internal-medicine-and-urgent-car.png b/frontend/src/assets/sources/edicine-internal-medicine-and-urgent-car.png
new file mode 100644
index 00000000..5eaf3d3a
Binary files /dev/null and b/frontend/src/assets/sources/edicine-internal-medicine-and-urgent-car.png differ
diff --git a/frontend/src/assets/sources/edie-windsor-healthcare-center.png b/frontend/src/assets/sources/edie-windsor-healthcare-center.png
new file mode 100644
index 00000000..3c13f25b
Binary files /dev/null and b/frontend/src/assets/sources/edie-windsor-healthcare-center.png differ
diff --git a/frontend/src/assets/sources/edmonds-orthopedic-center.svg b/frontend/src/assets/sources/edmonds-orthopedic-center.svg
new file mode 100644
index 00000000..1cfb5504
--- /dev/null
+++ b/frontend/src/assets/sources/edmonds-orthopedic-center.svg
@@ -0,0 +1,130 @@
+
+
+
diff --git a/frontend/src/assets/sources/edmonds-orthopedic-therapy.png b/frontend/src/assets/sources/edmonds-orthopedic-therapy.png
new file mode 100644
index 00000000..0cd6421b
Binary files /dev/null and b/frontend/src/assets/sources/edmonds-orthopedic-therapy.png differ
diff --git a/frontend/src/assets/sources/edmund-j-maclaughlin-md-llc.svg b/frontend/src/assets/sources/edmund-j-maclaughlin-md-llc.svg
new file mode 100644
index 00000000..c1dbae91
--- /dev/null
+++ b/frontend/src/assets/sources/edmund-j-maclaughlin-md-llc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/edward-m-kennedy-community-health-center.png b/frontend/src/assets/sources/edward-m-kennedy-community-health-center.png
new file mode 100644
index 00000000..bf368bbb
Binary files /dev/null and b/frontend/src/assets/sources/edward-m-kennedy-community-health-center.png differ
diff --git a/frontend/src/assets/sources/effingham-vascular-center.png b/frontend/src/assets/sources/effingham-vascular-center.png
new file mode 100644
index 00000000..527b7542
Binary files /dev/null and b/frontend/src/assets/sources/effingham-vascular-center.png differ
diff --git a/frontend/src/assets/sources/einstein-healthcare-network.png b/frontend/src/assets/sources/einstein-healthcare-network.png
new file mode 100644
index 00000000..d25dc27d
Binary files /dev/null and b/frontend/src/assets/sources/einstein-healthcare-network.png differ
diff --git a/frontend/src/assets/sources/eisner-health.jpg b/frontend/src/assets/sources/eisner-health.jpg
new file mode 100644
index 00000000..d5d87a34
Binary files /dev/null and b/frontend/src/assets/sources/eisner-health.jpg differ
diff --git a/frontend/src/assets/sources/eisner-health.png b/frontend/src/assets/sources/eisner-health.png
new file mode 100644
index 00000000..c349b657
Binary files /dev/null and b/frontend/src/assets/sources/eisner-health.png differ
diff --git a/frontend/src/assets/sources/el-centro-regional-medical-center.png b/frontend/src/assets/sources/el-centro-regional-medical-center.png
new file mode 100644
index 00000000..7f09de67
Binary files /dev/null and b/frontend/src/assets/sources/el-centro-regional-medical-center.png differ
diff --git a/frontend/src/assets/sources/el-paso-del-coro.png b/frontend/src/assets/sources/el-paso-del-coro.png
new file mode 100644
index 00000000..c0f55b08
Binary files /dev/null and b/frontend/src/assets/sources/el-paso-del-coro.png differ
diff --git a/frontend/src/assets/sources/el-paso-diaz-luna.png b/frontend/src/assets/sources/el-paso-diaz-luna.png
new file mode 100644
index 00000000..4f3888eb
Binary files /dev/null and b/frontend/src/assets/sources/el-paso-diaz-luna.png differ
diff --git a/frontend/src/assets/sources/elite-pain-and-health-pc.png b/frontend/src/assets/sources/elite-pain-and-health-pc.png
new file mode 100644
index 00000000..642e7401
Binary files /dev/null and b/frontend/src/assets/sources/elite-pain-and-health-pc.png differ
diff --git a/frontend/src/assets/sources/ellen-m-field-md.jpg b/frontend/src/assets/sources/ellen-m-field-md.jpg
new file mode 100644
index 00000000..3def388f
Binary files /dev/null and b/frontend/src/assets/sources/ellen-m-field-md.jpg differ
diff --git a/frontend/src/assets/sources/ellinwood-district-hospital-and-clinic.jpg b/frontend/src/assets/sources/ellinwood-district-hospital-and-clinic.jpg
new file mode 100644
index 00000000..a812fd40
Binary files /dev/null and b/frontend/src/assets/sources/ellinwood-district-hospital-and-clinic.jpg differ
diff --git a/frontend/src/assets/sources/ellinwood-district-hospital-and-clinic.png b/frontend/src/assets/sources/ellinwood-district-hospital-and-clinic.png
new file mode 100644
index 00000000..62e7c989
Binary files /dev/null and b/frontend/src/assets/sources/ellinwood-district-hospital-and-clinic.png differ
diff --git a/frontend/src/assets/sources/ellis-hospital.jpg b/frontend/src/assets/sources/ellis-hospital.jpg
new file mode 100644
index 00000000..bbdc55dc
Binary files /dev/null and b/frontend/src/assets/sources/ellis-hospital.jpg differ
diff --git a/frontend/src/assets/sources/ellis-hospital.png b/frontend/src/assets/sources/ellis-hospital.png
new file mode 100644
index 00000000..bb0d958d
Binary files /dev/null and b/frontend/src/assets/sources/ellis-hospital.png differ
diff --git a/frontend/src/assets/sources/ellsworth-county-medical-center.png b/frontend/src/assets/sources/ellsworth-county-medical-center.png
new file mode 100644
index 00000000..a4533603
Binary files /dev/null and b/frontend/src/assets/sources/ellsworth-county-medical-center.png differ
diff --git a/frontend/src/assets/sources/emergency-department.jpg b/frontend/src/assets/sources/emergency-department.jpg
new file mode 100644
index 00000000..837a8570
Binary files /dev/null and b/frontend/src/assets/sources/emergency-department.jpg differ
diff --git a/frontend/src/assets/sources/emergency-surgical-associates-apc.svg b/frontend/src/assets/sources/emergency-surgical-associates-apc.svg
new file mode 100644
index 00000000..1a0638e0
--- /dev/null
+++ b/frontend/src/assets/sources/emergency-surgical-associates-apc.svg
@@ -0,0 +1,48 @@
+
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/eminent-medical-center.png b/frontend/src/assets/sources/eminent-medical-center.png
new file mode 100644
index 00000000..6968ebcd
Binary files /dev/null and b/frontend/src/assets/sources/eminent-medical-center.png differ
diff --git a/frontend/src/assets/sources/emkey-arthritis-and-osteoporosis-clinic.png b/frontend/src/assets/sources/emkey-arthritis-and-osteoporosis-clinic.png
new file mode 100644
index 00000000..5c8e7dc3
Binary files /dev/null and b/frontend/src/assets/sources/emkey-arthritis-and-osteoporosis-clinic.png differ
diff --git a/frontend/src/assets/sources/emma-goldman-clinic.jpg b/frontend/src/assets/sources/emma-goldman-clinic.jpg
new file mode 100644
index 00000000..913cf54e
Binary files /dev/null and b/frontend/src/assets/sources/emma-goldman-clinic.jpg differ
diff --git a/frontend/src/assets/sources/emma-goldman-clinic.png b/frontend/src/assets/sources/emma-goldman-clinic.png
new file mode 100644
index 00000000..c565faaa
Binary files /dev/null and b/frontend/src/assets/sources/emma-goldman-clinic.png differ
diff --git a/frontend/src/assets/sources/employee-health.svg b/frontend/src/assets/sources/employee-health.svg
new file mode 100644
index 00000000..7c56b91d
--- /dev/null
+++ b/frontend/src/assets/sources/employee-health.svg
@@ -0,0 +1,120 @@
+
+
+
diff --git a/frontend/src/assets/sources/employer-health.png b/frontend/src/assets/sources/employer-health.png
new file mode 100644
index 00000000..c8ccb62a
Binary files /dev/null and b/frontend/src/assets/sources/employer-health.png differ
diff --git a/frontend/src/assets/sources/empower-psychiatry-and-sleep-llc.jpg b/frontend/src/assets/sources/empower-psychiatry-and-sleep-llc.jpg
new file mode 100644
index 00000000..7d168740
Binary files /dev/null and b/frontend/src/assets/sources/empower-psychiatry-and-sleep-llc.jpg differ
diff --git a/frontend/src/assets/sources/endeavor-health-services.jpg b/frontend/src/assets/sources/endeavor-health-services.jpg
new file mode 100644
index 00000000..07481a54
Binary files /dev/null and b/frontend/src/assets/sources/endeavor-health-services.jpg differ
diff --git a/frontend/src/assets/sources/endeavor-health-services.png b/frontend/src/assets/sources/endeavor-health-services.png
new file mode 100644
index 00000000..f3dd47f8
Binary files /dev/null and b/frontend/src/assets/sources/endeavor-health-services.png differ
diff --git a/frontend/src/assets/sources/endocrine-and-thyroid.png b/frontend/src/assets/sources/endocrine-and-thyroid.png
new file mode 100644
index 00000000..ddcd75da
Binary files /dev/null and b/frontend/src/assets/sources/endocrine-and-thyroid.png differ
diff --git a/frontend/src/assets/sources/endocrinology-and-metabolism-of-east-alabama-llc.png b/frontend/src/assets/sources/endocrinology-and-metabolism-of-east-alabama-llc.png
new file mode 100644
index 00000000..14682596
Binary files /dev/null and b/frontend/src/assets/sources/endocrinology-and-metabolism-of-east-alabama-llc.png differ
diff --git a/frontend/src/assets/sources/endoscopic-anesthesia-group-pa.svg b/frontend/src/assets/sources/endoscopic-anesthesia-group-pa.svg
new file mode 100644
index 00000000..ea2b4ec2
--- /dev/null
+++ b/frontend/src/assets/sources/endoscopic-anesthesia-group-pa.svg
@@ -0,0 +1,8 @@
+
diff --git a/frontend/src/assets/sources/endoscopy-associates-of-valley-forge-llc.png b/frontend/src/assets/sources/endoscopy-associates-of-valley-forge-llc.png
new file mode 100644
index 00000000..10e80444
Binary files /dev/null and b/frontend/src/assets/sources/endoscopy-associates-of-valley-forge-llc.png differ
diff --git a/frontend/src/assets/sources/endoscopy-center-of-red-bank.png b/frontend/src/assets/sources/endoscopy-center-of-red-bank.png
new file mode 100644
index 00000000..4b3d5be3
Binary files /dev/null and b/frontend/src/assets/sources/endoscopy-center-of-red-bank.png differ
diff --git a/frontend/src/assets/sources/endoscopy-center-of-south-bay-anesthesia.png b/frontend/src/assets/sources/endoscopy-center-of-south-bay-anesthesia.png
new file mode 100644
index 00000000..b9d2b58f
Binary files /dev/null and b/frontend/src/assets/sources/endoscopy-center-of-south-bay-anesthesia.png differ
diff --git a/frontend/src/assets/sources/engineered-floors.jpg b/frontend/src/assets/sources/engineered-floors.jpg
new file mode 100644
index 00000000..35747eac
Binary files /dev/null and b/frontend/src/assets/sources/engineered-floors.jpg differ
diff --git a/frontend/src/assets/sources/engineered-floors.png b/frontend/src/assets/sources/engineered-floors.png
new file mode 100644
index 00000000..26754d69
Binary files /dev/null and b/frontend/src/assets/sources/engineered-floors.png differ
diff --git a/frontend/src/assets/sources/enps.png b/frontend/src/assets/sources/enps.png
new file mode 100644
index 00000000..5ca8bfbd
Binary files /dev/null and b/frontend/src/assets/sources/enps.png differ
diff --git a/frontend/src/assets/sources/enrique-griego-m-d.png b/frontend/src/assets/sources/enrique-griego-m-d.png
new file mode 100644
index 00000000..293619aa
Binary files /dev/null and b/frontend/src/assets/sources/enrique-griego-m-d.png differ
diff --git a/frontend/src/assets/sources/ent-and-allergy-associates-p-c.png b/frontend/src/assets/sources/ent-and-allergy-associates-p-c.png
new file mode 100644
index 00000000..f97494d7
Binary files /dev/null and b/frontend/src/assets/sources/ent-and-allergy-associates-p-c.png differ
diff --git a/frontend/src/assets/sources/ent-and-allergy-center-pa.png b/frontend/src/assets/sources/ent-and-allergy-center-pa.png
new file mode 100644
index 00000000..39e22c43
Binary files /dev/null and b/frontend/src/assets/sources/ent-and-allergy-center-pa.png differ
diff --git a/frontend/src/assets/sources/ent-associates-of-metairie.png b/frontend/src/assets/sources/ent-associates-of-metairie.png
new file mode 100644
index 00000000..255dbd3f
Binary files /dev/null and b/frontend/src/assets/sources/ent-associates-of-metairie.png differ
diff --git a/frontend/src/assets/sources/ent-associates-of-metairie.svg b/frontend/src/assets/sources/ent-associates-of-metairie.svg
new file mode 100644
index 00000000..3b0669d1
--- /dev/null
+++ b/frontend/src/assets/sources/ent-associates-of-metairie.svg
@@ -0,0 +1,103 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/enterprise-admin.png b/frontend/src/assets/sources/enterprise-admin.png
new file mode 100644
index 00000000..7c8e3260
Binary files /dev/null and b/frontend/src/assets/sources/enterprise-admin.png differ
diff --git a/frontend/src/assets/sources/enterprise-medical.jpg b/frontend/src/assets/sources/enterprise-medical.jpg
new file mode 100644
index 00000000..67b06f1b
Binary files /dev/null and b/frontend/src/assets/sources/enterprise-medical.jpg differ
diff --git a/frontend/src/assets/sources/enterprise-medical.png b/frontend/src/assets/sources/enterprise-medical.png
new file mode 100644
index 00000000..ae12ec88
Binary files /dev/null and b/frontend/src/assets/sources/enterprise-medical.png differ
diff --git a/frontend/src/assets/sources/enterprise-practice.jpeg b/frontend/src/assets/sources/enterprise-practice.jpeg
new file mode 100644
index 00000000..3bd990f2
Binary files /dev/null and b/frontend/src/assets/sources/enterprise-practice.jpeg differ
diff --git a/frontend/src/assets/sources/enterprise-practice.png b/frontend/src/assets/sources/enterprise-practice.png
new file mode 100644
index 00000000..d1c5f79a
Binary files /dev/null and b/frontend/src/assets/sources/enterprise-practice.png differ
diff --git a/frontend/src/assets/sources/epiphany-dermatology.jpg b/frontend/src/assets/sources/epiphany-dermatology.jpg
new file mode 100644
index 00000000..59ead30f
Binary files /dev/null and b/frontend/src/assets/sources/epiphany-dermatology.jpg differ
diff --git a/frontend/src/assets/sources/epiphany-dermatology.png b/frontend/src/assets/sources/epiphany-dermatology.png
new file mode 100644
index 00000000..025315d1
Binary files /dev/null and b/frontend/src/assets/sources/epiphany-dermatology.png differ
diff --git a/frontend/src/assets/sources/erdey-searcy-eye-group.png b/frontend/src/assets/sources/erdey-searcy-eye-group.png
new file mode 100644
index 00000000..1359a838
Binary files /dev/null and b/frontend/src/assets/sources/erdey-searcy-eye-group.png differ
diff --git a/frontend/src/assets/sources/eric-edward-holt-md.png b/frontend/src/assets/sources/eric-edward-holt-md.png
new file mode 100644
index 00000000..835c564f
Binary files /dev/null and b/frontend/src/assets/sources/eric-edward-holt-md.png differ
diff --git a/frontend/src/assets/sources/eric-gross-md.png b/frontend/src/assets/sources/eric-gross-md.png
new file mode 100644
index 00000000..3907b0f9
Binary files /dev/null and b/frontend/src/assets/sources/eric-gross-md.png differ
diff --git a/frontend/src/assets/sources/erie-county-general-health-district.png b/frontend/src/assets/sources/erie-county-general-health-district.png
new file mode 100644
index 00000000..66c683e2
Binary files /dev/null and b/frontend/src/assets/sources/erie-county-general-health-district.png differ
diff --git a/frontend/src/assets/sources/escambia-county-healthcare-authority.png b/frontend/src/assets/sources/escambia-county-healthcare-authority.png
new file mode 100644
index 00000000..8450ffb5
Binary files /dev/null and b/frontend/src/assets/sources/escambia-county-healthcare-authority.png differ
diff --git a/frontend/src/assets/sources/espiritu-and-espiritu-md-pa.png b/frontend/src/assets/sources/espiritu-and-espiritu-md-pa.png
new file mode 100644
index 00000000..31409271
Binary files /dev/null and b/frontend/src/assets/sources/espiritu-and-espiritu-md-pa.png differ
diff --git a/frontend/src/assets/sources/essential-medical-clinic.jpg b/frontend/src/assets/sources/essential-medical-clinic.jpg
new file mode 100644
index 00000000..d40a5440
Binary files /dev/null and b/frontend/src/assets/sources/essential-medical-clinic.jpg differ
diff --git a/frontend/src/assets/sources/essential-medical-clinic.png b/frontend/src/assets/sources/essential-medical-clinic.png
new file mode 100644
index 00000000..96e2912e
Binary files /dev/null and b/frontend/src/assets/sources/essential-medical-clinic.png differ
diff --git a/frontend/src/assets/sources/essex-specialized-surgical-institute.jpg b/frontend/src/assets/sources/essex-specialized-surgical-institute.jpg
new file mode 100644
index 00000000..421ec777
Binary files /dev/null and b/frontend/src/assets/sources/essex-specialized-surgical-institute.jpg differ
diff --git a/frontend/src/assets/sources/eugene-shteerman-md.jpg b/frontend/src/assets/sources/eugene-shteerman-md.jpg
new file mode 100644
index 00000000..334337a1
Binary files /dev/null and b/frontend/src/assets/sources/eugene-shteerman-md.jpg differ
diff --git a/frontend/src/assets/sources/everett-bone-and-joint-physical-therapy.png b/frontend/src/assets/sources/everett-bone-and-joint-physical-therapy.png
new file mode 100644
index 00000000..438dfe53
Binary files /dev/null and b/frontend/src/assets/sources/everett-bone-and-joint-physical-therapy.png differ
diff --git a/frontend/src/assets/sources/everett-bone-and-joint.png b/frontend/src/assets/sources/everett-bone-and-joint.png
new file mode 100644
index 00000000..438dfe53
Binary files /dev/null and b/frontend/src/assets/sources/everett-bone-and-joint.png differ
diff --git a/frontend/src/assets/sources/evergreen-surgical-clinic.jpg b/frontend/src/assets/sources/evergreen-surgical-clinic.jpg
new file mode 100644
index 00000000..0c821617
Binary files /dev/null and b/frontend/src/assets/sources/evergreen-surgical-clinic.jpg differ
diff --git a/frontend/src/assets/sources/evergreen-surgical-clinic.png b/frontend/src/assets/sources/evergreen-surgical-clinic.png
new file mode 100644
index 00000000..d6e2407d
Binary files /dev/null and b/frontend/src/assets/sources/evergreen-surgical-clinic.png differ
diff --git a/frontend/src/assets/sources/evergreenhealth.svg b/frontend/src/assets/sources/evergreenhealth.svg
new file mode 100644
index 00000000..e95b1255
--- /dev/null
+++ b/frontend/src/assets/sources/evergreenhealth.svg
@@ -0,0 +1,27 @@
+
diff --git a/frontend/src/assets/sources/evolution-health.png b/frontend/src/assets/sources/evolution-health.png
new file mode 100644
index 00000000..61345747
Binary files /dev/null and b/frontend/src/assets/sources/evolution-health.png differ
diff --git a/frontend/src/assets/sources/excela-health.svg b/frontend/src/assets/sources/excela-health.svg
new file mode 100644
index 00000000..4d18598b
--- /dev/null
+++ b/frontend/src/assets/sources/excela-health.svg
@@ -0,0 +1,52 @@
+
+
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/eye-associates-northwest.jpg b/frontend/src/assets/sources/eye-associates-northwest.jpg
new file mode 100644
index 00000000..0ed261ea
Binary files /dev/null and b/frontend/src/assets/sources/eye-associates-northwest.jpg differ
diff --git a/frontend/src/assets/sources/eye-associates-of-colorado-springs-pc.png b/frontend/src/assets/sources/eye-associates-of-colorado-springs-pc.png
new file mode 100644
index 00000000..14a4c1a1
Binary files /dev/null and b/frontend/src/assets/sources/eye-associates-of-colorado-springs-pc.png differ
diff --git a/frontend/src/assets/sources/eye-associates-of-southern-indiana.jpg b/frontend/src/assets/sources/eye-associates-of-southern-indiana.jpg
new file mode 100644
index 00000000..ce60fbfe
Binary files /dev/null and b/frontend/src/assets/sources/eye-associates-of-southern-indiana.jpg differ
diff --git a/frontend/src/assets/sources/eye-associates-of-southern-indiana.png b/frontend/src/assets/sources/eye-associates-of-southern-indiana.png
new file mode 100644
index 00000000..06e2d59d
Binary files /dev/null and b/frontend/src/assets/sources/eye-associates-of-southern-indiana.png differ
diff --git a/frontend/src/assets/sources/eye-associates-of-tallahassee.png b/frontend/src/assets/sources/eye-associates-of-tallahassee.png
new file mode 100644
index 00000000..998260d4
Binary files /dev/null and b/frontend/src/assets/sources/eye-associates-of-tallahassee.png differ
diff --git a/frontend/src/assets/sources/eye-associates-pllc.png b/frontend/src/assets/sources/eye-associates-pllc.png
new file mode 100644
index 00000000..a8e6bfae
Binary files /dev/null and b/frontend/src/assets/sources/eye-associates-pllc.png differ
diff --git a/frontend/src/assets/sources/eye-associates-surgery-center.jpg b/frontend/src/assets/sources/eye-associates-surgery-center.jpg
new file mode 100644
index 00000000..1a4e1386
Binary files /dev/null and b/frontend/src/assets/sources/eye-associates-surgery-center.jpg differ
diff --git a/frontend/src/assets/sources/eye-associates-surgery-center.png b/frontend/src/assets/sources/eye-associates-surgery-center.png
new file mode 100644
index 00000000..9f3293cc
Binary files /dev/null and b/frontend/src/assets/sources/eye-associates-surgery-center.png differ
diff --git a/frontend/src/assets/sources/eye-care-associates-pc.png b/frontend/src/assets/sources/eye-care-associates-pc.png
new file mode 100644
index 00000000..3b2276eb
Binary files /dev/null and b/frontend/src/assets/sources/eye-care-associates-pc.png differ
diff --git a/frontend/src/assets/sources/eye-care-centers.png b/frontend/src/assets/sources/eye-care-centers.png
new file mode 100644
index 00000000..a63a2cd7
Binary files /dev/null and b/frontend/src/assets/sources/eye-care-centers.png differ
diff --git a/frontend/src/assets/sources/eye-care-of-san-diego.png b/frontend/src/assets/sources/eye-care-of-san-diego.png
new file mode 100644
index 00000000..3b62b1ae
Binary files /dev/null and b/frontend/src/assets/sources/eye-care-of-san-diego.png differ
diff --git a/frontend/src/assets/sources/eye-care-surgery-center-of-memphis-llc.png b/frontend/src/assets/sources/eye-care-surgery-center-of-memphis-llc.png
new file mode 100644
index 00000000..eb946124
Binary files /dev/null and b/frontend/src/assets/sources/eye-care-surgery-center-of-memphis-llc.png differ
diff --git a/frontend/src/assets/sources/eye-care-surgery-center-of-olive-branch.png b/frontend/src/assets/sources/eye-care-surgery-center-of-olive-branch.png
new file mode 100644
index 00000000..b428dc8c
Binary files /dev/null and b/frontend/src/assets/sources/eye-care-surgery-center-of-olive-branch.png differ
diff --git a/frontend/src/assets/sources/eye-center-of-northern-colorado-pc.png b/frontend/src/assets/sources/eye-center-of-northern-colorado-pc.png
new file mode 100644
index 00000000..4518a2da
Binary files /dev/null and b/frontend/src/assets/sources/eye-center-of-northern-colorado-pc.png differ
diff --git a/frontend/src/assets/sources/eye-consultants-of-pa-pc.jpg b/frontend/src/assets/sources/eye-consultants-of-pa-pc.jpg
new file mode 100644
index 00000000..c706bdfd
Binary files /dev/null and b/frontend/src/assets/sources/eye-consultants-of-pa-pc.jpg differ
diff --git a/frontend/src/assets/sources/eye-guys-carolina-llc.png b/frontend/src/assets/sources/eye-guys-carolina-llc.png
new file mode 100644
index 00000000..8cb65b8f
Binary files /dev/null and b/frontend/src/assets/sources/eye-guys-carolina-llc.png differ
diff --git a/frontend/src/assets/sources/eye-health-center.jpg b/frontend/src/assets/sources/eye-health-center.jpg
new file mode 100644
index 00000000..9bf17529
Binary files /dev/null and b/frontend/src/assets/sources/eye-health-center.jpg differ
diff --git a/frontend/src/assets/sources/eye-partners-p-c.png b/frontend/src/assets/sources/eye-partners-p-c.png
new file mode 100644
index 00000000..0242aebf
Binary files /dev/null and b/frontend/src/assets/sources/eye-partners-p-c.png differ
diff --git a/frontend/src/assets/sources/eye-physicians-and-surgeons-llp.png b/frontend/src/assets/sources/eye-physicians-and-surgeons-llp.png
new file mode 100644
index 00000000..160af989
Binary files /dev/null and b/frontend/src/assets/sources/eye-physicians-and-surgeons-llp.png differ
diff --git a/frontend/src/assets/sources/eye-physicians-and-surgeons-of-augusta.jpg b/frontend/src/assets/sources/eye-physicians-and-surgeons-of-augusta.jpg
new file mode 100644
index 00000000..64a99294
Binary files /dev/null and b/frontend/src/assets/sources/eye-physicians-and-surgeons-of-augusta.jpg differ
diff --git a/frontend/src/assets/sources/eye-physicians-of-florida.png b/frontend/src/assets/sources/eye-physicians-of-florida.png
new file mode 100644
index 00000000..173d108a
Binary files /dev/null and b/frontend/src/assets/sources/eye-physicians-of-florida.png differ
diff --git a/frontend/src/assets/sources/eye-physicians-of-orange-county-pc.png b/frontend/src/assets/sources/eye-physicians-of-orange-county-pc.png
new file mode 100644
index 00000000..d1967e1f
Binary files /dev/null and b/frontend/src/assets/sources/eye-physicians-of-orange-county-pc.png differ
diff --git a/frontend/src/assets/sources/eye-physicians-of-sussex-county.png b/frontend/src/assets/sources/eye-physicians-of-sussex-county.png
new file mode 100644
index 00000000..7b0ea5bf
Binary files /dev/null and b/frontend/src/assets/sources/eye-physicians-of-sussex-county.png differ
diff --git a/frontend/src/assets/sources/eye-specialists-surgery-centers-llc.png b/frontend/src/assets/sources/eye-specialists-surgery-centers-llc.png
new file mode 100644
index 00000000..87764fa9
Binary files /dev/null and b/frontend/src/assets/sources/eye-specialists-surgery-centers-llc.png differ
diff --git a/frontend/src/assets/sources/eye-surgeons-associates.png b/frontend/src/assets/sources/eye-surgeons-associates.png
new file mode 100644
index 00000000..eb0db9e8
Binary files /dev/null and b/frontend/src/assets/sources/eye-surgeons-associates.png differ
diff --git a/frontend/src/assets/sources/eye-surgery-and-laser-center.png b/frontend/src/assets/sources/eye-surgery-and-laser-center.png
new file mode 100644
index 00000000..068bbe01
Binary files /dev/null and b/frontend/src/assets/sources/eye-surgery-and-laser-center.png differ
diff --git a/frontend/src/assets/sources/eye-surgery-center-at-the-biltmore.jpg b/frontend/src/assets/sources/eye-surgery-center-at-the-biltmore.jpg
new file mode 100644
index 00000000..4f0f9196
Binary files /dev/null and b/frontend/src/assets/sources/eye-surgery-center-at-the-biltmore.jpg differ
diff --git a/frontend/src/assets/sources/eye-surgery-center-at-the-biltmore.png b/frontend/src/assets/sources/eye-surgery-center-at-the-biltmore.png
new file mode 100644
index 00000000..c0ed1919
Binary files /dev/null and b/frontend/src/assets/sources/eye-surgery-center-at-the-biltmore.png differ
diff --git a/frontend/src/assets/sources/eye-surgery-center-of-albany.png b/frontend/src/assets/sources/eye-surgery-center-of-albany.png
new file mode 100644
index 00000000..94642798
Binary files /dev/null and b/frontend/src/assets/sources/eye-surgery-center-of-albany.png differ
diff --git a/frontend/src/assets/sources/eye-surgery-center-of-augusta.jpg b/frontend/src/assets/sources/eye-surgery-center-of-augusta.jpg
new file mode 100644
index 00000000..64a99294
Binary files /dev/null and b/frontend/src/assets/sources/eye-surgery-center-of-augusta.jpg differ
diff --git a/frontend/src/assets/sources/eye-surgery-center-of-augusta.png b/frontend/src/assets/sources/eye-surgery-center-of-augusta.png
new file mode 100644
index 00000000..f0ada13d
Binary files /dev/null and b/frontend/src/assets/sources/eye-surgery-center-of-augusta.png differ
diff --git a/frontend/src/assets/sources/eye-surgery-center-of-colorado.png b/frontend/src/assets/sources/eye-surgery-center-of-colorado.png
new file mode 100644
index 00000000..31c11e0d
Binary files /dev/null and b/frontend/src/assets/sources/eye-surgery-center-of-colorado.png differ
diff --git a/frontend/src/assets/sources/eye-surgery-center-of-maryville.png b/frontend/src/assets/sources/eye-surgery-center-of-maryville.png
new file mode 100644
index 00000000..2c4594e7
Binary files /dev/null and b/frontend/src/assets/sources/eye-surgery-center-of-maryville.png differ
diff --git a/frontend/src/assets/sources/eye-surgery-center-of-the-desert-ltd.png b/frontend/src/assets/sources/eye-surgery-center-of-the-desert-ltd.png
new file mode 100644
index 00000000..bab8e514
Binary files /dev/null and b/frontend/src/assets/sources/eye-surgery-center-of-the-desert-ltd.png differ
diff --git a/frontend/src/assets/sources/eye-vision-international.png b/frontend/src/assets/sources/eye-vision-international.png
new file mode 100644
index 00000000..89b4f3e4
Binary files /dev/null and b/frontend/src/assets/sources/eye-vision-international.png differ
diff --git a/frontend/src/assets/sources/eyecare-20-20.png b/frontend/src/assets/sources/eyecare-20-20.png
new file mode 100644
index 00000000..cc3aa4f7
Binary files /dev/null and b/frontend/src/assets/sources/eyecare-20-20.png differ
diff --git a/frontend/src/assets/sources/eyehealth-eastside-surgery-center.png b/frontend/src/assets/sources/eyehealth-eastside-surgery-center.png
new file mode 100644
index 00000000..f4e39be7
Binary files /dev/null and b/frontend/src/assets/sources/eyehealth-eastside-surgery-center.png differ
diff --git a/frontend/src/assets/sources/eyehealth-northwest.png b/frontend/src/assets/sources/eyehealth-northwest.png
new file mode 100644
index 00000000..e932b7e1
Binary files /dev/null and b/frontend/src/assets/sources/eyehealth-northwest.png differ
diff --git a/frontend/src/assets/sources/eyeone-and-retinacare-of-virginia.jpg b/frontend/src/assets/sources/eyeone-and-retinacare-of-virginia.jpg
new file mode 100644
index 00000000..61be6f8d
Binary files /dev/null and b/frontend/src/assets/sources/eyeone-and-retinacare-of-virginia.jpg differ
diff --git a/frontend/src/assets/sources/eyesthetica.png b/frontend/src/assets/sources/eyesthetica.png
new file mode 100644
index 00000000..efd0c711
Binary files /dev/null and b/frontend/src/assets/sources/eyesthetica.png differ
diff --git a/frontend/src/assets/sources/ezra-medical-center.png b/frontend/src/assets/sources/ezra-medical-center.png
new file mode 100644
index 00000000..3d018df7
Binary files /dev/null and b/frontend/src/assets/sources/ezra-medical-center.png differ
diff --git a/frontend/src/assets/sources/facv-consultants-pc.png b/frontend/src/assets/sources/facv-consultants-pc.png
new file mode 100644
index 00000000..ab88c814
Binary files /dev/null and b/frontend/src/assets/sources/facv-consultants-pc.png differ
diff --git a/frontend/src/assets/sources/fairbanks-memorial-hospital.jpg b/frontend/src/assets/sources/fairbanks-memorial-hospital.jpg
new file mode 100644
index 00000000..98385e7f
Binary files /dev/null and b/frontend/src/assets/sources/fairbanks-memorial-hospital.jpg differ
diff --git a/frontend/src/assets/sources/fairfield-medical-center.png b/frontend/src/assets/sources/fairfield-medical-center.png
new file mode 100644
index 00000000..f50721d8
Binary files /dev/null and b/frontend/src/assets/sources/fairfield-medical-center.png differ
diff --git a/frontend/src/assets/sources/fallon-health-weinberg-pace.png b/frontend/src/assets/sources/fallon-health-weinberg-pace.png
new file mode 100644
index 00000000..b2d2a727
Binary files /dev/null and b/frontend/src/assets/sources/fallon-health-weinberg-pace.png differ
diff --git a/frontend/src/assets/sources/family-and-childrens-clinic.png b/frontend/src/assets/sources/family-and-childrens-clinic.png
new file mode 100644
index 00000000..bf05b9e5
Binary files /dev/null and b/frontend/src/assets/sources/family-and-childrens-clinic.png differ
diff --git a/frontend/src/assets/sources/family-assoc-med-group-inc.svg b/frontend/src/assets/sources/family-assoc-med-group-inc.svg
new file mode 100644
index 00000000..66da6934
--- /dev/null
+++ b/frontend/src/assets/sources/family-assoc-med-group-inc.svg
@@ -0,0 +1,103 @@
+
+
+
diff --git a/frontend/src/assets/sources/family-care-center-quitman.png b/frontend/src/assets/sources/family-care-center-quitman.png
new file mode 100644
index 00000000..9bc7667e
Binary files /dev/null and b/frontend/src/assets/sources/family-care-center-quitman.png differ
diff --git a/frontend/src/assets/sources/family-care-partners.png b/frontend/src/assets/sources/family-care-partners.png
new file mode 100644
index 00000000..20390627
Binary files /dev/null and b/frontend/src/assets/sources/family-care-partners.png differ
diff --git a/frontend/src/assets/sources/family-foot-and-ankle-clinic-pa.jpg b/frontend/src/assets/sources/family-foot-and-ankle-clinic-pa.jpg
new file mode 100644
index 00000000..6505d44e
Binary files /dev/null and b/frontend/src/assets/sources/family-foot-and-ankle-clinic-pa.jpg differ
diff --git a/frontend/src/assets/sources/family-foot-and-ankle-clinic-pa.png b/frontend/src/assets/sources/family-foot-and-ankle-clinic-pa.png
new file mode 100644
index 00000000..ebdd4275
Binary files /dev/null and b/frontend/src/assets/sources/family-foot-and-ankle-clinic-pa.png differ
diff --git a/frontend/src/assets/sources/family-foot-health-center-pc.png b/frontend/src/assets/sources/family-foot-health-center-pc.png
new file mode 100644
index 00000000..085cc22c
Binary files /dev/null and b/frontend/src/assets/sources/family-foot-health-center-pc.png differ
diff --git a/frontend/src/assets/sources/family-footcare.png b/frontend/src/assets/sources/family-footcare.png
new file mode 100644
index 00000000..4dcf8b60
Binary files /dev/null and b/frontend/src/assets/sources/family-footcare.png differ
diff --git a/frontend/src/assets/sources/family-health-care-center.png b/frontend/src/assets/sources/family-health-care-center.png
new file mode 100644
index 00000000..2be923f4
Binary files /dev/null and b/frontend/src/assets/sources/family-health-care-center.png differ
diff --git a/frontend/src/assets/sources/family-health-care-centers-of-greater-la.jpg b/frontend/src/assets/sources/family-health-care-centers-of-greater-la.jpg
new file mode 100644
index 00000000..b2b1e4ed
Binary files /dev/null and b/frontend/src/assets/sources/family-health-care-centers-of-greater-la.jpg differ
diff --git a/frontend/src/assets/sources/family-health-care-centers-of-greater-la.png b/frontend/src/assets/sources/family-health-care-centers-of-greater-la.png
new file mode 100644
index 00000000..c78ba8b3
Binary files /dev/null and b/frontend/src/assets/sources/family-health-care-centers-of-greater-la.png differ
diff --git a/frontend/src/assets/sources/family-health-care-of-hoopeston.jpg b/frontend/src/assets/sources/family-health-care-of-hoopeston.jpg
new file mode 100644
index 00000000..eb44846a
Binary files /dev/null and b/frontend/src/assets/sources/family-health-care-of-hoopeston.jpg differ
diff --git a/frontend/src/assets/sources/family-health-care-of-mahomet.jpg b/frontend/src/assets/sources/family-health-care-of-mahomet.jpg
new file mode 100644
index 00000000..eb44846a
Binary files /dev/null and b/frontend/src/assets/sources/family-health-care-of-mahomet.jpg differ
diff --git a/frontend/src/assets/sources/family-health-care-of-watseka.jpg b/frontend/src/assets/sources/family-health-care-of-watseka.jpg
new file mode 100644
index 00000000..eb44846a
Binary files /dev/null and b/frontend/src/assets/sources/family-health-care-of-watseka.jpg differ
diff --git a/frontend/src/assets/sources/family-health-care-of-watseka.png b/frontend/src/assets/sources/family-health-care-of-watseka.png
new file mode 100644
index 00000000..9ae9e36f
Binary files /dev/null and b/frontend/src/assets/sources/family-health-care-of-watseka.png differ
diff --git a/frontend/src/assets/sources/family-health-center-sandpoint.jpeg b/frontend/src/assets/sources/family-health-center-sandpoint.jpeg
new file mode 100644
index 00000000..c57010ea
Binary files /dev/null and b/frontend/src/assets/sources/family-health-center-sandpoint.jpeg differ
diff --git a/frontend/src/assets/sources/family-health-center.png b/frontend/src/assets/sources/family-health-center.png
new file mode 100644
index 00000000..f28bba50
Binary files /dev/null and b/frontend/src/assets/sources/family-health-center.png differ
diff --git a/frontend/src/assets/sources/family-health-clinic-of-barnes-kasson-ho.png b/frontend/src/assets/sources/family-health-clinic-of-barnes-kasson-ho.png
new file mode 100644
index 00000000..957f38ba
Binary files /dev/null and b/frontend/src/assets/sources/family-health-clinic-of-barnes-kasson-ho.png differ
diff --git a/frontend/src/assets/sources/family-health-services.png b/frontend/src/assets/sources/family-health-services.png
new file mode 100644
index 00000000..f2ad5b68
Binary files /dev/null and b/frontend/src/assets/sources/family-health-services.png differ
diff --git a/frontend/src/assets/sources/family-healthcare-of-hagerstown.jpg b/frontend/src/assets/sources/family-healthcare-of-hagerstown.jpg
new file mode 100644
index 00000000..8d27e656
Binary files /dev/null and b/frontend/src/assets/sources/family-healthcare-of-hagerstown.jpg differ
diff --git a/frontend/src/assets/sources/family-healthcare-of-hagerstown.png b/frontend/src/assets/sources/family-healthcare-of-hagerstown.png
new file mode 100644
index 00000000..8f1c52e6
Binary files /dev/null and b/frontend/src/assets/sources/family-healthcare-of-hagerstown.png differ
diff --git a/frontend/src/assets/sources/family-healthcare-of-smyrna-pc.png b/frontend/src/assets/sources/family-healthcare-of-smyrna-pc.png
new file mode 100644
index 00000000..4104da10
Binary files /dev/null and b/frontend/src/assets/sources/family-healthcare-of-smyrna-pc.png differ
diff --git a/frontend/src/assets/sources/family-healthcare-partners.jpg b/frontend/src/assets/sources/family-healthcare-partners.jpg
new file mode 100644
index 00000000..8431a2da
Binary files /dev/null and b/frontend/src/assets/sources/family-healthcare-partners.jpg differ
diff --git a/frontend/src/assets/sources/family-healthcenter.png b/frontend/src/assets/sources/family-healthcenter.png
new file mode 100644
index 00000000..909e6898
Binary files /dev/null and b/frontend/src/assets/sources/family-healthcenter.png differ
diff --git a/frontend/src/assets/sources/family-med-assoc-of-northridge-inc.png b/frontend/src/assets/sources/family-med-assoc-of-northridge-inc.png
new file mode 100644
index 00000000..094bb096
Binary files /dev/null and b/frontend/src/assets/sources/family-med-assoc-of-northridge-inc.png differ
diff --git a/frontend/src/assets/sources/family-medicine-specialists-pc.jpg b/frontend/src/assets/sources/family-medicine-specialists-pc.jpg
new file mode 100644
index 00000000..7a30240e
Binary files /dev/null and b/frontend/src/assets/sources/family-medicine-specialists-pc.jpg differ
diff --git a/frontend/src/assets/sources/family-medicine.png b/frontend/src/assets/sources/family-medicine.png
new file mode 100644
index 00000000..df6e17b0
Binary files /dev/null and b/frontend/src/assets/sources/family-medicine.png differ
diff --git a/frontend/src/assets/sources/family-podiatry-group-of-tampa-pa.jpg b/frontend/src/assets/sources/family-podiatry-group-of-tampa-pa.jpg
new file mode 100644
index 00000000..9a58746a
Binary files /dev/null and b/frontend/src/assets/sources/family-podiatry-group-of-tampa-pa.jpg differ
diff --git a/frontend/src/assets/sources/family-practice-associates.png b/frontend/src/assets/sources/family-practice-associates.png
new file mode 100644
index 00000000..392f90a4
Binary files /dev/null and b/frontend/src/assets/sources/family-practice-associates.png differ
diff --git a/frontend/src/assets/sources/family-practice-of-centrastate.svg b/frontend/src/assets/sources/family-practice-of-centrastate.svg
new file mode 100644
index 00000000..3d803b0b
--- /dev/null
+++ b/frontend/src/assets/sources/family-practice-of-centrastate.svg
@@ -0,0 +1,142 @@
+
+
diff --git a/frontend/src/assets/sources/family-tree-clinic.jpg b/frontend/src/assets/sources/family-tree-clinic.jpg
new file mode 100644
index 00000000..f3b486e5
Binary files /dev/null and b/frontend/src/assets/sources/family-tree-clinic.jpg differ
diff --git a/frontend/src/assets/sources/family-tree-clinic.png b/frontend/src/assets/sources/family-tree-clinic.png
new file mode 100644
index 00000000..c095f17c
Binary files /dev/null and b/frontend/src/assets/sources/family-tree-clinic.png differ
diff --git a/frontend/src/assets/sources/faulkton-area-medical-center.jpg b/frontend/src/assets/sources/faulkton-area-medical-center.jpg
new file mode 100644
index 00000000..065b8a16
Binary files /dev/null and b/frontend/src/assets/sources/faulkton-area-medical-center.jpg differ
diff --git a/frontend/src/assets/sources/fauquier-medical-associates.png b/frontend/src/assets/sources/fauquier-medical-associates.png
new file mode 100644
index 00000000..66403dac
Binary files /dev/null and b/frontend/src/assets/sources/fauquier-medical-associates.png differ
diff --git a/frontend/src/assets/sources/fauquier-physicians-network.png b/frontend/src/assets/sources/fauquier-physicians-network.png
new file mode 100644
index 00000000..f7fac8c4
Binary files /dev/null and b/frontend/src/assets/sources/fauquier-physicians-network.png differ
diff --git a/frontend/src/assets/sources/feather-river-tribal-health.jpg b/frontend/src/assets/sources/feather-river-tribal-health.jpg
new file mode 100644
index 00000000..a243a7c8
Binary files /dev/null and b/frontend/src/assets/sources/feather-river-tribal-health.jpg differ
diff --git a/frontend/src/assets/sources/felix-stanziola-md.jpg b/frontend/src/assets/sources/felix-stanziola-md.jpg
new file mode 100644
index 00000000..2a8932b1
Binary files /dev/null and b/frontend/src/assets/sources/felix-stanziola-md.jpg differ
diff --git a/frontend/src/assets/sources/feminist-womens-health-center.png b/frontend/src/assets/sources/feminist-womens-health-center.png
new file mode 100644
index 00000000..9dafbf5b
Binary files /dev/null and b/frontend/src/assets/sources/feminist-womens-health-center.png differ
diff --git a/frontend/src/assets/sources/fernandes-banerjee-shenoy-kidney-center-llc.png b/frontend/src/assets/sources/fernandes-banerjee-shenoy-kidney-center-llc.png
new file mode 100644
index 00000000..f98caf75
Binary files /dev/null and b/frontend/src/assets/sources/fernandes-banerjee-shenoy-kidney-center-llc.png differ
diff --git a/frontend/src/assets/sources/fillmore-county-hospital.jpg b/frontend/src/assets/sources/fillmore-county-hospital.jpg
new file mode 100644
index 00000000..30b19a08
Binary files /dev/null and b/frontend/src/assets/sources/fillmore-county-hospital.jpg differ
diff --git a/frontend/src/assets/sources/first-baptist-medical-center.jpg b/frontend/src/assets/sources/first-baptist-medical-center.jpg
new file mode 100644
index 00000000..dd2b0625
Binary files /dev/null and b/frontend/src/assets/sources/first-baptist-medical-center.jpg differ
diff --git a/frontend/src/assets/sources/first-baptist-medical-center.png b/frontend/src/assets/sources/first-baptist-medical-center.png
new file mode 100644
index 00000000..c2f6aae7
Binary files /dev/null and b/frontend/src/assets/sources/first-baptist-medical-center.png differ
diff --git a/frontend/src/assets/sources/first-care-clinic.jpg b/frontend/src/assets/sources/first-care-clinic.jpg
new file mode 100644
index 00000000..638f0f26
Binary files /dev/null and b/frontend/src/assets/sources/first-care-clinic.jpg differ
diff --git a/frontend/src/assets/sources/first-choice-community-healthcare.png b/frontend/src/assets/sources/first-choice-community-healthcare.png
new file mode 100644
index 00000000..519d616a
Binary files /dev/null and b/frontend/src/assets/sources/first-choice-community-healthcare.png differ
diff --git a/frontend/src/assets/sources/first-coast-infectious-disease.png b/frontend/src/assets/sources/first-coast-infectious-disease.png
new file mode 100644
index 00000000..81dc9741
Binary files /dev/null and b/frontend/src/assets/sources/first-coast-infectious-disease.png differ
diff --git a/frontend/src/assets/sources/first-coast-nephrology.png b/frontend/src/assets/sources/first-coast-nephrology.png
new file mode 100644
index 00000000..9a2cb38e
Binary files /dev/null and b/frontend/src/assets/sources/first-coast-nephrology.png differ
diff --git a/frontend/src/assets/sources/first-coast-surgical-associates.png b/frontend/src/assets/sources/first-coast-surgical-associates.png
new file mode 100644
index 00000000..8002372b
Binary files /dev/null and b/frontend/src/assets/sources/first-coast-surgical-associates.png differ
diff --git a/frontend/src/assets/sources/first-state-orthopaedics-pa.png b/frontend/src/assets/sources/first-state-orthopaedics-pa.png
new file mode 100644
index 00000000..540e7865
Binary files /dev/null and b/frontend/src/assets/sources/first-state-orthopaedics-pa.png differ
diff --git a/frontend/src/assets/sources/fisher-pediatric-clinic.jpg b/frontend/src/assets/sources/fisher-pediatric-clinic.jpg
new file mode 100644
index 00000000..d5587b52
Binary files /dev/null and b/frontend/src/assets/sources/fisher-pediatric-clinic.jpg differ
diff --git a/frontend/src/assets/sources/fisher-titus-medical-center.svg b/frontend/src/assets/sources/fisher-titus-medical-center.svg
new file mode 100644
index 00000000..227f2a09
--- /dev/null
+++ b/frontend/src/assets/sources/fisher-titus-medical-center.svg
@@ -0,0 +1,153 @@
+
+
+
diff --git a/frontend/src/assets/sources/fitzgibbon-hospital.jpg b/frontend/src/assets/sources/fitzgibbon-hospital.jpg
new file mode 100644
index 00000000..44fe90ec
Binary files /dev/null and b/frontend/src/assets/sources/fitzgibbon-hospital.jpg differ
diff --git a/frontend/src/assets/sources/flora-physicians-pllc.png b/frontend/src/assets/sources/flora-physicians-pllc.png
new file mode 100644
index 00000000..23a03a4b
Binary files /dev/null and b/frontend/src/assets/sources/flora-physicians-pllc.png differ
diff --git a/frontend/src/assets/sources/florida-lung-asthma-and-sleep-specialists.png b/frontend/src/assets/sources/florida-lung-asthma-and-sleep-specialists.png
new file mode 100644
index 00000000..9edb0a04
Binary files /dev/null and b/frontend/src/assets/sources/florida-lung-asthma-and-sleep-specialists.png differ
diff --git a/frontend/src/assets/sources/florida-lung-asthma-sleep-specialists-pa.png b/frontend/src/assets/sources/florida-lung-asthma-sleep-specialists-pa.png
new file mode 100644
index 00000000..93a10670
Binary files /dev/null and b/frontend/src/assets/sources/florida-lung-asthma-sleep-specialists-pa.png differ
diff --git a/frontend/src/assets/sources/florida-perinatal-associates.jpg b/frontend/src/assets/sources/florida-perinatal-associates.jpg
new file mode 100644
index 00000000..23fef016
Binary files /dev/null and b/frontend/src/assets/sources/florida-perinatal-associates.jpg differ
diff --git a/frontend/src/assets/sources/florida-perinatal-associates.png b/frontend/src/assets/sources/florida-perinatal-associates.png
new file mode 100644
index 00000000..941d7d6b
Binary files /dev/null and b/frontend/src/assets/sources/florida-perinatal-associates.png differ
diff --git a/frontend/src/assets/sources/florida-retina-and-vitreous-center-p-a.png b/frontend/src/assets/sources/florida-retina-and-vitreous-center-p-a.png
new file mode 100644
index 00000000..c802f5f1
Binary files /dev/null and b/frontend/src/assets/sources/florida-retina-and-vitreous-center-p-a.png differ
diff --git a/frontend/src/assets/sources/florida-spine-specialists-boca.png b/frontend/src/assets/sources/florida-spine-specialists-boca.png
new file mode 100644
index 00000000..9fc193a1
Binary files /dev/null and b/frontend/src/assets/sources/florida-spine-specialists-boca.png differ
diff --git a/frontend/src/assets/sources/florida-spine-specialists.png b/frontend/src/assets/sources/florida-spine-specialists.png
new file mode 100644
index 00000000..b66d85a1
Binary files /dev/null and b/frontend/src/assets/sources/florida-spine-specialists.png differ
diff --git a/frontend/src/assets/sources/florida-vision-institute-inc.jpg b/frontend/src/assets/sources/florida-vision-institute-inc.jpg
new file mode 100644
index 00000000..12e57cb6
Binary files /dev/null and b/frontend/src/assets/sources/florida-vision-institute-inc.jpg differ
diff --git a/frontend/src/assets/sources/floyd-healthcare-management.jpg b/frontend/src/assets/sources/floyd-healthcare-management.jpg
new file mode 100644
index 00000000..1a0d05ca
Binary files /dev/null and b/frontend/src/assets/sources/floyd-healthcare-management.jpg differ
diff --git a/frontend/src/assets/sources/floyd-healthcare-management.png b/frontend/src/assets/sources/floyd-healthcare-management.png
new file mode 100644
index 00000000..4b4b7397
Binary files /dev/null and b/frontend/src/assets/sources/floyd-healthcare-management.png differ
diff --git a/frontend/src/assets/sources/fmh-pain-clinic.png b/frontend/src/assets/sources/fmh-pain-clinic.png
new file mode 100644
index 00000000..317ec46f
Binary files /dev/null and b/frontend/src/assets/sources/fmh-pain-clinic.png differ
diff --git a/frontend/src/assets/sources/fmh-surgery-clinic.png b/frontend/src/assets/sources/fmh-surgery-clinic.png
new file mode 100644
index 00000000..317ec46f
Binary files /dev/null and b/frontend/src/assets/sources/fmh-surgery-clinic.png differ
diff --git a/frontend/src/assets/sources/fogg-remington-eyecare.svg b/frontend/src/assets/sources/fogg-remington-eyecare.svg
new file mode 100644
index 00000000..fcf37010
--- /dev/null
+++ b/frontend/src/assets/sources/fogg-remington-eyecare.svg
@@ -0,0 +1,55 @@
+
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/foley-eye-clinic-p-a.png b/frontend/src/assets/sources/foley-eye-clinic-p-a.png
new file mode 100644
index 00000000..878a9c2f
Binary files /dev/null and b/frontend/src/assets/sources/foley-eye-clinic-p-a.png differ
diff --git a/frontend/src/assets/sources/foot-and-ankle-associates-of-maine-pa.png b/frontend/src/assets/sources/foot-and-ankle-associates-of-maine-pa.png
new file mode 100644
index 00000000..dc101462
Binary files /dev/null and b/frontend/src/assets/sources/foot-and-ankle-associates-of-maine-pa.png differ
diff --git a/frontend/src/assets/sources/foot-and-ankle-center-of-sj.jpg b/frontend/src/assets/sources/foot-and-ankle-center-of-sj.jpg
new file mode 100644
index 00000000..bda53afa
Binary files /dev/null and b/frontend/src/assets/sources/foot-and-ankle-center-of-sj.jpg differ
diff --git a/frontend/src/assets/sources/foot-and-ankle-clinic-llp.png b/frontend/src/assets/sources/foot-and-ankle-clinic-llp.png
new file mode 100644
index 00000000..23c92f05
Binary files /dev/null and b/frontend/src/assets/sources/foot-and-ankle-clinic-llp.png differ
diff --git a/frontend/src/assets/sources/foot-and-ankle-surgeons-of-oklahoma.jpg b/frontend/src/assets/sources/foot-and-ankle-surgeons-of-oklahoma.jpg
new file mode 100644
index 00000000..021ccd84
Binary files /dev/null and b/frontend/src/assets/sources/foot-and-ankle-surgeons-of-oklahoma.jpg differ
diff --git a/frontend/src/assets/sources/foot-specialists-of-greater-cincinnati.png b/frontend/src/assets/sources/foot-specialists-of-greater-cincinnati.png
new file mode 100644
index 00000000..1aa8c427
Binary files /dev/null and b/frontend/src/assets/sources/foot-specialists-of-greater-cincinnati.png differ
diff --git a/frontend/src/assets/sources/foothill-cardiology-medical-group-inc.png b/frontend/src/assets/sources/foothill-cardiology-medical-group-inc.png
new file mode 100644
index 00000000..cf6378c1
Binary files /dev/null and b/frontend/src/assets/sources/foothill-cardiology-medical-group-inc.png differ
diff --git a/frontend/src/assets/sources/foothill-clinic-llc.png b/frontend/src/assets/sources/foothill-clinic-llc.png
new file mode 100644
index 00000000..fc63ee97
Binary files /dev/null and b/frontend/src/assets/sources/foothill-clinic-llc.png differ
diff --git a/frontend/src/assets/sources/foothill-eye-medical-group.jpg b/frontend/src/assets/sources/foothill-eye-medical-group.jpg
new file mode 100644
index 00000000..19a579b7
Binary files /dev/null and b/frontend/src/assets/sources/foothill-eye-medical-group.jpg differ
diff --git a/frontend/src/assets/sources/foothill-pediatric-and-adolescent-clinic.png b/frontend/src/assets/sources/foothill-pediatric-and-adolescent-clinic.png
new file mode 100644
index 00000000..d56a0e33
Binary files /dev/null and b/frontend/src/assets/sources/foothill-pediatric-and-adolescent-clinic.png differ
diff --git a/frontend/src/assets/sources/foothill-primary-care-inc.png b/frontend/src/assets/sources/foothill-primary-care-inc.png
new file mode 100644
index 00000000..8fe33fb3
Binary files /dev/null and b/frontend/src/assets/sources/foothill-primary-care-inc.png differ
diff --git a/frontend/src/assets/sources/foothill-urology-associates.png b/frontend/src/assets/sources/foothill-urology-associates.png
new file mode 100644
index 00000000..731d6257
Binary files /dev/null and b/frontend/src/assets/sources/foothill-urology-associates.png differ
diff --git a/frontend/src/assets/sources/foothills-health-and-wellness-center.png b/frontend/src/assets/sources/foothills-health-and-wellness-center.png
new file mode 100644
index 00000000..f72542f6
Binary files /dev/null and b/frontend/src/assets/sources/foothills-health-and-wellness-center.png differ
diff --git a/frontend/src/assets/sources/forefront-dermatology-s-c.png b/frontend/src/assets/sources/forefront-dermatology-s-c.png
new file mode 100644
index 00000000..6d652284
Binary files /dev/null and b/frontend/src/assets/sources/forefront-dermatology-s-c.png differ
diff --git a/frontend/src/assets/sources/fort-bend-rheumatology-associates-pllc.jpg b/frontend/src/assets/sources/fort-bend-rheumatology-associates-pllc.jpg
new file mode 100644
index 00000000..9783f3a3
Binary files /dev/null and b/frontend/src/assets/sources/fort-bend-rheumatology-associates-pllc.jpg differ
diff --git a/frontend/src/assets/sources/fort-healthcare.png b/frontend/src/assets/sources/fort-healthcare.png
new file mode 100644
index 00000000..cb4dd0fb
Binary files /dev/null and b/frontend/src/assets/sources/fort-healthcare.png differ
diff --git a/frontend/src/assets/sources/fort-healthcare.svg b/frontend/src/assets/sources/fort-healthcare.svg
new file mode 100644
index 00000000..66da6934
--- /dev/null
+++ b/frontend/src/assets/sources/fort-healthcare.svg
@@ -0,0 +1,103 @@
+
+
+
diff --git a/frontend/src/assets/sources/fort-lauderdale-eye-institute-llc.jpg b/frontend/src/assets/sources/fort-lauderdale-eye-institute-llc.jpg
new file mode 100644
index 00000000..cf4e0355
Binary files /dev/null and b/frontend/src/assets/sources/fort-lauderdale-eye-institute-llc.jpg differ
diff --git a/frontend/src/assets/sources/fort-smith-rheumatology-pc.png b/frontend/src/assets/sources/fort-smith-rheumatology-pc.png
new file mode 100644
index 00000000..0daf892c
Binary files /dev/null and b/frontend/src/assets/sources/fort-smith-rheumatology-pc.png differ
diff --git a/frontend/src/assets/sources/fort-wayne-vascular-care.png b/frontend/src/assets/sources/fort-wayne-vascular-care.png
new file mode 100644
index 00000000..202cdf98
Binary files /dev/null and b/frontend/src/assets/sources/fort-wayne-vascular-care.png differ
diff --git a/frontend/src/assets/sources/fort-worth-obh.png b/frontend/src/assets/sources/fort-worth-obh.png
new file mode 100644
index 00000000..dc1a950e
Binary files /dev/null and b/frontend/src/assets/sources/fort-worth-obh.png differ
diff --git a/frontend/src/assets/sources/fox-cities-eye-clinic.png b/frontend/src/assets/sources/fox-cities-eye-clinic.png
new file mode 100644
index 00000000..bd5bca08
Binary files /dev/null and b/frontend/src/assets/sources/fox-cities-eye-clinic.png differ
diff --git a/frontend/src/assets/sources/foxwoods-casino.png b/frontend/src/assets/sources/foxwoods-casino.png
new file mode 100644
index 00000000..0dde50b6
Binary files /dev/null and b/frontend/src/assets/sources/foxwoods-casino.png differ
diff --git a/frontend/src/assets/sources/fps-medical-center-ltd.png b/frontend/src/assets/sources/fps-medical-center-ltd.png
new file mode 100644
index 00000000..0147a396
Binary files /dev/null and b/frontend/src/assets/sources/fps-medical-center-ltd.png differ
diff --git a/frontend/src/assets/sources/fqhc-of-lane-county.png b/frontend/src/assets/sources/fqhc-of-lane-county.png
new file mode 100644
index 00000000..28f10101
Binary files /dev/null and b/frontend/src/assets/sources/fqhc-of-lane-county.png differ
diff --git a/frontend/src/assets/sources/francis-v-adams-md.svg b/frontend/src/assets/sources/francis-v-adams-md.svg
new file mode 100644
index 00000000..2821e3c5
--- /dev/null
+++ b/frontend/src/assets/sources/francis-v-adams-md.svg
@@ -0,0 +1,7 @@
+
+
+
diff --git a/frontend/src/assets/sources/franciscan-missionaries-of-our-lady-health-system-inc.jpg b/frontend/src/assets/sources/franciscan-missionaries-of-our-lady-health-system-inc.jpg
new file mode 100644
index 00000000..0b42d899
Binary files /dev/null and b/frontend/src/assets/sources/franciscan-missionaries-of-our-lady-health-system-inc.jpg differ
diff --git a/frontend/src/assets/sources/franciscan-missionaries-of-our-lady-health-system-inc.svg b/frontend/src/assets/sources/franciscan-missionaries-of-our-lady-health-system-inc.svg
new file mode 100644
index 00000000..48650699
--- /dev/null
+++ b/frontend/src/assets/sources/franciscan-missionaries-of-our-lady-health-system-inc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/frank-t-sconzo-jr-md.jpg b/frontend/src/assets/sources/frank-t-sconzo-jr-md.jpg
new file mode 100644
index 00000000..d2bd8a09
Binary files /dev/null and b/frontend/src/assets/sources/frank-t-sconzo-jr-md.jpg differ
diff --git a/frontend/src/assets/sources/franklin-general-hospital.png b/frontend/src/assets/sources/franklin-general-hospital.png
new file mode 100644
index 00000000..a80e9db1
Binary files /dev/null and b/frontend/src/assets/sources/franklin-general-hospital.png differ
diff --git a/frontend/src/assets/sources/franklin-medical-center.png b/frontend/src/assets/sources/franklin-medical-center.png
new file mode 100644
index 00000000..da6c4122
Binary files /dev/null and b/frontend/src/assets/sources/franklin-medical-center.png differ
diff --git a/frontend/src/assets/sources/fraser-child-and-family-center.jpg b/frontend/src/assets/sources/fraser-child-and-family-center.jpg
new file mode 100644
index 00000000..362fae9d
Binary files /dev/null and b/frontend/src/assets/sources/fraser-child-and-family-center.jpg differ
diff --git a/frontend/src/assets/sources/fraser-child-and-family-center.png b/frontend/src/assets/sources/fraser-child-and-family-center.png
new file mode 100644
index 00000000..d7956f22
Binary files /dev/null and b/frontend/src/assets/sources/fraser-child-and-family-center.png differ
diff --git a/frontend/src/assets/sources/frederick-gastroenterology-associates.jpg b/frontend/src/assets/sources/frederick-gastroenterology-associates.jpg
new file mode 100644
index 00000000..07a95b81
Binary files /dev/null and b/frontend/src/assets/sources/frederick-gastroenterology-associates.jpg differ
diff --git a/frontend/src/assets/sources/frederick-health-care-management.png b/frontend/src/assets/sources/frederick-health-care-management.png
new file mode 100644
index 00000000..c5dcf4f5
Binary files /dev/null and b/frontend/src/assets/sources/frederick-health-care-management.png differ
diff --git a/frontend/src/assets/sources/frederick-int-med-and-endo-services.png b/frontend/src/assets/sources/frederick-int-med-and-endo-services.png
new file mode 100644
index 00000000..d79378f3
Binary files /dev/null and b/frontend/src/assets/sources/frederick-int-med-and-endo-services.png differ
diff --git a/frontend/src/assets/sources/frederick-lee-md.png b/frontend/src/assets/sources/frederick-lee-md.png
new file mode 100644
index 00000000..51464923
Binary files /dev/null and b/frontend/src/assets/sources/frederick-lee-md.png differ
diff --git a/frontend/src/assets/sources/fredonia-regional-hospital.jpg b/frontend/src/assets/sources/fredonia-regional-hospital.jpg
new file mode 100644
index 00000000..4fcf545d
Binary files /dev/null and b/frontend/src/assets/sources/fredonia-regional-hospital.jpg differ
diff --git a/frontend/src/assets/sources/free-state-dermatology.jpg b/frontend/src/assets/sources/free-state-dermatology.jpg
new file mode 100644
index 00000000..cd0d2cc9
Binary files /dev/null and b/frontend/src/assets/sources/free-state-dermatology.jpg differ
diff --git a/frontend/src/assets/sources/fresenius-vascular-care-augusta-llc.jpg b/frontend/src/assets/sources/fresenius-vascular-care-augusta-llc.jpg
new file mode 100644
index 00000000..184cc5cc
Binary files /dev/null and b/frontend/src/assets/sources/fresenius-vascular-care-augusta-llc.jpg differ
diff --git a/frontend/src/assets/sources/fresenius-vascular-care-augusta-llc.png b/frontend/src/assets/sources/fresenius-vascular-care-augusta-llc.png
new file mode 100644
index 00000000..a5f279aa
Binary files /dev/null and b/frontend/src/assets/sources/fresenius-vascular-care-augusta-llc.png differ
diff --git a/frontend/src/assets/sources/fresno-american-indian-health-project.jpg b/frontend/src/assets/sources/fresno-american-indian-health-project.jpg
new file mode 100644
index 00000000..32c4c671
Binary files /dev/null and b/frontend/src/assets/sources/fresno-american-indian-health-project.jpg differ
diff --git a/frontend/src/assets/sources/fresno-american-indian-health-project.png b/frontend/src/assets/sources/fresno-american-indian-health-project.png
new file mode 100644
index 00000000..770b278c
Binary files /dev/null and b/frontend/src/assets/sources/fresno-american-indian-health-project.png differ
diff --git a/frontend/src/assets/sources/frisco-cardio-and-vascular-care.png b/frontend/src/assets/sources/frisco-cardio-and-vascular-care.png
new file mode 100644
index 00000000..6b778879
Binary files /dev/null and b/frontend/src/assets/sources/frisco-cardio-and-vascular-care.png differ
diff --git a/frontend/src/assets/sources/frontera-healthcare-network.jpg b/frontend/src/assets/sources/frontera-healthcare-network.jpg
new file mode 100644
index 00000000..b6e2b782
Binary files /dev/null and b/frontend/src/assets/sources/frontera-healthcare-network.jpg differ
diff --git a/frontend/src/assets/sources/frontera-healthcare-network.png b/frontend/src/assets/sources/frontera-healthcare-network.png
new file mode 100644
index 00000000..011920f4
Binary files /dev/null and b/frontend/src/assets/sources/frontera-healthcare-network.png differ
diff --git a/frontend/src/assets/sources/furlong-vision-correction.png b/frontend/src/assets/sources/furlong-vision-correction.png
new file mode 100644
index 00000000..13084e60
Binary files /dev/null and b/frontend/src/assets/sources/furlong-vision-correction.png differ
diff --git a/frontend/src/assets/sources/furman-medical-corporation.png b/frontend/src/assets/sources/furman-medical-corporation.png
new file mode 100644
index 00000000..23a03a4b
Binary files /dev/null and b/frontend/src/assets/sources/furman-medical-corporation.png differ
diff --git a/frontend/src/assets/sources/fusion-medspa-llc.png b/frontend/src/assets/sources/fusion-medspa-llc.png
new file mode 100644
index 00000000..53049aa6
Binary files /dev/null and b/frontend/src/assets/sources/fusion-medspa-llc.png differ
diff --git a/frontend/src/assets/sources/fusion-womens-health-and-wellness-pllc.jpg b/frontend/src/assets/sources/fusion-womens-health-and-wellness-pllc.jpg
new file mode 100644
index 00000000..d67591eb
Binary files /dev/null and b/frontend/src/assets/sources/fusion-womens-health-and-wellness-pllc.jpg differ
diff --git a/frontend/src/assets/sources/fvc-beverly.svg b/frontend/src/assets/sources/fvc-beverly.svg
new file mode 100644
index 00000000..16d5a623
--- /dev/null
+++ b/frontend/src/assets/sources/fvc-beverly.svg
@@ -0,0 +1,332 @@
+
+
+
diff --git a/frontend/src/assets/sources/fvc-dayton-vascular.jpg b/frontend/src/assets/sources/fvc-dayton-vascular.jpg
new file mode 100644
index 00000000..6daf0c57
Binary files /dev/null and b/frontend/src/assets/sources/fvc-dayton-vascular.jpg differ
diff --git a/frontend/src/assets/sources/fvc-dayton-vascular.png b/frontend/src/assets/sources/fvc-dayton-vascular.png
new file mode 100644
index 00000000..45a6988b
Binary files /dev/null and b/frontend/src/assets/sources/fvc-dayton-vascular.png differ
diff --git a/frontend/src/assets/sources/fvc-greenville.png b/frontend/src/assets/sources/fvc-greenville.png
new file mode 100644
index 00000000..3839eed9
Binary files /dev/null and b/frontend/src/assets/sources/fvc-greenville.png differ
diff --git a/frontend/src/assets/sources/fvc-lenoir.jpg b/frontend/src/assets/sources/fvc-lenoir.jpg
new file mode 100644
index 00000000..c9365abb
Binary files /dev/null and b/frontend/src/assets/sources/fvc-lenoir.jpg differ
diff --git a/frontend/src/assets/sources/fvc-lenoir.png b/frontend/src/assets/sources/fvc-lenoir.png
new file mode 100644
index 00000000..788565d1
Binary files /dev/null and b/frontend/src/assets/sources/fvc-lenoir.png differ
diff --git a/frontend/src/assets/sources/fvc-raleigh.png b/frontend/src/assets/sources/fvc-raleigh.png
new file mode 100644
index 00000000..11d32d13
Binary files /dev/null and b/frontend/src/assets/sources/fvc-raleigh.png differ
diff --git a/frontend/src/assets/sources/fvc-tampa-llc.jpg b/frontend/src/assets/sources/fvc-tampa-llc.jpg
new file mode 100644
index 00000000..02d2e01c
Binary files /dev/null and b/frontend/src/assets/sources/fvc-tampa-llc.jpg differ
diff --git a/frontend/src/assets/sources/gabrielle-schoeppner-md.jpg b/frontend/src/assets/sources/gabrielle-schoeppner-md.jpg
new file mode 100644
index 00000000..25d79fad
Binary files /dev/null and b/frontend/src/assets/sources/gabrielle-schoeppner-md.jpg differ
diff --git a/frontend/src/assets/sources/gah-cosmedics.jpg b/frontend/src/assets/sources/gah-cosmedics.jpg
new file mode 100644
index 00000000..f7b6dad3
Binary files /dev/null and b/frontend/src/assets/sources/gah-cosmedics.jpg differ
diff --git a/frontend/src/assets/sources/gah-ent-and-urology.jpg b/frontend/src/assets/sources/gah-ent-and-urology.jpg
new file mode 100644
index 00000000..eb44846a
Binary files /dev/null and b/frontend/src/assets/sources/gah-ent-and-urology.jpg differ
diff --git a/frontend/src/assets/sources/gah-neurology.png b/frontend/src/assets/sources/gah-neurology.png
new file mode 100644
index 00000000..9325b032
Binary files /dev/null and b/frontend/src/assets/sources/gah-neurology.png differ
diff --git a/frontend/src/assets/sources/gah-pulmonology.jpg b/frontend/src/assets/sources/gah-pulmonology.jpg
new file mode 100644
index 00000000..eb44846a
Binary files /dev/null and b/frontend/src/assets/sources/gah-pulmonology.jpg differ
diff --git a/frontend/src/assets/sources/gahhs-outpatient-clinic.jpg b/frontend/src/assets/sources/gahhs-outpatient-clinic.jpg
new file mode 100644
index 00000000..b201e087
Binary files /dev/null and b/frontend/src/assets/sources/gahhs-outpatient-clinic.jpg differ
diff --git a/frontend/src/assets/sources/gahhs-urology.jpg b/frontend/src/assets/sources/gahhs-urology.jpg
new file mode 100644
index 00000000..eb44846a
Binary files /dev/null and b/frontend/src/assets/sources/gahhs-urology.jpg differ
diff --git a/frontend/src/assets/sources/gailey-eye-clinic-ltd.jpg b/frontend/src/assets/sources/gailey-eye-clinic-ltd.jpg
new file mode 100644
index 00000000..18e2c9d1
Binary files /dev/null and b/frontend/src/assets/sources/gailey-eye-clinic-ltd.jpg differ
diff --git a/frontend/src/assets/sources/gailey-eye-surgery-decatur-llc.jpg b/frontend/src/assets/sources/gailey-eye-surgery-decatur-llc.jpg
new file mode 100644
index 00000000..7c2e9034
Binary files /dev/null and b/frontend/src/assets/sources/gailey-eye-surgery-decatur-llc.jpg differ
diff --git a/frontend/src/assets/sources/gailey-eye-surgery-decatur-llc.png b/frontend/src/assets/sources/gailey-eye-surgery-decatur-llc.png
new file mode 100644
index 00000000..d9854bdf
Binary files /dev/null and b/frontend/src/assets/sources/gailey-eye-surgery-decatur-llc.png differ
diff --git a/frontend/src/assets/sources/galloway-surgery-center.jpg b/frontend/src/assets/sources/galloway-surgery-center.jpg
new file mode 100644
index 00000000..86e6b7c9
Binary files /dev/null and b/frontend/src/assets/sources/galloway-surgery-center.jpg differ
diff --git a/frontend/src/assets/sources/galloway-surgery-center.png b/frontend/src/assets/sources/galloway-surgery-center.png
new file mode 100644
index 00000000..478af062
Binary files /dev/null and b/frontend/src/assets/sources/galloway-surgery-center.png differ
diff --git a/frontend/src/assets/sources/gapho.jpg b/frontend/src/assets/sources/gapho.jpg
new file mode 100644
index 00000000..eb44846a
Binary files /dev/null and b/frontend/src/assets/sources/gapho.jpg differ
diff --git a/frontend/src/assets/sources/garden-state-bariatrics.jpg b/frontend/src/assets/sources/garden-state-bariatrics.jpg
new file mode 100644
index 00000000..dceba892
Binary files /dev/null and b/frontend/src/assets/sources/garden-state-bariatrics.jpg differ
diff --git a/frontend/src/assets/sources/gardner-family-care-corp.png b/frontend/src/assets/sources/gardner-family-care-corp.png
new file mode 100644
index 00000000..42387f44
Binary files /dev/null and b/frontend/src/assets/sources/gardner-family-care-corp.png differ
diff --git a/frontend/src/assets/sources/garland-isd-clinic.png b/frontend/src/assets/sources/garland-isd-clinic.png
new file mode 100644
index 00000000..1963fef7
Binary files /dev/null and b/frontend/src/assets/sources/garland-isd-clinic.png differ
diff --git a/frontend/src/assets/sources/garner-dermatology.png b/frontend/src/assets/sources/garner-dermatology.png
new file mode 100644
index 00000000..6455a75a
Binary files /dev/null and b/frontend/src/assets/sources/garner-dermatology.png differ
diff --git a/frontend/src/assets/sources/garrison-family-physicians-pc.png b/frontend/src/assets/sources/garrison-family-physicians-pc.png
new file mode 100644
index 00000000..44b49d5d
Binary files /dev/null and b/frontend/src/assets/sources/garrison-family-physicians-pc.png differ
diff --git a/frontend/src/assets/sources/gastro-diagnostics-of-northern-nj.png b/frontend/src/assets/sources/gastro-diagnostics-of-northern-nj.png
new file mode 100644
index 00000000..f7a2ecb3
Binary files /dev/null and b/frontend/src/assets/sources/gastro-diagnostics-of-northern-nj.png differ
diff --git a/frontend/src/assets/sources/gastro-intestinal-consultants-of-manhattan-p-a.png b/frontend/src/assets/sources/gastro-intestinal-consultants-of-manhattan-p-a.png
new file mode 100644
index 00000000..a8110780
Binary files /dev/null and b/frontend/src/assets/sources/gastro-intestinal-consultants-of-manhattan-p-a.png differ
diff --git a/frontend/src/assets/sources/gastro-pediatric-partners.png b/frontend/src/assets/sources/gastro-pediatric-partners.png
new file mode 100644
index 00000000..df87632f
Binary files /dev/null and b/frontend/src/assets/sources/gastro-pediatric-partners.png differ
diff --git a/frontend/src/assets/sources/gastrodiagnostics-a-medical-group.png b/frontend/src/assets/sources/gastrodiagnostics-a-medical-group.png
new file mode 100644
index 00000000..3b67e3cf
Binary files /dev/null and b/frontend/src/assets/sources/gastrodiagnostics-a-medical-group.png differ
diff --git a/frontend/src/assets/sources/gastroenterology-and-hepatology-special.png b/frontend/src/assets/sources/gastroenterology-and-hepatology-special.png
new file mode 100644
index 00000000..3ff4b48e
Binary files /dev/null and b/frontend/src/assets/sources/gastroenterology-and-hepatology-special.png differ
diff --git a/frontend/src/assets/sources/gastroenterology-associates.png b/frontend/src/assets/sources/gastroenterology-associates.png
new file mode 100644
index 00000000..822930b6
Binary files /dev/null and b/frontend/src/assets/sources/gastroenterology-associates.png differ
diff --git a/frontend/src/assets/sources/gastroenterology-center-ms.png b/frontend/src/assets/sources/gastroenterology-center-ms.png
new file mode 100644
index 00000000..85d6e4ad
Binary files /dev/null and b/frontend/src/assets/sources/gastroenterology-center-ms.png differ
diff --git a/frontend/src/assets/sources/gastroenterology-center-of-connecticut.png b/frontend/src/assets/sources/gastroenterology-center-of-connecticut.png
new file mode 100644
index 00000000..70657f2d
Binary files /dev/null and b/frontend/src/assets/sources/gastroenterology-center-of-connecticut.png differ
diff --git a/frontend/src/assets/sources/gastrointestinal-endoscopy-center.jpg b/frontend/src/assets/sources/gastrointestinal-endoscopy-center.jpg
new file mode 100644
index 00000000..1b6fda6c
Binary files /dev/null and b/frontend/src/assets/sources/gastrointestinal-endoscopy-center.jpg differ
diff --git a/frontend/src/assets/sources/gastrointestinal-endoscopy-center.png b/frontend/src/assets/sources/gastrointestinal-endoscopy-center.png
new file mode 100644
index 00000000..39efbb85
Binary files /dev/null and b/frontend/src/assets/sources/gastrointestinal-endoscopy-center.png differ
diff --git a/frontend/src/assets/sources/gc-usa-of-florida-llc.png b/frontend/src/assets/sources/gc-usa-of-florida-llc.png
new file mode 100644
index 00000000..bad356b8
Binary files /dev/null and b/frontend/src/assets/sources/gc-usa-of-florida-llc.png differ
diff --git a/frontend/src/assets/sources/gc-usa-of-florida-llc.svg b/frontend/src/assets/sources/gc-usa-of-florida-llc.svg
new file mode 100644
index 00000000..8abfec6d
--- /dev/null
+++ b/frontend/src/assets/sources/gc-usa-of-florida-llc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/geisinger-health-plan.svg b/frontend/src/assets/sources/geisinger-health-plan.svg
new file mode 100644
index 00000000..baf0c736
--- /dev/null
+++ b/frontend/src/assets/sources/geisinger-health-plan.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/geisinger-system-services.png b/frontend/src/assets/sources/geisinger-system-services.png
new file mode 100644
index 00000000..fbcea4db
Binary files /dev/null and b/frontend/src/assets/sources/geisinger-system-services.png differ
diff --git a/frontend/src/assets/sources/gela-aesthetics.jpg b/frontend/src/assets/sources/gela-aesthetics.jpg
new file mode 100644
index 00000000..690508e6
Binary files /dev/null and b/frontend/src/assets/sources/gela-aesthetics.jpg differ
diff --git a/frontend/src/assets/sources/geminus.svg b/frontend/src/assets/sources/geminus.svg
new file mode 100644
index 00000000..76c53bd2
--- /dev/null
+++ b/frontend/src/assets/sources/geminus.svg
@@ -0,0 +1,148 @@
+
+
+
diff --git a/frontend/src/assets/sources/general-john-j-pershing-memorial-hospital-association-dba-pershing-memorial-hospital.png b/frontend/src/assets/sources/general-john-j-pershing-memorial-hospital-association-dba-pershing-memorial-hospital.png
new file mode 100644
index 00000000..e5f2cdb1
Binary files /dev/null and b/frontend/src/assets/sources/general-john-j-pershing-memorial-hospital-association-dba-pershing-memorial-hospital.png differ
diff --git a/frontend/src/assets/sources/general-surgical-associates-p-c.png b/frontend/src/assets/sources/general-surgical-associates-p-c.png
new file mode 100644
index 00000000..d7a2f7ee
Binary files /dev/null and b/frontend/src/assets/sources/general-surgical-associates-p-c.png differ
diff --git a/frontend/src/assets/sources/genesee-community-health-center.jpg b/frontend/src/assets/sources/genesee-community-health-center.jpg
new file mode 100644
index 00000000..d565b700
Binary files /dev/null and b/frontend/src/assets/sources/genesee-community-health-center.jpg differ
diff --git a/frontend/src/assets/sources/genesee-community-health-center.png b/frontend/src/assets/sources/genesee-community-health-center.png
new file mode 100644
index 00000000..ebb9540f
Binary files /dev/null and b/frontend/src/assets/sources/genesee-community-health-center.png differ
diff --git a/frontend/src/assets/sources/genesis-health-system.png b/frontend/src/assets/sources/genesis-health-system.png
new file mode 100644
index 00000000..6f946b6f
Binary files /dev/null and b/frontend/src/assets/sources/genesis-health-system.png differ
diff --git a/frontend/src/assets/sources/george-l-mee-memorial-hospital.png b/frontend/src/assets/sources/george-l-mee-memorial-hospital.png
new file mode 100644
index 00000000..b873a29d
Binary files /dev/null and b/frontend/src/assets/sources/george-l-mee-memorial-hospital.png differ
diff --git a/frontend/src/assets/sources/georgia-center-for-women.png b/frontend/src/assets/sources/georgia-center-for-women.png
new file mode 100644
index 00000000..e73c7f7b
Binary files /dev/null and b/frontend/src/assets/sources/georgia-center-for-women.png differ
diff --git a/frontend/src/assets/sources/georgia-eye-institute-of-the-southeast.jpg b/frontend/src/assets/sources/georgia-eye-institute-of-the-southeast.jpg
new file mode 100644
index 00000000..5a2c7b3f
Binary files /dev/null and b/frontend/src/assets/sources/georgia-eye-institute-of-the-southeast.jpg differ
diff --git a/frontend/src/assets/sources/georgia-eye-institute-surgery-center.png b/frontend/src/assets/sources/georgia-eye-institute-surgery-center.png
new file mode 100644
index 00000000..293733a2
Binary files /dev/null and b/frontend/src/assets/sources/georgia-eye-institute-surgery-center.png differ
diff --git a/frontend/src/assets/sources/georgia-urology-asc.png b/frontend/src/assets/sources/georgia-urology-asc.png
new file mode 100644
index 00000000..8d59e0c4
Binary files /dev/null and b/frontend/src/assets/sources/georgia-urology-asc.png differ
diff --git a/frontend/src/assets/sources/georgia-urology-pa.png b/frontend/src/assets/sources/georgia-urology-pa.png
new file mode 100644
index 00000000..8d59e0c4
Binary files /dev/null and b/frontend/src/assets/sources/georgia-urology-pa.png differ
diff --git a/frontend/src/assets/sources/gerald-champion-regional-medical-center.jpg b/frontend/src/assets/sources/gerald-champion-regional-medical-center.jpg
new file mode 100644
index 00000000..37a67121
Binary files /dev/null and b/frontend/src/assets/sources/gerald-champion-regional-medical-center.jpg differ
diff --git a/frontend/src/assets/sources/gerald-champion-regional-medical-center.png b/frontend/src/assets/sources/gerald-champion-regional-medical-center.png
new file mode 100644
index 00000000..dab98f2f
Binary files /dev/null and b/frontend/src/assets/sources/gerald-champion-regional-medical-center.png differ
diff --git a/frontend/src/assets/sources/gerald-j-alexander-md.png b/frontend/src/assets/sources/gerald-j-alexander-md.png
new file mode 100644
index 00000000..7e274c35
Binary files /dev/null and b/frontend/src/assets/sources/gerald-j-alexander-md.png differ
diff --git a/frontend/src/assets/sources/gerardo-b-martin-inc.png b/frontend/src/assets/sources/gerardo-b-martin-inc.png
new file mode 100644
index 00000000..520a6026
Binary files /dev/null and b/frontend/src/assets/sources/gerardo-b-martin-inc.png differ
diff --git a/frontend/src/assets/sources/gerry-medical-center.png b/frontend/src/assets/sources/gerry-medical-center.png
new file mode 100644
index 00000000..038a1c9b
Binary files /dev/null and b/frontend/src/assets/sources/gerry-medical-center.png differ
diff --git a/frontend/src/assets/sources/get-fit-get-healthy.jpg b/frontend/src/assets/sources/get-fit-get-healthy.jpg
new file mode 100644
index 00000000..a6161ad6
Binary files /dev/null and b/frontend/src/assets/sources/get-fit-get-healthy.jpg differ
diff --git a/frontend/src/assets/sources/getwell-family-medicine.png b/frontend/src/assets/sources/getwell-family-medicine.png
new file mode 100644
index 00000000..70f9b4a0
Binary files /dev/null and b/frontend/src/assets/sources/getwell-family-medicine.png differ
diff --git a/frontend/src/assets/sources/gi-healthcare-llc.jpg b/frontend/src/assets/sources/gi-healthcare-llc.jpg
new file mode 100644
index 00000000..1dd277b3
Binary files /dev/null and b/frontend/src/assets/sources/gi-healthcare-llc.jpg differ
diff --git a/frontend/src/assets/sources/gibbon.png b/frontend/src/assets/sources/gibbon.png
new file mode 100644
index 00000000..d5c3d544
Binary files /dev/null and b/frontend/src/assets/sources/gibbon.png differ
diff --git a/frontend/src/assets/sources/gibson-area-family-medicine.jpg b/frontend/src/assets/sources/gibson-area-family-medicine.jpg
new file mode 100644
index 00000000..eb44846a
Binary files /dev/null and b/frontend/src/assets/sources/gibson-area-family-medicine.jpg differ
diff --git a/frontend/src/assets/sources/gibson-area-hospital-cardiology.jpg b/frontend/src/assets/sources/gibson-area-hospital-cardiology.jpg
new file mode 100644
index 00000000..eb44846a
Binary files /dev/null and b/frontend/src/assets/sources/gibson-area-hospital-cardiology.jpg differ
diff --git a/frontend/src/assets/sources/gibson-area-hospital-general-surgery.jpg b/frontend/src/assets/sources/gibson-area-hospital-general-surgery.jpg
new file mode 100644
index 00000000..eb44846a
Binary files /dev/null and b/frontend/src/assets/sources/gibson-area-hospital-general-surgery.jpg differ
diff --git a/frontend/src/assets/sources/gibson-area-hospital-pain-clinic.jpg b/frontend/src/assets/sources/gibson-area-hospital-pain-clinic.jpg
new file mode 100644
index 00000000..eb44846a
Binary files /dev/null and b/frontend/src/assets/sources/gibson-area-hospital-pain-clinic.jpg differ
diff --git a/frontend/src/assets/sources/gibson-area-hospital-therapy.jpg b/frontend/src/assets/sources/gibson-area-hospital-therapy.jpg
new file mode 100644
index 00000000..7f548b62
Binary files /dev/null and b/frontend/src/assets/sources/gibson-area-hospital-therapy.jpg differ
diff --git a/frontend/src/assets/sources/gibson-area-medical-clinic-8.jpeg b/frontend/src/assets/sources/gibson-area-medical-clinic-8.jpeg
new file mode 100644
index 00000000..eb44846a
Binary files /dev/null and b/frontend/src/assets/sources/gibson-area-medical-clinic-8.jpeg differ
diff --git a/frontend/src/assets/sources/gibson-area-medical-clinic-8.jpg b/frontend/src/assets/sources/gibson-area-medical-clinic-8.jpg
new file mode 100644
index 00000000..8c3d96c7
Binary files /dev/null and b/frontend/src/assets/sources/gibson-area-medical-clinic-8.jpg differ
diff --git a/frontend/src/assets/sources/gibson-area-medical-clinic.jpg b/frontend/src/assets/sources/gibson-area-medical-clinic.jpg
new file mode 100644
index 00000000..2b7db9aa
Binary files /dev/null and b/frontend/src/assets/sources/gibson-area-medical-clinic.jpg differ
diff --git a/frontend/src/assets/sources/gibson-area-medical-clinic.png b/frontend/src/assets/sources/gibson-area-medical-clinic.png
new file mode 100644
index 00000000..eb44846a
Binary files /dev/null and b/frontend/src/assets/sources/gibson-area-medical-clinic.png differ
diff --git a/frontend/src/assets/sources/gibson-area-primary-care.jpg b/frontend/src/assets/sources/gibson-area-primary-care.jpg
new file mode 100644
index 00000000..eb44846a
Binary files /dev/null and b/frontend/src/assets/sources/gibson-area-primary-care.jpg differ
diff --git a/frontend/src/assets/sources/gibson-city-clinic.jpg b/frontend/src/assets/sources/gibson-city-clinic.jpg
new file mode 100644
index 00000000..eb44846a
Binary files /dev/null and b/frontend/src/assets/sources/gibson-city-clinic.jpg differ
diff --git a/frontend/src/assets/sources/gibson-city-weekend-clinic.png b/frontend/src/assets/sources/gibson-city-weekend-clinic.png
new file mode 100644
index 00000000..9325b032
Binary files /dev/null and b/frontend/src/assets/sources/gibson-city-weekend-clinic.png differ
diff --git a/frontend/src/assets/sources/gillette-childrens-specialty-healthcare.svg b/frontend/src/assets/sources/gillette-childrens-specialty-healthcare.svg
new file mode 100644
index 00000000..90bbc7ef
--- /dev/null
+++ b/frontend/src/assets/sources/gillette-childrens-specialty-healthcare.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/glacier-pediatrics.png b/frontend/src/assets/sources/glacier-pediatrics.png
new file mode 100644
index 00000000..fd11bf79
Binary files /dev/null and b/frontend/src/assets/sources/glacier-pediatrics.png differ
diff --git a/frontend/src/assets/sources/glendora-digestive-disease-institute.png b/frontend/src/assets/sources/glendora-digestive-disease-institute.png
new file mode 100644
index 00000000..7beaae82
Binary files /dev/null and b/frontend/src/assets/sources/glendora-digestive-disease-institute.png differ
diff --git a/frontend/src/assets/sources/glendora-pediatric-medical-group.png b/frontend/src/assets/sources/glendora-pediatric-medical-group.png
new file mode 100644
index 00000000..e53a8f85
Binary files /dev/null and b/frontend/src/assets/sources/glendora-pediatric-medical-group.png differ
diff --git a/frontend/src/assets/sources/glennville-eye-surgery-center.jpg b/frontend/src/assets/sources/glennville-eye-surgery-center.jpg
new file mode 100644
index 00000000..49b7a0d3
Binary files /dev/null and b/frontend/src/assets/sources/glennville-eye-surgery-center.jpg differ
diff --git a/frontend/src/assets/sources/glennville-eye-surgery-center.png b/frontend/src/assets/sources/glennville-eye-surgery-center.png
new file mode 100644
index 00000000..ed53f8d4
Binary files /dev/null and b/frontend/src/assets/sources/glennville-eye-surgery-center.png differ
diff --git a/frontend/src/assets/sources/glens-falls-hospital.jpeg b/frontend/src/assets/sources/glens-falls-hospital.jpeg
new file mode 100644
index 00000000..5c49e55c
Binary files /dev/null and b/frontend/src/assets/sources/glens-falls-hospital.jpeg differ
diff --git a/frontend/src/assets/sources/glens-falls-hospital.jpg b/frontend/src/assets/sources/glens-falls-hospital.jpg
new file mode 100644
index 00000000..326bb0f5
Binary files /dev/null and b/frontend/src/assets/sources/glens-falls-hospital.jpg differ
diff --git a/frontend/src/assets/sources/gnp-home-visit.png b/frontend/src/assets/sources/gnp-home-visit.png
new file mode 100644
index 00000000..9f908e24
Binary files /dev/null and b/frontend/src/assets/sources/gnp-home-visit.png differ
diff --git a/frontend/src/assets/sources/gonzales-healthcare-systems.jpg b/frontend/src/assets/sources/gonzales-healthcare-systems.jpg
new file mode 100644
index 00000000..487dc8f6
Binary files /dev/null and b/frontend/src/assets/sources/gonzales-healthcare-systems.jpg differ
diff --git a/frontend/src/assets/sources/good-shepherd-rehabilitation-network.jpg b/frontend/src/assets/sources/good-shepherd-rehabilitation-network.jpg
new file mode 100644
index 00000000..8fb68aa3
Binary files /dev/null and b/frontend/src/assets/sources/good-shepherd-rehabilitation-network.jpg differ
diff --git a/frontend/src/assets/sources/goodman-campbell-brain-and-spine.png b/frontend/src/assets/sources/goodman-campbell-brain-and-spine.png
new file mode 100644
index 00000000..85f9cd20
Binary files /dev/null and b/frontend/src/assets/sources/goodman-campbell-brain-and-spine.png differ
diff --git a/frontend/src/assets/sources/goodman-campbell-brain-and-spine.svg b/frontend/src/assets/sources/goodman-campbell-brain-and-spine.svg
new file mode 100644
index 00000000..2bd71f37
--- /dev/null
+++ b/frontend/src/assets/sources/goodman-campbell-brain-and-spine.svg
@@ -0,0 +1,12 @@
+
+
diff --git a/frontend/src/assets/sources/goose-creek-pediatrics.jpg b/frontend/src/assets/sources/goose-creek-pediatrics.jpg
new file mode 100644
index 00000000..433891ce
Binary files /dev/null and b/frontend/src/assets/sources/goose-creek-pediatrics.jpg differ
diff --git a/frontend/src/assets/sources/goose-creek-pediatrics.png b/frontend/src/assets/sources/goose-creek-pediatrics.png
new file mode 100644
index 00000000..62ec09bf
Binary files /dev/null and b/frontend/src/assets/sources/goose-creek-pediatrics.png differ
diff --git a/frontend/src/assets/sources/gorden-eye-associates.png b/frontend/src/assets/sources/gorden-eye-associates.png
new file mode 100644
index 00000000..f826a605
Binary files /dev/null and b/frontend/src/assets/sources/gorden-eye-associates.png differ
diff --git a/frontend/src/assets/sources/governors-place-ambulatory-surgery-ctr.jpg b/frontend/src/assets/sources/governors-place-ambulatory-surgery-ctr.jpg
new file mode 100644
index 00000000..be34f999
Binary files /dev/null and b/frontend/src/assets/sources/governors-place-ambulatory-surgery-ctr.jpg differ
diff --git a/frontend/src/assets/sources/grace-community-health-center.png b/frontend/src/assets/sources/grace-community-health-center.png
new file mode 100644
index 00000000..6699a3d3
Binary files /dev/null and b/frontend/src/assets/sources/grace-community-health-center.png differ
diff --git a/frontend/src/assets/sources/grace-family-health-inc.png b/frontend/src/assets/sources/grace-family-health-inc.png
new file mode 100644
index 00000000..d77c1bfa
Binary files /dev/null and b/frontend/src/assets/sources/grace-family-health-inc.png differ
diff --git a/frontend/src/assets/sources/grace-health.png b/frontend/src/assets/sources/grace-health.png
new file mode 100644
index 00000000..79f4161d
Binary files /dev/null and b/frontend/src/assets/sources/grace-health.png differ
diff --git a/frontend/src/assets/sources/grace-ob-gyn.png b/frontend/src/assets/sources/grace-ob-gyn.png
new file mode 100644
index 00000000..f2ea211d
Binary files /dev/null and b/frontend/src/assets/sources/grace-ob-gyn.png differ
diff --git a/frontend/src/assets/sources/grand-health-partners.png b/frontend/src/assets/sources/grand-health-partners.png
new file mode 100644
index 00000000..c115e9b1
Binary files /dev/null and b/frontend/src/assets/sources/grand-health-partners.png differ
diff --git a/frontend/src/assets/sources/granite-peaks-endoscopy.png b/frontend/src/assets/sources/granite-peaks-endoscopy.png
new file mode 100644
index 00000000..6c840ddc
Binary files /dev/null and b/frontend/src/assets/sources/granite-peaks-endoscopy.png differ
diff --git a/frontend/src/assets/sources/granite-peaks-gastroenterology.png b/frontend/src/assets/sources/granite-peaks-gastroenterology.png
new file mode 100644
index 00000000..d62f1117
Binary files /dev/null and b/frontend/src/assets/sources/granite-peaks-gastroenterology.png differ
diff --git a/frontend/src/assets/sources/grantsville-mtn-laurel.png b/frontend/src/assets/sources/grantsville-mtn-laurel.png
new file mode 100644
index 00000000..24a25878
Binary files /dev/null and b/frontend/src/assets/sources/grantsville-mtn-laurel.png differ
diff --git a/frontend/src/assets/sources/graphic-packaging-international-llc.png b/frontend/src/assets/sources/graphic-packaging-international-llc.png
new file mode 100644
index 00000000..bd09a5da
Binary files /dev/null and b/frontend/src/assets/sources/graphic-packaging-international-llc.png differ
diff --git a/frontend/src/assets/sources/graystone-eye-surgery-center.png b/frontend/src/assets/sources/graystone-eye-surgery-center.png
new file mode 100644
index 00000000..9b60b76c
Binary files /dev/null and b/frontend/src/assets/sources/graystone-eye-surgery-center.png differ
diff --git a/frontend/src/assets/sources/graystone-ophthalmology-associates-pa.png b/frontend/src/assets/sources/graystone-ophthalmology-associates-pa.png
new file mode 100644
index 00000000..62fec286
Binary files /dev/null and b/frontend/src/assets/sources/graystone-ophthalmology-associates-pa.png differ
diff --git a/frontend/src/assets/sources/great-lakes-orthopaedic-center.jpg b/frontend/src/assets/sources/great-lakes-orthopaedic-center.jpg
new file mode 100644
index 00000000..05085036
Binary files /dev/null and b/frontend/src/assets/sources/great-lakes-orthopaedic-center.jpg differ
diff --git a/frontend/src/assets/sources/great-lakes-orthopaedic-center.png b/frontend/src/assets/sources/great-lakes-orthopaedic-center.png
new file mode 100644
index 00000000..e03c6076
Binary files /dev/null and b/frontend/src/assets/sources/great-lakes-orthopaedic-center.png differ
diff --git a/frontend/src/assets/sources/great-river-health-system.png b/frontend/src/assets/sources/great-river-health-system.png
new file mode 100644
index 00000000..4454c4de
Binary files /dev/null and b/frontend/src/assets/sources/great-river-health-system.png differ
diff --git a/frontend/src/assets/sources/greater-family-health.png b/frontend/src/assets/sources/greater-family-health.png
new file mode 100644
index 00000000..75ff640f
Binary files /dev/null and b/frontend/src/assets/sources/greater-family-health.png differ
diff --git a/frontend/src/assets/sources/greater-newport-physicians-discharge-cl.jpg b/frontend/src/assets/sources/greater-newport-physicians-discharge-cl.jpg
new file mode 100644
index 00000000..6daf0c57
Binary files /dev/null and b/frontend/src/assets/sources/greater-newport-physicians-discharge-cl.jpg differ
diff --git a/frontend/src/assets/sources/greater-newport-physicians-discharge-cl.png b/frontend/src/assets/sources/greater-newport-physicians-discharge-cl.png
new file mode 100644
index 00000000..8ccc940b
Binary files /dev/null and b/frontend/src/assets/sources/greater-newport-physicians-discharge-cl.png differ
diff --git a/frontend/src/assets/sources/greater-ny-ophthalmology-care.svg b/frontend/src/assets/sources/greater-ny-ophthalmology-care.svg
new file mode 100644
index 00000000..5eedbf45
--- /dev/null
+++ b/frontend/src/assets/sources/greater-ny-ophthalmology-care.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/greater-philadelphia-health-action-inc.png b/frontend/src/assets/sources/greater-philadelphia-health-action-inc.png
new file mode 100644
index 00000000..a308d5d2
Binary files /dev/null and b/frontend/src/assets/sources/greater-philadelphia-health-action-inc.png differ
diff --git a/frontend/src/assets/sources/greater-pittsburgh-surgery-access-llc.jpg b/frontend/src/assets/sources/greater-pittsburgh-surgery-access-llc.jpg
new file mode 100644
index 00000000..c2f83cce
Binary files /dev/null and b/frontend/src/assets/sources/greater-pittsburgh-surgery-access-llc.jpg differ
diff --git a/frontend/src/assets/sources/greater-pittsburgh-surgery-llc.png b/frontend/src/assets/sources/greater-pittsburgh-surgery-llc.png
new file mode 100644
index 00000000..a357d32b
Binary files /dev/null and b/frontend/src/assets/sources/greater-pittsburgh-surgery-llc.png differ
diff --git a/frontend/src/assets/sources/greater-portland-health.png b/frontend/src/assets/sources/greater-portland-health.png
new file mode 100644
index 00000000..9dc5b77f
Binary files /dev/null and b/frontend/src/assets/sources/greater-portland-health.png differ
diff --git a/frontend/src/assets/sources/greater-salem-family-footcare-associates.png b/frontend/src/assets/sources/greater-salem-family-footcare-associates.png
new file mode 100644
index 00000000..d9758640
Binary files /dev/null and b/frontend/src/assets/sources/greater-salem-family-footcare-associates.png differ
diff --git a/frontend/src/assets/sources/green-surgery-center.jpg b/frontend/src/assets/sources/green-surgery-center.jpg
new file mode 100644
index 00000000..5a4db9d5
Binary files /dev/null and b/frontend/src/assets/sources/green-surgery-center.jpg differ
diff --git a/frontend/src/assets/sources/green-valley-hospital.jpg b/frontend/src/assets/sources/green-valley-hospital.jpg
new file mode 100644
index 00000000..4eed7e3c
Binary files /dev/null and b/frontend/src/assets/sources/green-valley-hospital.jpg differ
diff --git a/frontend/src/assets/sources/greenville-ent-and-allergy-associates-pa.png b/frontend/src/assets/sources/greenville-ent-and-allergy-associates-pa.png
new file mode 100644
index 00000000..b24dc346
Binary files /dev/null and b/frontend/src/assets/sources/greenville-ent-and-allergy-associates-pa.png differ
diff --git a/frontend/src/assets/sources/greenville-surgical-clinic-pa.png b/frontend/src/assets/sources/greenville-surgical-clinic-pa.png
new file mode 100644
index 00000000..c3db59d9
Binary files /dev/null and b/frontend/src/assets/sources/greenville-surgical-clinic-pa.png differ
diff --git a/frontend/src/assets/sources/greenwood-rheumatology.png b/frontend/src/assets/sources/greenwood-rheumatology.png
new file mode 100644
index 00000000..f3ada722
Binary files /dev/null and b/frontend/src/assets/sources/greenwood-rheumatology.png differ
diff --git a/frontend/src/assets/sources/gregory-c-mays-md-plc.png b/frontend/src/assets/sources/gregory-c-mays-md-plc.png
new file mode 100644
index 00000000..fd822a14
Binary files /dev/null and b/frontend/src/assets/sources/gregory-c-mays-md-plc.png differ
diff --git a/frontend/src/assets/sources/gregory-eye-associates-inc.jpg b/frontend/src/assets/sources/gregory-eye-associates-inc.jpg
new file mode 100644
index 00000000..0ebfc631
Binary files /dev/null and b/frontend/src/assets/sources/gregory-eye-associates-inc.jpg differ
diff --git a/frontend/src/assets/sources/grene-laser.jpg b/frontend/src/assets/sources/grene-laser.jpg
new file mode 100644
index 00000000..f6ad21b3
Binary files /dev/null and b/frontend/src/assets/sources/grene-laser.jpg differ
diff --git a/frontend/src/assets/sources/grhc-ambulatory.png b/frontend/src/assets/sources/grhc-ambulatory.png
new file mode 100644
index 00000000..e9c49b41
Binary files /dev/null and b/frontend/src/assets/sources/grhc-ambulatory.png differ
diff --git a/frontend/src/assets/sources/grhc-behavioral-health.jpg b/frontend/src/assets/sources/grhc-behavioral-health.jpg
new file mode 100644
index 00000000..2b076ea2
Binary files /dev/null and b/frontend/src/assets/sources/grhc-behavioral-health.jpg differ
diff --git a/frontend/src/assets/sources/griffin-and-reed-eye-care-a-medical-corp.png b/frontend/src/assets/sources/griffin-and-reed-eye-care-a-medical-corp.png
new file mode 100644
index 00000000..9c5d2735
Binary files /dev/null and b/frontend/src/assets/sources/griffin-and-reed-eye-care-a-medical-corp.png differ
diff --git a/frontend/src/assets/sources/grisell-memorial-hospital-district-1.png b/frontend/src/assets/sources/grisell-memorial-hospital-district-1.png
new file mode 100644
index 00000000..d6c80bd7
Binary files /dev/null and b/frontend/src/assets/sources/grisell-memorial-hospital-district-1.png differ
diff --git a/frontend/src/assets/sources/growth-unlimited-prof-llc.png b/frontend/src/assets/sources/growth-unlimited-prof-llc.png
new file mode 100644
index 00000000..0e461429
Binary files /dev/null and b/frontend/src/assets/sources/growth-unlimited-prof-llc.png differ
diff --git a/frontend/src/assets/sources/guillermo-valenzuela-md-pa.png b/frontend/src/assets/sources/guillermo-valenzuela-md-pa.png
new file mode 100644
index 00000000..d4cb364d
Binary files /dev/null and b/frontend/src/assets/sources/guillermo-valenzuela-md-pa.png differ
diff --git a/frontend/src/assets/sources/gulfcoast-spine-institute.svg b/frontend/src/assets/sources/gulfcoast-spine-institute.svg
new file mode 100644
index 00000000..e8a16e94
--- /dev/null
+++ b/frontend/src/assets/sources/gulfcoast-spine-institute.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/gulfshore-concierge-medicine.png b/frontend/src/assets/sources/gulfshore-concierge-medicine.png
new file mode 100644
index 00000000..3f2193d2
Binary files /dev/null and b/frontend/src/assets/sources/gulfshore-concierge-medicine.png differ
diff --git a/frontend/src/assets/sources/gwynedd-mercy-college.png b/frontend/src/assets/sources/gwynedd-mercy-college.png
new file mode 100644
index 00000000..784ffdf1
Binary files /dev/null and b/frontend/src/assets/sources/gwynedd-mercy-college.png differ
diff --git a/frontend/src/assets/sources/gyn-feminist-womens-health-center.jpg b/frontend/src/assets/sources/gyn-feminist-womens-health-center.jpg
new file mode 100644
index 00000000..75200782
Binary files /dev/null and b/frontend/src/assets/sources/gyn-feminist-womens-health-center.jpg differ
diff --git a/frontend/src/assets/sources/gyn-feminist-womens-health-center.png b/frontend/src/assets/sources/gyn-feminist-womens-health-center.png
new file mode 100644
index 00000000..4b637c91
Binary files /dev/null and b/frontend/src/assets/sources/gyn-feminist-womens-health-center.png differ
diff --git a/frontend/src/assets/sources/gynecologic-and-reconstructive-surgery.jpg b/frontend/src/assets/sources/gynecologic-and-reconstructive-surgery.jpg
new file mode 100644
index 00000000..667106e9
Binary files /dev/null and b/frontend/src/assets/sources/gynecologic-and-reconstructive-surgery.jpg differ
diff --git a/frontend/src/assets/sources/h-lee-moffitt-cancer-center-and-research-institute.jpeg b/frontend/src/assets/sources/h-lee-moffitt-cancer-center-and-research-institute.jpeg
new file mode 100644
index 00000000..530c48b6
Binary files /dev/null and b/frontend/src/assets/sources/h-lee-moffitt-cancer-center-and-research-institute.jpeg differ
diff --git a/frontend/src/assets/sources/h-lee-moffitt-cancer-center-and-research-institute.jpg b/frontend/src/assets/sources/h-lee-moffitt-cancer-center-and-research-institute.jpg
new file mode 100644
index 00000000..3b7dec49
Binary files /dev/null and b/frontend/src/assets/sources/h-lee-moffitt-cancer-center-and-research-institute.jpg differ
diff --git a/frontend/src/assets/sources/hallandale-out-patient-surgical-center.png b/frontend/src/assets/sources/hallandale-out-patient-surgical-center.png
new file mode 100644
index 00000000..f769f928
Binary files /dev/null and b/frontend/src/assets/sources/hallandale-out-patient-surgical-center.png differ
diff --git a/frontend/src/assets/sources/hamilton-health-care-system.png b/frontend/src/assets/sources/hamilton-health-care-system.png
new file mode 100644
index 00000000..9f6e2d21
Binary files /dev/null and b/frontend/src/assets/sources/hamilton-health-care-system.png differ
diff --git a/frontend/src/assets/sources/hampton-care-center.png b/frontend/src/assets/sources/hampton-care-center.png
new file mode 100644
index 00000000..c719c28e
Binary files /dev/null and b/frontend/src/assets/sources/hampton-care-center.png differ
diff --git a/frontend/src/assets/sources/hampton-roads-ortho-spine-and-sports-med.png b/frontend/src/assets/sources/hampton-roads-ortho-spine-and-sports-med.png
new file mode 100644
index 00000000..50887382
Binary files /dev/null and b/frontend/src/assets/sources/hampton-roads-ortho-spine-and-sports-med.png differ
diff --git a/frontend/src/assets/sources/hani-i-salib-md.svg b/frontend/src/assets/sources/hani-i-salib-md.svg
new file mode 100644
index 00000000..2e7480ee
--- /dev/null
+++ b/frontend/src/assets/sources/hani-i-salib-md.svg
@@ -0,0 +1,224 @@
+
+
+
diff --git a/frontend/src/assets/sources/hanson-medical-group-inc.jpg b/frontend/src/assets/sources/hanson-medical-group-inc.jpg
new file mode 100644
index 00000000..c535a0fe
Binary files /dev/null and b/frontend/src/assets/sources/hanson-medical-group-inc.jpg differ
diff --git a/frontend/src/assets/sources/hany-k-zaki-m-d-inc.png b/frontend/src/assets/sources/hany-k-zaki-m-d-inc.png
new file mode 100644
index 00000000..f15ce931
Binary files /dev/null and b/frontend/src/assets/sources/hany-k-zaki-m-d-inc.png differ
diff --git a/frontend/src/assets/sources/harman-eye-center-dominion-eye-center.png b/frontend/src/assets/sources/harman-eye-center-dominion-eye-center.png
new file mode 100644
index 00000000..706b8763
Binary files /dev/null and b/frontend/src/assets/sources/harman-eye-center-dominion-eye-center.png differ
diff --git a/frontend/src/assets/sources/harold-gillespie-md.png b/frontend/src/assets/sources/harold-gillespie-md.png
new file mode 100644
index 00000000..037e673f
Binary files /dev/null and b/frontend/src/assets/sources/harold-gillespie-md.png differ
diff --git a/frontend/src/assets/sources/harris-and-batra-cardiology.jpg b/frontend/src/assets/sources/harris-and-batra-cardiology.jpg
new file mode 100644
index 00000000..43976dc1
Binary files /dev/null and b/frontend/src/assets/sources/harris-and-batra-cardiology.jpg differ
diff --git a/frontend/src/assets/sources/harrison-county-hospital.png b/frontend/src/assets/sources/harrison-county-hospital.png
new file mode 100644
index 00000000..d958eec8
Binary files /dev/null and b/frontend/src/assets/sources/harrison-county-hospital.png differ
diff --git a/frontend/src/assets/sources/harrison-county-hospital.svg b/frontend/src/assets/sources/harrison-county-hospital.svg
new file mode 100644
index 00000000..2bbe2665
--- /dev/null
+++ b/frontend/src/assets/sources/harrison-county-hospital.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/harvard-eye-associates.jpg b/frontend/src/assets/sources/harvard-eye-associates.jpg
new file mode 100644
index 00000000..4cbeeab9
Binary files /dev/null and b/frontend/src/assets/sources/harvard-eye-associates.jpg differ
diff --git a/frontend/src/assets/sources/harvard-eye-associates.png b/frontend/src/assets/sources/harvard-eye-associates.png
new file mode 100644
index 00000000..0c171367
Binary files /dev/null and b/frontend/src/assets/sources/harvard-eye-associates.png differ
diff --git a/frontend/src/assets/sources/hassan-a-kobaissi-dpm.jpg b/frontend/src/assets/sources/hassan-a-kobaissi-dpm.jpg
new file mode 100644
index 00000000..e36befc0
Binary files /dev/null and b/frontend/src/assets/sources/hassan-a-kobaissi-dpm.jpg differ
diff --git a/frontend/src/assets/sources/hawaii-health-systems-corp-kauai-region.png b/frontend/src/assets/sources/hawaii-health-systems-corp-kauai-region.png
new file mode 100644
index 00000000..3309238c
Binary files /dev/null and b/frontend/src/assets/sources/hawaii-health-systems-corp-kauai-region.png differ
diff --git a/frontend/src/assets/sources/hawthorne-eye-associates-pa.png b/frontend/src/assets/sources/hawthorne-eye-associates-pa.png
new file mode 100644
index 00000000..6b2fd7f3
Binary files /dev/null and b/frontend/src/assets/sources/hawthorne-eye-associates-pa.png differ
diff --git a/frontend/src/assets/sources/hazelden-betty-ford-foundation.png b/frontend/src/assets/sources/hazelden-betty-ford-foundation.png
new file mode 100644
index 00000000..76d00a90
Binary files /dev/null and b/frontend/src/assets/sources/hazelden-betty-ford-foundation.png differ
diff --git a/frontend/src/assets/sources/hca-florida-citrus-hospital.svg b/frontend/src/assets/sources/hca-florida-citrus-hospital.svg
new file mode 100644
index 00000000..516fc463
--- /dev/null
+++ b/frontend/src/assets/sources/hca-florida-citrus-hospital.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/head-and-neck-assoc-of-orange-county.png b/frontend/src/assets/sources/head-and-neck-assoc-of-orange-county.png
new file mode 100644
index 00000000..1de81fae
Binary files /dev/null and b/frontend/src/assets/sources/head-and-neck-assoc-of-orange-county.png differ
diff --git a/frontend/src/assets/sources/health-consulting-systems-inc.jpg b/frontend/src/assets/sources/health-consulting-systems-inc.jpg
new file mode 100644
index 00000000..405d5404
Binary files /dev/null and b/frontend/src/assets/sources/health-consulting-systems-inc.jpg differ
diff --git a/frontend/src/assets/sources/health-partners-management-group-inc.jpeg b/frontend/src/assets/sources/health-partners-management-group-inc.jpeg
new file mode 100644
index 00000000..3460a83a
Binary files /dev/null and b/frontend/src/assets/sources/health-partners-management-group-inc.jpeg differ
diff --git a/frontend/src/assets/sources/health-quest.jpg b/frontend/src/assets/sources/health-quest.jpg
new file mode 100644
index 00000000..69e2dd88
Binary files /dev/null and b/frontend/src/assets/sources/health-quest.jpg differ
diff --git a/frontend/src/assets/sources/health-quest.png b/frontend/src/assets/sources/health-quest.png
new file mode 100644
index 00000000..7e274c35
Binary files /dev/null and b/frontend/src/assets/sources/health-quest.png differ
diff --git a/frontend/src/assets/sources/health-solutions-medical.jpg b/frontend/src/assets/sources/health-solutions-medical.jpg
new file mode 100644
index 00000000..8bf67d07
Binary files /dev/null and b/frontend/src/assets/sources/health-solutions-medical.jpg differ
diff --git a/frontend/src/assets/sources/health-solutions-medical.png b/frontend/src/assets/sources/health-solutions-medical.png
new file mode 100644
index 00000000..be727616
Binary files /dev/null and b/frontend/src/assets/sources/health-solutions-medical.png differ
diff --git a/frontend/src/assets/sources/healthcare-exclusively-for-women.jpg b/frontend/src/assets/sources/healthcare-exclusively-for-women.jpg
new file mode 100644
index 00000000..8a851dd7
Binary files /dev/null and b/frontend/src/assets/sources/healthcare-exclusively-for-women.jpg differ
diff --git a/frontend/src/assets/sources/healthqare-asc.png b/frontend/src/assets/sources/healthqare-asc.png
new file mode 100644
index 00000000..52e479c9
Binary files /dev/null and b/frontend/src/assets/sources/healthqare-asc.png differ
diff --git a/frontend/src/assets/sources/healthsource-of-ohio.png b/frontend/src/assets/sources/healthsource-of-ohio.png
new file mode 100644
index 00000000..be673529
Binary files /dev/null and b/frontend/src/assets/sources/healthsource-of-ohio.png differ
diff --git a/frontend/src/assets/sources/healthwise-inc.svg b/frontend/src/assets/sources/healthwise-inc.svg
new file mode 100644
index 00000000..e451b1d9
--- /dev/null
+++ b/frontend/src/assets/sources/healthwise-inc.svg
@@ -0,0 +1,413 @@
+
+
+
diff --git a/frontend/src/assets/sources/healthworks-cc.jpg b/frontend/src/assets/sources/healthworks-cc.jpg
new file mode 100644
index 00000000..f85cd649
Binary files /dev/null and b/frontend/src/assets/sources/healthworks-cc.jpg differ
diff --git a/frontend/src/assets/sources/healthy-transitions.jpg b/frontend/src/assets/sources/healthy-transitions.jpg
new file mode 100644
index 00000000..56b5c2b4
Binary files /dev/null and b/frontend/src/assets/sources/healthy-transitions.jpg differ
diff --git a/frontend/src/assets/sources/heart-and-vascular-specialists-of-south-texas.png b/frontend/src/assets/sources/heart-and-vascular-specialists-of-south-texas.png
new file mode 100644
index 00000000..6b9b3e3b
Binary files /dev/null and b/frontend/src/assets/sources/heart-and-vascular-specialists-of-south-texas.png differ
diff --git a/frontend/src/assets/sources/heart-and-vascular-specialists-of-south-texas.svg b/frontend/src/assets/sources/heart-and-vascular-specialists-of-south-texas.svg
new file mode 100644
index 00000000..523aa141
--- /dev/null
+++ b/frontend/src/assets/sources/heart-and-vascular-specialists-of-south-texas.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/heart-center-of-north-texas-pa.jpg b/frontend/src/assets/sources/heart-center-of-north-texas-pa.jpg
new file mode 100644
index 00000000..73137cdd
Binary files /dev/null and b/frontend/src/assets/sources/heart-center-of-north-texas-pa.jpg differ
diff --git a/frontend/src/assets/sources/heart-center-of-north-texas-pa.png b/frontend/src/assets/sources/heart-center-of-north-texas-pa.png
new file mode 100644
index 00000000..459e6bed
Binary files /dev/null and b/frontend/src/assets/sources/heart-center-of-north-texas-pa.png differ
diff --git a/frontend/src/assets/sources/heart-center-pc.png b/frontend/src/assets/sources/heart-center-pc.png
new file mode 100644
index 00000000..3187e91d
Binary files /dev/null and b/frontend/src/assets/sources/heart-center-pc.png differ
diff --git a/frontend/src/assets/sources/heart-institute-of-east-texas-p-a.jpg b/frontend/src/assets/sources/heart-institute-of-east-texas-p-a.jpg
new file mode 100644
index 00000000..671e8c3d
Binary files /dev/null and b/frontend/src/assets/sources/heart-institute-of-east-texas-p-a.jpg differ
diff --git a/frontend/src/assets/sources/heart-of-illinois-ob-gyn.svg b/frontend/src/assets/sources/heart-of-illinois-ob-gyn.svg
new file mode 100644
index 00000000..c0c5161f
--- /dev/null
+++ b/frontend/src/assets/sources/heart-of-illinois-ob-gyn.svg
@@ -0,0 +1,90 @@
+
+
+
diff --git a/frontend/src/assets/sources/heartland-health-center-inc.png b/frontend/src/assets/sources/heartland-health-center-inc.png
new file mode 100644
index 00000000..ebc264f1
Binary files /dev/null and b/frontend/src/assets/sources/heartland-health-center-inc.png differ
diff --git a/frontend/src/assets/sources/heartland-surgical-specialists.jpg b/frontend/src/assets/sources/heartland-surgical-specialists.jpg
new file mode 100644
index 00000000..55ae893d
Binary files /dev/null and b/frontend/src/assets/sources/heartland-surgical-specialists.jpg differ
diff --git a/frontend/src/assets/sources/heartmasters-medical-associates-pc.png b/frontend/src/assets/sources/heartmasters-medical-associates-pc.png
new file mode 100644
index 00000000..f813271b
Binary files /dev/null and b/frontend/src/assets/sources/heartmasters-medical-associates-pc.png differ
diff --git a/frontend/src/assets/sources/heaton-eye-associates.jpg b/frontend/src/assets/sources/heaton-eye-associates.jpg
new file mode 100644
index 00000000..5d4b3437
Binary files /dev/null and b/frontend/src/assets/sources/heaton-eye-associates.jpg differ
diff --git a/frontend/src/assets/sources/heaton-laser-and-surgery-center.png b/frontend/src/assets/sources/heaton-laser-and-surgery-center.png
new file mode 100644
index 00000000..94beca2e
Binary files /dev/null and b/frontend/src/assets/sources/heaton-laser-and-surgery-center.png differ
diff --git a/frontend/src/assets/sources/heidelberg-dermatology.png b/frontend/src/assets/sources/heidelberg-dermatology.png
new file mode 100644
index 00000000..a67ff292
Binary files /dev/null and b/frontend/src/assets/sources/heidelberg-dermatology.png differ
diff --git a/frontend/src/assets/sources/hematology-oncology-specialists.svg b/frontend/src/assets/sources/hematology-oncology-specialists.svg
new file mode 100644
index 00000000..9d448527
--- /dev/null
+++ b/frontend/src/assets/sources/hematology-oncology-specialists.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/hemchand-kolli-md.png b/frontend/src/assets/sources/hemchand-kolli-md.png
new file mode 100644
index 00000000..89925127
Binary files /dev/null and b/frontend/src/assets/sources/hemchand-kolli-md.png differ
diff --git a/frontend/src/assets/sources/hemphill-county-hospital.jpg b/frontend/src/assets/sources/hemphill-county-hospital.jpg
new file mode 100644
index 00000000..0df0f14d
Binary files /dev/null and b/frontend/src/assets/sources/hemphill-county-hospital.jpg differ
diff --git a/frontend/src/assets/sources/henry-a-pretus-md.png b/frontend/src/assets/sources/henry-a-pretus-md.png
new file mode 100644
index 00000000..14682596
Binary files /dev/null and b/frontend/src/assets/sources/henry-a-pretus-md.png differ
diff --git a/frontend/src/assets/sources/henry-county-memorial-hospital.png b/frontend/src/assets/sources/henry-county-memorial-hospital.png
new file mode 100644
index 00000000..19fbeab1
Binary files /dev/null and b/frontend/src/assets/sources/henry-county-memorial-hospital.png differ
diff --git a/frontend/src/assets/sources/her-health-ob-gyn.jpg b/frontend/src/assets/sources/her-health-ob-gyn.jpg
new file mode 100644
index 00000000..bb068ca1
Binary files /dev/null and b/frontend/src/assets/sources/her-health-ob-gyn.jpg differ
diff --git a/frontend/src/assets/sources/herbert-h-lee-md-mph-inc.png b/frontend/src/assets/sources/herbert-h-lee-md-mph-inc.png
new file mode 100644
index 00000000..3c09f245
Binary files /dev/null and b/frontend/src/assets/sources/herbert-h-lee-md-mph-inc.png differ
diff --git a/frontend/src/assets/sources/hereford-regional-medical-center.png b/frontend/src/assets/sources/hereford-regional-medical-center.png
new file mode 100644
index 00000000..9a802e79
Binary files /dev/null and b/frontend/src/assets/sources/hereford-regional-medical-center.png differ
diff --git a/frontend/src/assets/sources/heritage-health.png b/frontend/src/assets/sources/heritage-health.png
new file mode 100644
index 00000000..8a5e0da8
Binary files /dev/null and b/frontend/src/assets/sources/heritage-health.png differ
diff --git a/frontend/src/assets/sources/heritage-medical-associates-pa.png b/frontend/src/assets/sources/heritage-medical-associates-pa.png
new file mode 100644
index 00000000..bef3fcd6
Binary files /dev/null and b/frontend/src/assets/sources/heritage-medical-associates-pa.png differ
diff --git a/frontend/src/assets/sources/hermann-area-district-hospital.png b/frontend/src/assets/sources/hermann-area-district-hospital.png
new file mode 100644
index 00000000..6b59189e
Binary files /dev/null and b/frontend/src/assets/sources/hermann-area-district-hospital.png differ
diff --git a/frontend/src/assets/sources/herr-kostic-medical-group.svg b/frontend/src/assets/sources/herr-kostic-medical-group.svg
new file mode 100644
index 00000000..2e7480ee
--- /dev/null
+++ b/frontend/src/assets/sources/herr-kostic-medical-group.svg
@@ -0,0 +1,224 @@
+
+
+
diff --git a/frontend/src/assets/sources/hhp-internal-medicine-associates.png b/frontend/src/assets/sources/hhp-internal-medicine-associates.png
new file mode 100644
index 00000000..55fed56e
Binary files /dev/null and b/frontend/src/assets/sources/hhp-internal-medicine-associates.png differ
diff --git a/frontend/src/assets/sources/highland-clinic-apmc.jpg b/frontend/src/assets/sources/highland-clinic-apmc.jpg
new file mode 100644
index 00000000..3ab27c47
Binary files /dev/null and b/frontend/src/assets/sources/highland-clinic-apmc.jpg differ
diff --git a/frontend/src/assets/sources/highland-clinic-pharmacy-llc.png b/frontend/src/assets/sources/highland-clinic-pharmacy-llc.png
new file mode 100644
index 00000000..151b9c55
Binary files /dev/null and b/frontend/src/assets/sources/highland-clinic-pharmacy-llc.png differ
diff --git a/frontend/src/assets/sources/highland-medical-pc.png b/frontend/src/assets/sources/highland-medical-pc.png
new file mode 100644
index 00000000..db0f980b
Binary files /dev/null and b/frontend/src/assets/sources/highland-medical-pc.png differ
diff --git a/frontend/src/assets/sources/hill-country-maternal-fetal-medicine.svg b/frontend/src/assets/sources/hill-country-maternal-fetal-medicine.svg
new file mode 100644
index 00000000..a31ab221
--- /dev/null
+++ b/frontend/src/assets/sources/hill-country-maternal-fetal-medicine.svg
@@ -0,0 +1,84 @@
+
+
+
diff --git a/frontend/src/assets/sources/hillsboro-eye-clinic-pc.jpg b/frontend/src/assets/sources/hillsboro-eye-clinic-pc.jpg
new file mode 100644
index 00000000..39e61bbe
Binary files /dev/null and b/frontend/src/assets/sources/hillsboro-eye-clinic-pc.jpg differ
diff --git a/frontend/src/assets/sources/hillsboro-gastroenterology-p-c.png b/frontend/src/assets/sources/hillsboro-gastroenterology-p-c.png
new file mode 100644
index 00000000..05b97917
Binary files /dev/null and b/frontend/src/assets/sources/hillsboro-gastroenterology-p-c.png differ
diff --git a/frontend/src/assets/sources/hinsdale-eye-center-llc.png b/frontend/src/assets/sources/hinsdale-eye-center-llc.png
new file mode 100644
index 00000000..f1f8a54c
Binary files /dev/null and b/frontend/src/assets/sources/hinsdale-eye-center-llc.png differ
diff --git a/frontend/src/assets/sources/hiren-patel-md.png b/frontend/src/assets/sources/hiren-patel-md.png
new file mode 100644
index 00000000..6ab85822
Binary files /dev/null and b/frontend/src/assets/sources/hiren-patel-md.png differ
diff --git a/frontend/src/assets/sources/hm-medical-inc-a-professional-medical-c.png b/frontend/src/assets/sources/hm-medical-inc-a-professional-medical-c.png
new file mode 100644
index 00000000..ac9a9209
Binary files /dev/null and b/frontend/src/assets/sources/hm-medical-inc-a-professional-medical-c.png differ
diff --git a/frontend/src/assets/sources/hmm-reports.jpg b/frontend/src/assets/sources/hmm-reports.jpg
new file mode 100644
index 00000000..ad702156
Binary files /dev/null and b/frontend/src/assets/sources/hmm-reports.jpg differ
diff --git a/frontend/src/assets/sources/hmm-reports.png b/frontend/src/assets/sources/hmm-reports.png
new file mode 100644
index 00000000..cb5b8197
Binary files /dev/null and b/frontend/src/assets/sources/hmm-reports.png differ
diff --git a/frontend/src/assets/sources/hoag-clinic-goa.png b/frontend/src/assets/sources/hoag-clinic-goa.png
new file mode 100644
index 00000000..6c2a3048
Binary files /dev/null and b/frontend/src/assets/sources/hoag-clinic-goa.png differ
diff --git a/frontend/src/assets/sources/holland-hospital.jpg b/frontend/src/assets/sources/holland-hospital.jpg
new file mode 100644
index 00000000..e0032fb4
Binary files /dev/null and b/frontend/src/assets/sources/holland-hospital.jpg differ
diff --git a/frontend/src/assets/sources/hollister-incorporated.jpg b/frontend/src/assets/sources/hollister-incorporated.jpg
new file mode 100644
index 00000000..8f76e19e
Binary files /dev/null and b/frontend/src/assets/sources/hollister-incorporated.jpg differ
diff --git a/frontend/src/assets/sources/holston-medical-group.png b/frontend/src/assets/sources/holston-medical-group.png
new file mode 100644
index 00000000..a17283ba
Binary files /dev/null and b/frontend/src/assets/sources/holston-medical-group.png differ
diff --git a/frontend/src/assets/sources/holy-cross-health-network-practices.png b/frontend/src/assets/sources/holy-cross-health-network-practices.png
new file mode 100644
index 00000000..8453e85e
Binary files /dev/null and b/frontend/src/assets/sources/holy-cross-health-network-practices.png differ
diff --git a/frontend/src/assets/sources/holy-family-memorial-inc.png b/frontend/src/assets/sources/holy-family-memorial-inc.png
new file mode 100644
index 00000000..c3833226
Binary files /dev/null and b/frontend/src/assets/sources/holy-family-memorial-inc.png differ
diff --git a/frontend/src/assets/sources/holy-trinity-medical-clinic.jpg b/frontend/src/assets/sources/holy-trinity-medical-clinic.jpg
new file mode 100644
index 00000000..08f8d4f2
Binary files /dev/null and b/frontend/src/assets/sources/holy-trinity-medical-clinic.jpg differ
diff --git a/frontend/src/assets/sources/holyoke-health-center-inc.png b/frontend/src/assets/sources/holyoke-health-center-inc.png
new file mode 100644
index 00000000..0ff96b6b
Binary files /dev/null and b/frontend/src/assets/sources/holyoke-health-center-inc.png differ
diff --git a/frontend/src/assets/sources/hometown-health-center.png b/frontend/src/assets/sources/hometown-health-center.png
new file mode 100644
index 00000000..6034963c
Binary files /dev/null and b/frontend/src/assets/sources/hometown-health-center.png differ
diff --git a/frontend/src/assets/sources/hope-clinic.png b/frontend/src/assets/sources/hope-clinic.png
new file mode 100644
index 00000000..d1e38351
Binary files /dev/null and b/frontend/src/assets/sources/hope-clinic.png differ
diff --git a/frontend/src/assets/sources/hope-orthopedics-of-oregon.png b/frontend/src/assets/sources/hope-orthopedics-of-oregon.png
new file mode 100644
index 00000000..69e0075e
Binary files /dev/null and b/frontend/src/assets/sources/hope-orthopedics-of-oregon.png differ
diff --git a/frontend/src/assets/sources/horizon-eye-care.jpg b/frontend/src/assets/sources/horizon-eye-care.jpg
new file mode 100644
index 00000000..062b6107
Binary files /dev/null and b/frontend/src/assets/sources/horizon-eye-care.jpg differ
diff --git a/frontend/src/assets/sources/horizon-health-services.png b/frontend/src/assets/sources/horizon-health-services.png
new file mode 100644
index 00000000..69a2ae41
Binary files /dev/null and b/frontend/src/assets/sources/horizon-health-services.png differ
diff --git a/frontend/src/assets/sources/horizon-healthcare.jpg b/frontend/src/assets/sources/horizon-healthcare.jpg
new file mode 100644
index 00000000..32b3d0f4
Binary files /dev/null and b/frontend/src/assets/sources/horizon-healthcare.jpg differ
diff --git a/frontend/src/assets/sources/horizon-healthcare.svg b/frontend/src/assets/sources/horizon-healthcare.svg
new file mode 100644
index 00000000..394d68f5
--- /dev/null
+++ b/frontend/src/assets/sources/horizon-healthcare.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/hosp-based-poc-pediatrix-medical-of-tx.png b/frontend/src/assets/sources/hosp-based-poc-pediatrix-medical-of-tx.png
new file mode 100644
index 00000000..9d0a4a02
Binary files /dev/null and b/frontend/src/assets/sources/hosp-based-poc-pediatrix-medical-of-tx.png differ
diff --git a/frontend/src/assets/sources/hospice-of-rockingham-county.jpg b/frontend/src/assets/sources/hospice-of-rockingham-county.jpg
new file mode 100644
index 00000000..2207ccf7
Binary files /dev/null and b/frontend/src/assets/sources/hospice-of-rockingham-county.jpg differ
diff --git a/frontend/src/assets/sources/hospital-care-specialists-llc.png b/frontend/src/assets/sources/hospital-care-specialists-llc.png
new file mode 100644
index 00000000..3fcd434b
Binary files /dev/null and b/frontend/src/assets/sources/hospital-care-specialists-llc.png differ
diff --git a/frontend/src/assets/sources/hospital-dist-6-of-harper-county.svg b/frontend/src/assets/sources/hospital-dist-6-of-harper-county.svg
new file mode 100644
index 00000000..5769123b
--- /dev/null
+++ b/frontend/src/assets/sources/hospital-dist-6-of-harper-county.svg
@@ -0,0 +1,258 @@
+
diff --git a/frontend/src/assets/sources/houser-newman-associates.png b/frontend/src/assets/sources/houser-newman-associates.png
new file mode 100644
index 00000000..397268d2
Binary files /dev/null and b/frontend/src/assets/sources/houser-newman-associates.png differ
diff --git a/frontend/src/assets/sources/houston-nw-obh.png b/frontend/src/assets/sources/houston-nw-obh.png
new file mode 100644
index 00000000..2367183b
Binary files /dev/null and b/frontend/src/assets/sources/houston-nw-obh.png differ
diff --git a/frontend/src/assets/sources/houston-perinatal-associates.jpg b/frontend/src/assets/sources/houston-perinatal-associates.jpg
new file mode 100644
index 00000000..e02a50e4
Binary files /dev/null and b/frontend/src/assets/sources/houston-perinatal-associates.jpg differ
diff --git a/frontend/src/assets/sources/howard-and-david-grill-mds.png b/frontend/src/assets/sources/howard-and-david-grill-mds.png
new file mode 100644
index 00000000..50fa5cf5
Binary files /dev/null and b/frontend/src/assets/sources/howard-and-david-grill-mds.png differ
diff --git a/frontend/src/assets/sources/howerton-eye-clinic-pllc.jpeg b/frontend/src/assets/sources/howerton-eye-clinic-pllc.jpeg
new file mode 100644
index 00000000..f1f1994c
Binary files /dev/null and b/frontend/src/assets/sources/howerton-eye-clinic-pllc.jpeg differ
diff --git a/frontend/src/assets/sources/howerton-eye-clinic-pllc.png b/frontend/src/assets/sources/howerton-eye-clinic-pllc.png
new file mode 100644
index 00000000..dbbc4c35
Binary files /dev/null and b/frontend/src/assets/sources/howerton-eye-clinic-pllc.png differ
diff --git a/frontend/src/assets/sources/howerton-surgical-center-llc.jpg b/frontend/src/assets/sources/howerton-surgical-center-llc.jpg
new file mode 100644
index 00000000..f1f1994c
Binary files /dev/null and b/frontend/src/assets/sources/howerton-surgical-center-llc.jpg differ
diff --git a/frontend/src/assets/sources/howsden-dermatology.png b/frontend/src/assets/sources/howsden-dermatology.png
new file mode 100644
index 00000000..43fc48c6
Binary files /dev/null and b/frontend/src/assets/sources/howsden-dermatology.png differ
diff --git a/frontend/src/assets/sources/hqa-arlington.png b/frontend/src/assets/sources/hqa-arlington.png
new file mode 100644
index 00000000..d75758c4
Binary files /dev/null and b/frontend/src/assets/sources/hqa-arlington.png differ
diff --git a/frontend/src/assets/sources/hsc-health.jpg b/frontend/src/assets/sources/hsc-health.jpg
new file mode 100644
index 00000000..2425bf8d
Binary files /dev/null and b/frontend/src/assets/sources/hsc-health.jpg differ
diff --git a/frontend/src/assets/sources/hsvs-outpatient-mental-health.jpeg b/frontend/src/assets/sources/hsvs-outpatient-mental-health.jpeg
new file mode 100644
index 00000000..968d384d
Binary files /dev/null and b/frontend/src/assets/sources/hsvs-outpatient-mental-health.jpeg differ
diff --git a/frontend/src/assets/sources/hudson-physicians-s-c.jpg b/frontend/src/assets/sources/hudson-physicians-s-c.jpg
new file mode 100644
index 00000000..3a1cc3b7
Binary files /dev/null and b/frontend/src/assets/sources/hudson-physicians-s-c.jpg differ
diff --git a/frontend/src/assets/sources/hull-eye-center.png b/frontend/src/assets/sources/hull-eye-center.png
new file mode 100644
index 00000000..f7129f30
Binary files /dev/null and b/frontend/src/assets/sources/hull-eye-center.png differ
diff --git a/frontend/src/assets/sources/humboldt-general-hospital.svg b/frontend/src/assets/sources/humboldt-general-hospital.svg
new file mode 100644
index 00000000..59eb20c7
--- /dev/null
+++ b/frontend/src/assets/sources/humboldt-general-hospital.svg
@@ -0,0 +1,13 @@
+
diff --git a/frontend/src/assets/sources/hunterdon-adult-hospitalists-service.jpg b/frontend/src/assets/sources/hunterdon-adult-hospitalists-service.jpg
new file mode 100644
index 00000000..d392c6aa
Binary files /dev/null and b/frontend/src/assets/sources/hunterdon-adult-hospitalists-service.jpg differ
diff --git a/frontend/src/assets/sources/hunterdon-behavioral-health.svg b/frontend/src/assets/sources/hunterdon-behavioral-health.svg
new file mode 100644
index 00000000..1c6f1c47
--- /dev/null
+++ b/frontend/src/assets/sources/hunterdon-behavioral-health.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/hunterdon-breast-surgery-center.svg b/frontend/src/assets/sources/hunterdon-breast-surgery-center.svg
new file mode 100644
index 00000000..1c6f1c47
--- /dev/null
+++ b/frontend/src/assets/sources/hunterdon-breast-surgery-center.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/hunterdon-cancer-services.jpg b/frontend/src/assets/sources/hunterdon-cancer-services.jpg
new file mode 100644
index 00000000..05bb1e9c
Binary files /dev/null and b/frontend/src/assets/sources/hunterdon-cancer-services.jpg differ
diff --git a/frontend/src/assets/sources/hunterdon-cardiology.png b/frontend/src/assets/sources/hunterdon-cardiology.png
new file mode 100644
index 00000000..51294e3a
Binary files /dev/null and b/frontend/src/assets/sources/hunterdon-cardiology.png differ
diff --git a/frontend/src/assets/sources/hunterdon-cardiovascular-associates.png b/frontend/src/assets/sources/hunterdon-cardiovascular-associates.png
new file mode 100644
index 00000000..51294e3a
Binary files /dev/null and b/frontend/src/assets/sources/hunterdon-cardiovascular-associates.png differ
diff --git a/frontend/src/assets/sources/hunterdon-center-for-dermatology.svg b/frontend/src/assets/sources/hunterdon-center-for-dermatology.svg
new file mode 100644
index 00000000..1c6f1c47
--- /dev/null
+++ b/frontend/src/assets/sources/hunterdon-center-for-dermatology.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/hunterdon-center-healthy-aging.svg b/frontend/src/assets/sources/hunterdon-center-healthy-aging.svg
new file mode 100644
index 00000000..1c6f1c47
--- /dev/null
+++ b/frontend/src/assets/sources/hunterdon-center-healthy-aging.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/hunterdon-digestive-health-specialists.jpg b/frontend/src/assets/sources/hunterdon-digestive-health-specialists.jpg
new file mode 100644
index 00000000..f4c3d22d
Binary files /dev/null and b/frontend/src/assets/sources/hunterdon-digestive-health-specialists.jpg differ
diff --git a/frontend/src/assets/sources/hunterdon-endosurgery-center.jpg b/frontend/src/assets/sources/hunterdon-endosurgery-center.jpg
new file mode 100644
index 00000000..84dd3f7c
Binary files /dev/null and b/frontend/src/assets/sources/hunterdon-endosurgery-center.jpg differ
diff --git a/frontend/src/assets/sources/hunterdon-family-med-at-branchburg.svg b/frontend/src/assets/sources/hunterdon-family-med-at-branchburg.svg
new file mode 100644
index 00000000..1c6f1c47
--- /dev/null
+++ b/frontend/src/assets/sources/hunterdon-family-med-at-branchburg.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/hunterdon-family-med-at-bridgewater.svg b/frontend/src/assets/sources/hunterdon-family-med-at-bridgewater.svg
new file mode 100644
index 00000000..1c6f1c47
--- /dev/null
+++ b/frontend/src/assets/sources/hunterdon-family-med-at-bridgewater.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/hunterdon-family-med-at-delaware-valley.jpg b/frontend/src/assets/sources/hunterdon-family-med-at-delaware-valley.jpg
new file mode 100644
index 00000000..b847bf71
Binary files /dev/null and b/frontend/src/assets/sources/hunterdon-family-med-at-delaware-valley.jpg differ
diff --git a/frontend/src/assets/sources/hunterdon-family-med-at-hickory-run.svg b/frontend/src/assets/sources/hunterdon-family-med-at-hickory-run.svg
new file mode 100644
index 00000000..1c6f1c47
--- /dev/null
+++ b/frontend/src/assets/sources/hunterdon-family-med-at-hickory-run.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/hunterdon-family-med-at-highlands.svg b/frontend/src/assets/sources/hunterdon-family-med-at-highlands.svg
new file mode 100644
index 00000000..1c6f1c47
--- /dev/null
+++ b/frontend/src/assets/sources/hunterdon-family-med-at-highlands.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/hunterdon-family-med-at-phillips-barber.svg b/frontend/src/assets/sources/hunterdon-family-med-at-phillips-barber.svg
new file mode 100644
index 00000000..1c6f1c47
--- /dev/null
+++ b/frontend/src/assets/sources/hunterdon-family-med-at-phillips-barber.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/hunterdon-family-med-your-doctors-care.png b/frontend/src/assets/sources/hunterdon-family-med-your-doctors-care.png
new file mode 100644
index 00000000..a3474b20
Binary files /dev/null and b/frontend/src/assets/sources/hunterdon-family-med-your-doctors-care.png differ
diff --git a/frontend/src/assets/sources/hunterdon-family-physicians.png b/frontend/src/assets/sources/hunterdon-family-physicians.png
new file mode 100644
index 00000000..0a5dbfaf
Binary files /dev/null and b/frontend/src/assets/sources/hunterdon-family-physicians.png differ
diff --git a/frontend/src/assets/sources/hunterdon-family-practice-and-obstetrics.jpg b/frontend/src/assets/sources/hunterdon-family-practice-and-obstetrics.jpg
new file mode 100644
index 00000000..b96f56d2
Binary files /dev/null and b/frontend/src/assets/sources/hunterdon-family-practice-and-obstetrics.jpg differ
diff --git a/frontend/src/assets/sources/hunterdon-family-sports-med-at-hopewell.jpg b/frontend/src/assets/sources/hunterdon-family-sports-med-at-hopewell.jpg
new file mode 100644
index 00000000..c20400a6
Binary files /dev/null and b/frontend/src/assets/sources/hunterdon-family-sports-med-at-hopewell.jpg differ
diff --git a/frontend/src/assets/sources/hunterdon-gastroenterology-associates.png b/frontend/src/assets/sources/hunterdon-gastroenterology-associates.png
new file mode 100644
index 00000000..e1a8fce2
Binary files /dev/null and b/frontend/src/assets/sources/hunterdon-gastroenterology-associates.png differ
diff --git a/frontend/src/assets/sources/hunterdon-hematology-oncology.png b/frontend/src/assets/sources/hunterdon-hematology-oncology.png
new file mode 100644
index 00000000..5974cc15
Binary files /dev/null and b/frontend/src/assets/sources/hunterdon-hematology-oncology.png differ
diff --git a/frontend/src/assets/sources/hunterdon-infectious-disease-specialists.svg b/frontend/src/assets/sources/hunterdon-infectious-disease-specialists.svg
new file mode 100644
index 00000000..1c6f1c47
--- /dev/null
+++ b/frontend/src/assets/sources/hunterdon-infectious-disease-specialists.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/hunterdon-internal-medicine-associates.jpg b/frontend/src/assets/sources/hunterdon-internal-medicine-associates.jpg
new file mode 100644
index 00000000..b0aea4ef
Binary files /dev/null and b/frontend/src/assets/sources/hunterdon-internal-medicine-associates.jpg differ
diff --git a/frontend/src/assets/sources/hunterdon-med-ctr-home-health-services.svg b/frontend/src/assets/sources/hunterdon-med-ctr-home-health-services.svg
new file mode 100644
index 00000000..1c6f1c47
--- /dev/null
+++ b/frontend/src/assets/sources/hunterdon-med-ctr-home-health-services.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/hunterdon-medical-assoc-at-long-valley.svg b/frontend/src/assets/sources/hunterdon-medical-assoc-at-long-valley.svg
new file mode 100644
index 00000000..1c6f1c47
--- /dev/null
+++ b/frontend/src/assets/sources/hunterdon-medical-assoc-at-long-valley.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/hunterdon-medical-assoc-whitehouse-sta.png b/frontend/src/assets/sources/hunterdon-medical-assoc-whitehouse-sta.png
new file mode 100644
index 00000000..52b9981c
Binary files /dev/null and b/frontend/src/assets/sources/hunterdon-medical-assoc-whitehouse-sta.png differ
diff --git a/frontend/src/assets/sources/hunterdon-medical-associates-flemington.svg b/frontend/src/assets/sources/hunterdon-medical-associates-flemington.svg
new file mode 100644
index 00000000..1c6f1c47
--- /dev/null
+++ b/frontend/src/assets/sources/hunterdon-medical-associates-flemington.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/hunterdon-neonatal-pediatrics.svg b/frontend/src/assets/sources/hunterdon-neonatal-pediatrics.svg
new file mode 100644
index 00000000..1c6f1c47
--- /dev/null
+++ b/frontend/src/assets/sources/hunterdon-neonatal-pediatrics.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/hunterdon-neurology.png b/frontend/src/assets/sources/hunterdon-neurology.png
new file mode 100644
index 00000000..1381d4c6
Binary files /dev/null and b/frontend/src/assets/sources/hunterdon-neurology.png differ
diff --git a/frontend/src/assets/sources/hunterdon-otolaryngology-associates.jpg b/frontend/src/assets/sources/hunterdon-otolaryngology-associates.jpg
new file mode 100644
index 00000000..77a2e6e2
Binary files /dev/null and b/frontend/src/assets/sources/hunterdon-otolaryngology-associates.jpg differ
diff --git a/frontend/src/assets/sources/hunterdon-palliative-care.png b/frontend/src/assets/sources/hunterdon-palliative-care.png
new file mode 100644
index 00000000..cc050cbc
Binary files /dev/null and b/frontend/src/assets/sources/hunterdon-palliative-care.png differ
diff --git a/frontend/src/assets/sources/hunterdon-palliative-care.svg b/frontend/src/assets/sources/hunterdon-palliative-care.svg
new file mode 100644
index 00000000..1c6f1c47
--- /dev/null
+++ b/frontend/src/assets/sources/hunterdon-palliative-care.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/hunterdon-pediatric-associates.svg b/frontend/src/assets/sources/hunterdon-pediatric-associates.svg
new file mode 100644
index 00000000..1c6f1c47
--- /dev/null
+++ b/frontend/src/assets/sources/hunterdon-pediatric-associates.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/hunterdon-pelvic-health-program.png b/frontend/src/assets/sources/hunterdon-pelvic-health-program.png
new file mode 100644
index 00000000..3e64bc76
Binary files /dev/null and b/frontend/src/assets/sources/hunterdon-pelvic-health-program.png differ
diff --git a/frontend/src/assets/sources/hunterdon-physical-occupational-therapy.svg b/frontend/src/assets/sources/hunterdon-physical-occupational-therapy.svg
new file mode 100644
index 00000000..1c6f1c47
--- /dev/null
+++ b/frontend/src/assets/sources/hunterdon-physical-occupational-therapy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/hunterdon-plastic-surgery.jpg b/frontend/src/assets/sources/hunterdon-plastic-surgery.jpg
new file mode 100644
index 00000000..b96f56d2
Binary files /dev/null and b/frontend/src/assets/sources/hunterdon-plastic-surgery.jpg differ
diff --git a/frontend/src/assets/sources/hunterdon-podiatric-medicine.jpg b/frontend/src/assets/sources/hunterdon-podiatric-medicine.jpg
new file mode 100644
index 00000000..2c581fb6
Binary files /dev/null and b/frontend/src/assets/sources/hunterdon-podiatric-medicine.jpg differ
diff --git a/frontend/src/assets/sources/hunterdon-podiatric-medicine.svg b/frontend/src/assets/sources/hunterdon-podiatric-medicine.svg
new file mode 100644
index 00000000..1c6f1c47
--- /dev/null
+++ b/frontend/src/assets/sources/hunterdon-podiatric-medicine.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/hunterdon-pulmonary-and-critical-care.jpg b/frontend/src/assets/sources/hunterdon-pulmonary-and-critical-care.jpg
new file mode 100644
index 00000000..ad702156
Binary files /dev/null and b/frontend/src/assets/sources/hunterdon-pulmonary-and-critical-care.jpg differ
diff --git a/frontend/src/assets/sources/hunterdon-sleep-pulmonary-and-neurology.png b/frontend/src/assets/sources/hunterdon-sleep-pulmonary-and-neurology.png
new file mode 100644
index 00000000..680270be
Binary files /dev/null and b/frontend/src/assets/sources/hunterdon-sleep-pulmonary-and-neurology.png differ
diff --git a/frontend/src/assets/sources/hunterdon-urgent-care-pc.svg b/frontend/src/assets/sources/hunterdon-urgent-care-pc.svg
new file mode 100644
index 00000000..1c6f1c47
--- /dev/null
+++ b/frontend/src/assets/sources/hunterdon-urgent-care-pc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/hunterdon-urological-associates.svg b/frontend/src/assets/sources/hunterdon-urological-associates.svg
new file mode 100644
index 00000000..1c6f1c47
--- /dev/null
+++ b/frontend/src/assets/sources/hunterdon-urological-associates.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/huntington-healthcare.jpg b/frontend/src/assets/sources/huntington-healthcare.jpg
new file mode 100644
index 00000000..f849dc54
Binary files /dev/null and b/frontend/src/assets/sources/huntington-healthcare.jpg differ
diff --git a/frontend/src/assets/sources/huntington-hospital.svg b/frontend/src/assets/sources/huntington-hospital.svg
new file mode 100644
index 00000000..f987d634
--- /dev/null
+++ b/frontend/src/assets/sources/huntington-hospital.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/huntington-plaza-pediatrics.png b/frontend/src/assets/sources/huntington-plaza-pediatrics.png
new file mode 100644
index 00000000..c89e89d3
Binary files /dev/null and b/frontend/src/assets/sources/huntington-plaza-pediatrics.png differ
diff --git a/frontend/src/assets/sources/huntsville-hospital-health-system.jpg b/frontend/src/assets/sources/huntsville-hospital-health-system.jpg
new file mode 100644
index 00000000..ed80fed4
Binary files /dev/null and b/frontend/src/assets/sources/huntsville-hospital-health-system.jpg differ
diff --git a/frontend/src/assets/sources/huron-gastroenterology.png b/frontend/src/assets/sources/huron-gastroenterology.png
new file mode 100644
index 00000000..47f0f080
Binary files /dev/null and b/frontend/src/assets/sources/huron-gastroenterology.png differ
diff --git a/frontend/src/assets/sources/huron-valley-pediatrics.png b/frontend/src/assets/sources/huron-valley-pediatrics.png
new file mode 100644
index 00000000..284ad3cb
Binary files /dev/null and b/frontend/src/assets/sources/huron-valley-pediatrics.png differ
diff --git a/frontend/src/assets/sources/hutchinson-regional-medical-center.svg b/frontend/src/assets/sources/hutchinson-regional-medical-center.svg
new file mode 100644
index 00000000..05eb3ec4
--- /dev/null
+++ b/frontend/src/assets/sources/hutchinson-regional-medical-center.svg
@@ -0,0 +1,116 @@
+
+
+
diff --git a/frontend/src/assets/sources/hypertension-nephrology-associates-asc.png b/frontend/src/assets/sources/hypertension-nephrology-associates-asc.png
new file mode 100644
index 00000000..c3d2b49d
Binary files /dev/null and b/frontend/src/assets/sources/hypertension-nephrology-associates-asc.png differ
diff --git a/frontend/src/assets/sources/hypertension-nephrology.jpg b/frontend/src/assets/sources/hypertension-nephrology.jpg
new file mode 100644
index 00000000..52a3fea9
Binary files /dev/null and b/frontend/src/assets/sources/hypertension-nephrology.jpg differ
diff --git a/frontend/src/assets/sources/i-hsiung-chen-md.svg b/frontend/src/assets/sources/i-hsiung-chen-md.svg
new file mode 100644
index 00000000..2efd2f29
--- /dev/null
+++ b/frontend/src/assets/sources/i-hsiung-chen-md.svg
@@ -0,0 +1,95 @@
+
+
+
+
diff --git a/frontend/src/assets/sources/ic-laser-eye-care.png b/frontend/src/assets/sources/ic-laser-eye-care.png
new file mode 100644
index 00000000..85d8e911
Binary files /dev/null and b/frontend/src/assets/sources/ic-laser-eye-care.png differ
diff --git a/frontend/src/assets/sources/icam.jpg b/frontend/src/assets/sources/icam.jpg
new file mode 100644
index 00000000..d22c577d
Binary files /dev/null and b/frontend/src/assets/sources/icam.jpg differ
diff --git a/frontend/src/assets/sources/icam.png b/frontend/src/assets/sources/icam.png
new file mode 100644
index 00000000..745246a4
Binary files /dev/null and b/frontend/src/assets/sources/icam.png differ
diff --git a/frontend/src/assets/sources/id-care.png b/frontend/src/assets/sources/id-care.png
new file mode 100644
index 00000000..5be059ae
Binary files /dev/null and b/frontend/src/assets/sources/id-care.png differ
diff --git a/frontend/src/assets/sources/idaho-arthritis-center.png b/frontend/src/assets/sources/idaho-arthritis-center.png
new file mode 100644
index 00000000..48a88a59
Binary files /dev/null and b/frontend/src/assets/sources/idaho-arthritis-center.png differ
diff --git a/frontend/src/assets/sources/identity-medical-group-inc.png b/frontend/src/assets/sources/identity-medical-group-inc.png
new file mode 100644
index 00000000..c8ceea3f
Binary files /dev/null and b/frontend/src/assets/sources/identity-medical-group-inc.png differ
diff --git a/frontend/src/assets/sources/ifas-management-llc.png b/frontend/src/assets/sources/ifas-management-llc.png
new file mode 100644
index 00000000..c2d5ed8f
Binary files /dev/null and b/frontend/src/assets/sources/ifas-management-llc.png differ
diff --git a/frontend/src/assets/sources/illinois-college-of-optometry.png b/frontend/src/assets/sources/illinois-college-of-optometry.png
new file mode 100644
index 00000000..0c55c6ad
Binary files /dev/null and b/frontend/src/assets/sources/illinois-college-of-optometry.png differ
diff --git a/frontend/src/assets/sources/image-guided-surgery-aesthetics.png b/frontend/src/assets/sources/image-guided-surgery-aesthetics.png
new file mode 100644
index 00000000..2b7475a5
Binary files /dev/null and b/frontend/src/assets/sources/image-guided-surgery-aesthetics.png differ
diff --git a/frontend/src/assets/sources/imc-health-llc.png b/frontend/src/assets/sources/imc-health-llc.png
new file mode 100644
index 00000000..cc050cbc
Binary files /dev/null and b/frontend/src/assets/sources/imc-health-llc.png differ
diff --git a/frontend/src/assets/sources/immediate-care.png b/frontend/src/assets/sources/immediate-care.png
new file mode 100644
index 00000000..ddcd75da
Binary files /dev/null and b/frontend/src/assets/sources/immediate-care.png differ
diff --git a/frontend/src/assets/sources/in-focus-ophthalmic-plastic-surgery.png b/frontend/src/assets/sources/in-focus-ophthalmic-plastic-surgery.png
new file mode 100644
index 00000000..49be75e8
Binary files /dev/null and b/frontend/src/assets/sources/in-focus-ophthalmic-plastic-surgery.png differ
diff --git a/frontend/src/assets/sources/indian-health-council.jpg b/frontend/src/assets/sources/indian-health-council.jpg
new file mode 100644
index 00000000..9636a616
Binary files /dev/null and b/frontend/src/assets/sources/indian-health-council.jpg differ
diff --git a/frontend/src/assets/sources/indiana-kidney-institute.png b/frontend/src/assets/sources/indiana-kidney-institute.png
new file mode 100644
index 00000000..b00afd83
Binary files /dev/null and b/frontend/src/assets/sources/indiana-kidney-institute.png differ
diff --git a/frontend/src/assets/sources/indiana-regional-medical-center.svg b/frontend/src/assets/sources/indiana-regional-medical-center.svg
new file mode 100644
index 00000000..8fd77aba
--- /dev/null
+++ b/frontend/src/assets/sources/indiana-regional-medical-center.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/indiana-spine-group-p-c.png b/frontend/src/assets/sources/indiana-spine-group-p-c.png
new file mode 100644
index 00000000..29193ce1
Binary files /dev/null and b/frontend/src/assets/sources/indiana-spine-group-p-c.png differ
diff --git a/frontend/src/assets/sources/indiana-surgery-and-vascular-center.png b/frontend/src/assets/sources/indiana-surgery-and-vascular-center.png
new file mode 100644
index 00000000..65e1c6b2
Binary files /dev/null and b/frontend/src/assets/sources/indiana-surgery-and-vascular-center.png differ
diff --git a/frontend/src/assets/sources/indiana-university-health-inc.svg b/frontend/src/assets/sources/indiana-university-health-inc.svg
new file mode 100644
index 00000000..c90ae37a
--- /dev/null
+++ b/frontend/src/assets/sources/indiana-university-health-inc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/indianapolis-gastroenterology-inc.jpg b/frontend/src/assets/sources/indianapolis-gastroenterology-inc.jpg
new file mode 100644
index 00000000..90449e81
Binary files /dev/null and b/frontend/src/assets/sources/indianapolis-gastroenterology-inc.jpg differ
diff --git a/frontend/src/assets/sources/infants-and-toddlers-program.png b/frontend/src/assets/sources/infants-and-toddlers-program.png
new file mode 100644
index 00000000..0ee1fb56
Binary files /dev/null and b/frontend/src/assets/sources/infants-and-toddlers-program.png differ
diff --git a/frontend/src/assets/sources/infectious-disease-specialists-sc.png b/frontend/src/assets/sources/infectious-disease-specialists-sc.png
new file mode 100644
index 00000000..032ac7da
Binary files /dev/null and b/frontend/src/assets/sources/infectious-disease-specialists-sc.png differ
diff --git a/frontend/src/assets/sources/infectious-diseases-associates-pc.png b/frontend/src/assets/sources/infectious-diseases-associates-pc.png
new file mode 100644
index 00000000..3dc3ee33
Binary files /dev/null and b/frontend/src/assets/sources/infectious-diseases-associates-pc.png differ
diff --git a/frontend/src/assets/sources/infinity-health.jpg b/frontend/src/assets/sources/infinity-health.jpg
new file mode 100644
index 00000000..a079f802
Binary files /dev/null and b/frontend/src/assets/sources/infinity-health.jpg differ
diff --git a/frontend/src/assets/sources/infinity-health.png b/frontend/src/assets/sources/infinity-health.png
new file mode 100644
index 00000000..d737fe69
Binary files /dev/null and b/frontend/src/assets/sources/infinity-health.png differ
diff --git a/frontend/src/assets/sources/inland-eye-specialists-surgery-centers.png b/frontend/src/assets/sources/inland-eye-specialists-surgery-centers.png
new file mode 100644
index 00000000..741f8da3
Binary files /dev/null and b/frontend/src/assets/sources/inland-eye-specialists-surgery-centers.png differ
diff --git a/frontend/src/assets/sources/inland-eye-specialists.png b/frontend/src/assets/sources/inland-eye-specialists.png
new file mode 100644
index 00000000..741f8da3
Binary files /dev/null and b/frontend/src/assets/sources/inland-eye-specialists.png differ
diff --git a/frontend/src/assets/sources/inland-faculty-specialists-a-california.png b/frontend/src/assets/sources/inland-faculty-specialists-a-california.png
new file mode 100644
index 00000000..e53ed0fe
Binary files /dev/null and b/frontend/src/assets/sources/inland-faculty-specialists-a-california.png differ
diff --git a/frontend/src/assets/sources/inland-northwest-foot-and-ankle.jpg b/frontend/src/assets/sources/inland-northwest-foot-and-ankle.jpg
new file mode 100644
index 00000000..ccb99280
Binary files /dev/null and b/frontend/src/assets/sources/inland-northwest-foot-and-ankle.jpg differ
diff --git a/frontend/src/assets/sources/inland-valley-retina-medical-assoc-inc.png b/frontend/src/assets/sources/inland-valley-retina-medical-assoc-inc.png
new file mode 100644
index 00000000..8b72e953
Binary files /dev/null and b/frontend/src/assets/sources/inland-valley-retina-medical-assoc-inc.png differ
diff --git a/frontend/src/assets/sources/innercare.jpg b/frontend/src/assets/sources/innercare.jpg
new file mode 100644
index 00000000..08eee316
Binary files /dev/null and b/frontend/src/assets/sources/innercare.jpg differ
diff --git a/frontend/src/assets/sources/innovative-dermatology.png b/frontend/src/assets/sources/innovative-dermatology.png
new file mode 100644
index 00000000..07bd1e0d
Binary files /dev/null and b/frontend/src/assets/sources/innovative-dermatology.png differ
diff --git a/frontend/src/assets/sources/inpatient-services.jpg b/frontend/src/assets/sources/inpatient-services.jpg
new file mode 100644
index 00000000..c4378518
Binary files /dev/null and b/frontend/src/assets/sources/inpatient-services.jpg differ
diff --git a/frontend/src/assets/sources/inpatient-services.svg b/frontend/src/assets/sources/inpatient-services.svg
new file mode 100644
index 00000000..82593838
--- /dev/null
+++ b/frontend/src/assets/sources/inpatient-services.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/insight-hospital-and-medical-center-chicago.png b/frontend/src/assets/sources/insight-hospital-and-medical-center-chicago.png
new file mode 100644
index 00000000..5431e524
Binary files /dev/null and b/frontend/src/assets/sources/insight-hospital-and-medical-center-chicago.png differ
diff --git a/frontend/src/assets/sources/insight-vision-center-medical-group-inc.jpg b/frontend/src/assets/sources/insight-vision-center-medical-group-inc.jpg
new file mode 100644
index 00000000..554744a9
Binary files /dev/null and b/frontend/src/assets/sources/insight-vision-center-medical-group-inc.jpg differ
diff --git a/frontend/src/assets/sources/inspira-health-network-inc.svg b/frontend/src/assets/sources/inspira-health-network-inc.svg
new file mode 100644
index 00000000..b9d874b6
--- /dev/null
+++ b/frontend/src/assets/sources/inspira-health-network-inc.svg
@@ -0,0 +1,9 @@
+
diff --git a/frontend/src/assets/sources/inspira-medical-center-woodbury-inc.svg b/frontend/src/assets/sources/inspira-medical-center-woodbury-inc.svg
new file mode 100644
index 00000000..b9d874b6
--- /dev/null
+++ b/frontend/src/assets/sources/inspira-medical-center-woodbury-inc.svg
@@ -0,0 +1,9 @@
+
diff --git a/frontend/src/assets/sources/institute-of-neurology-and-neurosurgery-at-st-barnabas.png b/frontend/src/assets/sources/institute-of-neurology-and-neurosurgery-at-st-barnabas.png
new file mode 100644
index 00000000..74f21ee0
Binary files /dev/null and b/frontend/src/assets/sources/institute-of-neurology-and-neurosurgery-at-st-barnabas.png differ
diff --git a/frontend/src/assets/sources/integrated-anesthesia-services.png b/frontend/src/assets/sources/integrated-anesthesia-services.png
new file mode 100644
index 00000000..50700a59
Binary files /dev/null and b/frontend/src/assets/sources/integrated-anesthesia-services.png differ
diff --git a/frontend/src/assets/sources/integrated-family-services.jpg b/frontend/src/assets/sources/integrated-family-services.jpg
new file mode 100644
index 00000000..5c5d3eac
Binary files /dev/null and b/frontend/src/assets/sources/integrated-family-services.jpg differ
diff --git a/frontend/src/assets/sources/integrated-family-services.png b/frontend/src/assets/sources/integrated-family-services.png
new file mode 100644
index 00000000..bd896443
Binary files /dev/null and b/frontend/src/assets/sources/integrated-family-services.png differ
diff --git a/frontend/src/assets/sources/integrative-arthritis-pain-consultants.png b/frontend/src/assets/sources/integrative-arthritis-pain-consultants.png
new file mode 100644
index 00000000..77eeb8a6
Binary files /dev/null and b/frontend/src/assets/sources/integrative-arthritis-pain-consultants.png differ
diff --git a/frontend/src/assets/sources/integrative-sports-medicine-llc.jpg b/frontend/src/assets/sources/integrative-sports-medicine-llc.jpg
new file mode 100644
index 00000000..c5a757b8
Binary files /dev/null and b/frontend/src/assets/sources/integrative-sports-medicine-llc.jpg differ
diff --git a/frontend/src/assets/sources/intermountain-healthcare-inc.jpg b/frontend/src/assets/sources/intermountain-healthcare-inc.jpg
new file mode 100644
index 00000000..ff30221d
Binary files /dev/null and b/frontend/src/assets/sources/intermountain-healthcare-inc.jpg differ
diff --git a/frontend/src/assets/sources/intermountain-medical-center.png b/frontend/src/assets/sources/intermountain-medical-center.png
new file mode 100644
index 00000000..b91a91f7
Binary files /dev/null and b/frontend/src/assets/sources/intermountain-medical-center.png differ
diff --git a/frontend/src/assets/sources/internal-medicine-and-pediatrics-of-cullman-p-c.png b/frontend/src/assets/sources/internal-medicine-and-pediatrics-of-cullman-p-c.png
new file mode 100644
index 00000000..a47057e1
Binary files /dev/null and b/frontend/src/assets/sources/internal-medicine-and-pediatrics-of-cullman-p-c.png differ
diff --git a/frontend/src/assets/sources/internal-medicine-associates-of-raleigh.png b/frontend/src/assets/sources/internal-medicine-associates-of-raleigh.png
new file mode 100644
index 00000000..f728b1dc
Binary files /dev/null and b/frontend/src/assets/sources/internal-medicine-associates-of-raleigh.png differ
diff --git a/frontend/src/assets/sources/internal-medicine-consultants-llc.png b/frontend/src/assets/sources/internal-medicine-consultants-llc.png
new file mode 100644
index 00000000..697d470a
Binary files /dev/null and b/frontend/src/assets/sources/internal-medicine-consultants-llc.png differ
diff --git a/frontend/src/assets/sources/internal-medicine-llc.png b/frontend/src/assets/sources/internal-medicine-llc.png
new file mode 100644
index 00000000..cc7dedf9
Binary files /dev/null and b/frontend/src/assets/sources/internal-medicine-llc.png differ
diff --git a/frontend/src/assets/sources/internal-medicine-physicians-pc.png b/frontend/src/assets/sources/internal-medicine-physicians-pc.png
new file mode 100644
index 00000000..f19de201
Binary files /dev/null and b/frontend/src/assets/sources/internal-medicine-physicians-pc.png differ
diff --git a/frontend/src/assets/sources/internal-medicine.png b/frontend/src/assets/sources/internal-medicine.png
new file mode 100644
index 00000000..7b02d9cb
Binary files /dev/null and b/frontend/src/assets/sources/internal-medicine.png differ
diff --git a/frontend/src/assets/sources/international-healing-ministries.png b/frontend/src/assets/sources/international-healing-ministries.png
new file mode 100644
index 00000000..955a4e52
Binary files /dev/null and b/frontend/src/assets/sources/international-healing-ministries.png differ
diff --git a/frontend/src/assets/sources/interventional-nephrology-specialists.jpg b/frontend/src/assets/sources/interventional-nephrology-specialists.jpg
new file mode 100644
index 00000000..438238b4
Binary files /dev/null and b/frontend/src/assets/sources/interventional-nephrology-specialists.jpg differ
diff --git a/frontend/src/assets/sources/interventional-pain-specialists.jpg b/frontend/src/assets/sources/interventional-pain-specialists.jpg
new file mode 100644
index 00000000..e02a50e4
Binary files /dev/null and b/frontend/src/assets/sources/interventional-pain-specialists.jpg differ
diff --git a/frontend/src/assets/sources/interventional-pain-specialists.png b/frontend/src/assets/sources/interventional-pain-specialists.png
new file mode 100644
index 00000000..507b4594
Binary files /dev/null and b/frontend/src/assets/sources/interventional-pain-specialists.png differ
diff --git a/frontend/src/assets/sources/iowa-arthritis-and-osteoporosis-center.jpg b/frontend/src/assets/sources/iowa-arthritis-and-osteoporosis-center.jpg
new file mode 100644
index 00000000..1969ff1b
Binary files /dev/null and b/frontend/src/assets/sources/iowa-arthritis-and-osteoporosis-center.jpg differ
diff --git a/frontend/src/assets/sources/iowa-arthritis-and-osteoporosis-center.png b/frontend/src/assets/sources/iowa-arthritis-and-osteoporosis-center.png
new file mode 100644
index 00000000..e742b414
Binary files /dev/null and b/frontend/src/assets/sources/iowa-arthritis-and-osteoporosis-center.png differ
diff --git a/frontend/src/assets/sources/iowa-eye-center.png b/frontend/src/assets/sources/iowa-eye-center.png
new file mode 100644
index 00000000..c8d92ab0
Binary files /dev/null and b/frontend/src/assets/sources/iowa-eye-center.png differ
diff --git a/frontend/src/assets/sources/iowa-foot-care-center.jpg b/frontend/src/assets/sources/iowa-foot-care-center.jpg
new file mode 100644
index 00000000..0fdac728
Binary files /dev/null and b/frontend/src/assets/sources/iowa-foot-care-center.jpg differ
diff --git a/frontend/src/assets/sources/iowa-ortho.jpg b/frontend/src/assets/sources/iowa-ortho.jpg
new file mode 100644
index 00000000..86616aa2
Binary files /dev/null and b/frontend/src/assets/sources/iowa-ortho.jpg differ
diff --git a/frontend/src/assets/sources/ipn-ehr-read-only-denver-heart.png b/frontend/src/assets/sources/ipn-ehr-read-only-denver-heart.png
new file mode 100644
index 00000000..7fcd8484
Binary files /dev/null and b/frontend/src/assets/sources/ipn-ehr-read-only-denver-heart.png differ
diff --git a/frontend/src/assets/sources/iredell-memorial-hospital.jpg b/frontend/src/assets/sources/iredell-memorial-hospital.jpg
new file mode 100644
index 00000000..f628a02e
Binary files /dev/null and b/frontend/src/assets/sources/iredell-memorial-hospital.jpg differ
diff --git a/frontend/src/assets/sources/iron-county-medical-center.jpg b/frontend/src/assets/sources/iron-county-medical-center.jpg
new file mode 100644
index 00000000..ab6a4f5f
Binary files /dev/null and b/frontend/src/assets/sources/iron-county-medical-center.jpg differ
diff --git a/frontend/src/assets/sources/irvine-family-care.svg b/frontend/src/assets/sources/irvine-family-care.svg
new file mode 100644
index 00000000..1c6f1c47
--- /dev/null
+++ b/frontend/src/assets/sources/irvine-family-care.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/irvine-internal-medical-group.png b/frontend/src/assets/sources/irvine-internal-medical-group.png
new file mode 100644
index 00000000..44be5e3b
Binary files /dev/null and b/frontend/src/assets/sources/irvine-internal-medical-group.png differ
diff --git a/frontend/src/assets/sources/isaac-beshay-md-inc.png b/frontend/src/assets/sources/isaac-beshay-md-inc.png
new file mode 100644
index 00000000..7c9d29bc
Binary files /dev/null and b/frontend/src/assets/sources/isaac-beshay-md-inc.png differ
diff --git a/frontend/src/assets/sources/islands-community-medical-services.png b/frontend/src/assets/sources/islands-community-medical-services.png
new file mode 100644
index 00000000..7a27d3ad
Binary files /dev/null and b/frontend/src/assets/sources/islands-community-medical-services.png differ
diff --git a/frontend/src/assets/sources/ivy-springs-medical-care-inc.png b/frontend/src/assets/sources/ivy-springs-medical-care-inc.png
new file mode 100644
index 00000000..f925fd4f
Binary files /dev/null and b/frontend/src/assets/sources/ivy-springs-medical-care-inc.png differ
diff --git a/frontend/src/assets/sources/j-dean-cole-md-llc.jpg b/frontend/src/assets/sources/j-dean-cole-md-llc.jpg
new file mode 100644
index 00000000..dd3dedbf
Binary files /dev/null and b/frontend/src/assets/sources/j-dean-cole-md-llc.jpg differ
diff --git a/frontend/src/assets/sources/j-e-dunn-construction-co.png b/frontend/src/assets/sources/j-e-dunn-construction-co.png
new file mode 100644
index 00000000..347524fd
Binary files /dev/null and b/frontend/src/assets/sources/j-e-dunn-construction-co.png differ
diff --git a/frontend/src/assets/sources/j-raymond-li-md.png b/frontend/src/assets/sources/j-raymond-li-md.png
new file mode 100644
index 00000000..94e37263
Binary files /dev/null and b/frontend/src/assets/sources/j-raymond-li-md.png differ
diff --git a/frontend/src/assets/sources/jackson-bone-and-joint.jpg b/frontend/src/assets/sources/jackson-bone-and-joint.jpg
new file mode 100644
index 00000000..fc7b1f8b
Binary files /dev/null and b/frontend/src/assets/sources/jackson-bone-and-joint.jpg differ
diff --git a/frontend/src/assets/sources/jackson-health-system.svg b/frontend/src/assets/sources/jackson-health-system.svg
new file mode 100644
index 00000000..61e94e62
--- /dev/null
+++ b/frontend/src/assets/sources/jackson-health-system.svg
@@ -0,0 +1,106 @@
+
+
+
diff --git a/frontend/src/assets/sources/jackson-neurosurgery-clinic.jpg b/frontend/src/assets/sources/jackson-neurosurgery-clinic.jpg
new file mode 100644
index 00000000..a4af641f
Binary files /dev/null and b/frontend/src/assets/sources/jackson-neurosurgery-clinic.jpg differ
diff --git a/frontend/src/assets/sources/jackson-pain-center-p-a.jpg b/frontend/src/assets/sources/jackson-pain-center-p-a.jpg
new file mode 100644
index 00000000..665754c5
Binary files /dev/null and b/frontend/src/assets/sources/jackson-pain-center-p-a.jpg differ
diff --git a/frontend/src/assets/sources/jackson-pain-center-p-a.png b/frontend/src/assets/sources/jackson-pain-center-p-a.png
new file mode 100644
index 00000000..3517df77
Binary files /dev/null and b/frontend/src/assets/sources/jackson-pain-center-p-a.png differ
diff --git a/frontend/src/assets/sources/jackson-parish-hospital.png b/frontend/src/assets/sources/jackson-parish-hospital.png
new file mode 100644
index 00000000..a21665c9
Binary files /dev/null and b/frontend/src/assets/sources/jackson-parish-hospital.png differ
diff --git a/frontend/src/assets/sources/jacksonville-asc.png b/frontend/src/assets/sources/jacksonville-asc.png
new file mode 100644
index 00000000..755dd11b
Binary files /dev/null and b/frontend/src/assets/sources/jacksonville-asc.png differ
diff --git a/frontend/src/assets/sources/jai-hyon-rho-m-d-ph-d.svg b/frontend/src/assets/sources/jai-hyon-rho-m-d-ph-d.svg
new file mode 100644
index 00000000..2efd2f29
--- /dev/null
+++ b/frontend/src/assets/sources/jai-hyon-rho-m-d-ph-d.svg
@@ -0,0 +1,95 @@
+
+
+
+
diff --git a/frontend/src/assets/sources/jaime-e-campos-md-pa.jpg b/frontend/src/assets/sources/jaime-e-campos-md-pa.jpg
new file mode 100644
index 00000000..75ea6013
Binary files /dev/null and b/frontend/src/assets/sources/jaime-e-campos-md-pa.jpg differ
diff --git a/frontend/src/assets/sources/jaisohn-medical-center.png b/frontend/src/assets/sources/jaisohn-medical-center.png
new file mode 100644
index 00000000..1a4c21ac
Binary files /dev/null and b/frontend/src/assets/sources/jaisohn-medical-center.png differ
diff --git a/frontend/src/assets/sources/james-brungo-dpm.svg b/frontend/src/assets/sources/james-brungo-dpm.svg
new file mode 100644
index 00000000..d03b6308
--- /dev/null
+++ b/frontend/src/assets/sources/james-brungo-dpm.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/james-w-sikes-jr-dmd-md-llc.png b/frontend/src/assets/sources/james-w-sikes-jr-dmd-md-llc.png
new file mode 100644
index 00000000..5c6757ca
Binary files /dev/null and b/frontend/src/assets/sources/james-w-sikes-jr-dmd-md-llc.png differ
diff --git a/frontend/src/assets/sources/jasmine-l-ramos-md-faap.svg b/frontend/src/assets/sources/jasmine-l-ramos-md-faap.svg
new file mode 100644
index 00000000..2e7480ee
--- /dev/null
+++ b/frontend/src/assets/sources/jasmine-l-ramos-md-faap.svg
@@ -0,0 +1,224 @@
+
+
+
diff --git a/frontend/src/assets/sources/jason-amato-md-dermatology-llc.png b/frontend/src/assets/sources/jason-amato-md-dermatology-llc.png
new file mode 100644
index 00000000..67dc005e
Binary files /dev/null and b/frontend/src/assets/sources/jason-amato-md-dermatology-llc.png differ
diff --git a/frontend/src/assets/sources/jason-defrancis-md-pa.png b/frontend/src/assets/sources/jason-defrancis-md-pa.png
new file mode 100644
index 00000000..11835fe4
Binary files /dev/null and b/frontend/src/assets/sources/jason-defrancis-md-pa.png differ
diff --git a/frontend/src/assets/sources/javed-ahmad-a-professional-medical-corp.svg b/frontend/src/assets/sources/javed-ahmad-a-professional-medical-corp.svg
new file mode 100644
index 00000000..2e7480ee
--- /dev/null
+++ b/frontend/src/assets/sources/javed-ahmad-a-professional-medical-corp.svg
@@ -0,0 +1,224 @@
+
+
+
diff --git a/frontend/src/assets/sources/jax-anesthesia-providers-llc.png b/frontend/src/assets/sources/jax-anesthesia-providers-llc.png
new file mode 100644
index 00000000..ee7255e7
Binary files /dev/null and b/frontend/src/assets/sources/jax-anesthesia-providers-llc.png differ
diff --git a/frontend/src/assets/sources/jcmc.png b/frontend/src/assets/sources/jcmc.png
new file mode 100644
index 00000000..810e6082
Binary files /dev/null and b/frontend/src/assets/sources/jcmc.png differ
diff --git a/frontend/src/assets/sources/jd-health-and-wellness-center-llc.png b/frontend/src/assets/sources/jd-health-and-wellness-center-llc.png
new file mode 100644
index 00000000..9498b9ee
Binary files /dev/null and b/frontend/src/assets/sources/jd-health-and-wellness-center-llc.png differ
diff --git a/frontend/src/assets/sources/jeff-carls-md-family-medicine.png b/frontend/src/assets/sources/jeff-carls-md-family-medicine.png
new file mode 100644
index 00000000..cce74a79
Binary files /dev/null and b/frontend/src/assets/sources/jeff-carls-md-family-medicine.png differ
diff --git a/frontend/src/assets/sources/jefferson-community-health-and-life.png b/frontend/src/assets/sources/jefferson-community-health-and-life.png
new file mode 100644
index 00000000..15efb0b0
Binary files /dev/null and b/frontend/src/assets/sources/jefferson-community-health-and-life.png differ
diff --git a/frontend/src/assets/sources/jefferson-county-orthopaedics.jpg b/frontend/src/assets/sources/jefferson-county-orthopaedics.jpg
new file mode 100644
index 00000000..8897e7ad
Binary files /dev/null and b/frontend/src/assets/sources/jefferson-county-orthopaedics.jpg differ
diff --git a/frontend/src/assets/sources/jefferson-psychiatric-associates-llc.svg b/frontend/src/assets/sources/jefferson-psychiatric-associates-llc.svg
new file mode 100644
index 00000000..1804693a
--- /dev/null
+++ b/frontend/src/assets/sources/jefferson-psychiatric-associates-llc.svg
@@ -0,0 +1,62 @@
+
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/jeffrey-l-marks-md.png b/frontend/src/assets/sources/jeffrey-l-marks-md.png
new file mode 100644
index 00000000..209b4c0e
Binary files /dev/null and b/frontend/src/assets/sources/jeffrey-l-marks-md.png differ
diff --git a/frontend/src/assets/sources/jeffrey-s-stephens-m-d-p-a.png b/frontend/src/assets/sources/jeffrey-s-stephens-m-d-p-a.png
new file mode 100644
index 00000000..9c2e0354
Binary files /dev/null and b/frontend/src/assets/sources/jeffrey-s-stephens-m-d-p-a.png differ
diff --git a/frontend/src/assets/sources/jeffries-eye-clinic-pa.jpg b/frontend/src/assets/sources/jeffries-eye-clinic-pa.jpg
new file mode 100644
index 00000000..caade236
Binary files /dev/null and b/frontend/src/assets/sources/jeffries-eye-clinic-pa.jpg differ
diff --git a/frontend/src/assets/sources/jersey-rehab-p-a.png b/frontend/src/assets/sources/jersey-rehab-p-a.png
new file mode 100644
index 00000000..223b13fa
Binary files /dev/null and b/frontend/src/assets/sources/jersey-rehab-p-a.png differ
diff --git a/frontend/src/assets/sources/jewell-county-hospital.png b/frontend/src/assets/sources/jewell-county-hospital.png
new file mode 100644
index 00000000..f7a5d89b
Binary files /dev/null and b/frontend/src/assets/sources/jewell-county-hospital.png differ
diff --git a/frontend/src/assets/sources/jewish-family-services-of-atlantic-and-cape-may-counties.jpg b/frontend/src/assets/sources/jewish-family-services-of-atlantic-and-cape-may-counties.jpg
new file mode 100644
index 00000000..84287d75
Binary files /dev/null and b/frontend/src/assets/sources/jewish-family-services-of-atlantic-and-cape-may-counties.jpg differ
diff --git a/frontend/src/assets/sources/jewish-family-services-of-atlantic-and-cape-may-counties.svg b/frontend/src/assets/sources/jewish-family-services-of-atlantic-and-cape-may-counties.svg
new file mode 100644
index 00000000..d15214f8
--- /dev/null
+++ b/frontend/src/assets/sources/jewish-family-services-of-atlantic-and-cape-may-counties.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/jmd-family-practice.jpg b/frontend/src/assets/sources/jmd-family-practice.jpg
new file mode 100644
index 00000000..f94ddc7d
Binary files /dev/null and b/frontend/src/assets/sources/jmd-family-practice.jpg differ
diff --git a/frontend/src/assets/sources/joel-m-corwin-md-amc.png b/frontend/src/assets/sources/joel-m-corwin-md-amc.png
new file mode 100644
index 00000000..b268328c
Binary files /dev/null and b/frontend/src/assets/sources/joel-m-corwin-md-amc.png differ
diff --git a/frontend/src/assets/sources/john-a-sturges-md-pa.png b/frontend/src/assets/sources/john-a-sturges-md-pa.png
new file mode 100644
index 00000000..0217ba93
Binary files /dev/null and b/frontend/src/assets/sources/john-a-sturges-md-pa.png differ
diff --git a/frontend/src/assets/sources/john-knox-village-of-central-florida-inc.png b/frontend/src/assets/sources/john-knox-village-of-central-florida-inc.png
new file mode 100644
index 00000000..c0a63dc3
Binary files /dev/null and b/frontend/src/assets/sources/john-knox-village-of-central-florida-inc.png differ
diff --git a/frontend/src/assets/sources/johnny-arruda-md-inc.png b/frontend/src/assets/sources/johnny-arruda-md-inc.png
new file mode 100644
index 00000000..3df5be8c
Binary files /dev/null and b/frontend/src/assets/sources/johnny-arruda-md-inc.png differ
diff --git a/frontend/src/assets/sources/johnny-jada-md.svg b/frontend/src/assets/sources/johnny-jada-md.svg
new file mode 100644
index 00000000..31324d58
--- /dev/null
+++ b/frontend/src/assets/sources/johnny-jada-md.svg
@@ -0,0 +1,78 @@
+
diff --git a/frontend/src/assets/sources/johns-hopkins-all-childrens-hospital-inc.png b/frontend/src/assets/sources/johns-hopkins-all-childrens-hospital-inc.png
new file mode 100644
index 00000000..cdb32b95
Binary files /dev/null and b/frontend/src/assets/sources/johns-hopkins-all-childrens-hospital-inc.png differ
diff --git a/frontend/src/assets/sources/johnson-county-hospital.png b/frontend/src/assets/sources/johnson-county-hospital.png
new file mode 100644
index 00000000..f87be23f
Binary files /dev/null and b/frontend/src/assets/sources/johnson-county-hospital.png differ
diff --git a/frontend/src/assets/sources/johnson-memorial-hospital.png b/frontend/src/assets/sources/johnson-memorial-hospital.png
new file mode 100644
index 00000000..82acb62f
Binary files /dev/null and b/frontend/src/assets/sources/johnson-memorial-hospital.png differ
diff --git a/frontend/src/assets/sources/joint-and-muscle-medical-care-pc.png b/frontend/src/assets/sources/joint-and-muscle-medical-care-pc.png
new file mode 100644
index 00000000..2ee6e8e6
Binary files /dev/null and b/frontend/src/assets/sources/joint-and-muscle-medical-care-pc.png differ
diff --git a/frontend/src/assets/sources/jones-allergy-and-asthma-center.jpg b/frontend/src/assets/sources/jones-allergy-and-asthma-center.jpg
new file mode 100644
index 00000000..d353f082
Binary files /dev/null and b/frontend/src/assets/sources/jones-allergy-and-asthma-center.jpg differ
diff --git a/frontend/src/assets/sources/jordan-valley-community-health-center.jpg b/frontend/src/assets/sources/jordan-valley-community-health-center.jpg
new file mode 100644
index 00000000..961186bc
Binary files /dev/null and b/frontend/src/assets/sources/jordan-valley-community-health-center.jpg differ
diff --git a/frontend/src/assets/sources/jorge-martinez-md.png b/frontend/src/assets/sources/jorge-martinez-md.png
new file mode 100644
index 00000000..b0a05cb1
Binary files /dev/null and b/frontend/src/assets/sources/jorge-martinez-md.png differ
diff --git a/frontend/src/assets/sources/joseph-a-harrison-md.png b/frontend/src/assets/sources/joseph-a-harrison-md.png
new file mode 100644
index 00000000..98aca885
Binary files /dev/null and b/frontend/src/assets/sources/joseph-a-harrison-md.png differ
diff --git a/frontend/src/assets/sources/joseph-j-pachorek-md-facp.svg b/frontend/src/assets/sources/joseph-j-pachorek-md-facp.svg
new file mode 100644
index 00000000..f987d634
--- /dev/null
+++ b/frontend/src/assets/sources/joseph-j-pachorek-md-facp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/joseph-li-md.svg b/frontend/src/assets/sources/joseph-li-md.svg
new file mode 100644
index 00000000..f987d634
--- /dev/null
+++ b/frontend/src/assets/sources/joseph-li-md.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/joseph-m-lavi-md.svg b/frontend/src/assets/sources/joseph-m-lavi-md.svg
new file mode 100644
index 00000000..10cd5daf
--- /dev/null
+++ b/frontend/src/assets/sources/joseph-m-lavi-md.svg
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/juan-mocega-md.png b/frontend/src/assets/sources/juan-mocega-md.png
new file mode 100644
index 00000000..13a05df9
Binary files /dev/null and b/frontend/src/assets/sources/juan-mocega-md.png differ
diff --git a/frontend/src/assets/sources/julie-lorber-md.png b/frontend/src/assets/sources/julie-lorber-md.png
new file mode 100644
index 00000000..a5c75b9b
Binary files /dev/null and b/frontend/src/assets/sources/julie-lorber-md.png differ
diff --git a/frontend/src/assets/sources/jupiter-medical-center.png b/frontend/src/assets/sources/jupiter-medical-center.png
new file mode 100644
index 00000000..fa19354c
Binary files /dev/null and b/frontend/src/assets/sources/jupiter-medical-center.png differ
diff --git a/frontend/src/assets/sources/kadin-foot-and-ankle-center.jpg b/frontend/src/assets/sources/kadin-foot-and-ankle-center.jpg
new file mode 100644
index 00000000..94f0b344
Binary files /dev/null and b/frontend/src/assets/sources/kadin-foot-and-ankle-center.jpg differ
diff --git a/frontend/src/assets/sources/kahuku-medical-center.png b/frontend/src/assets/sources/kahuku-medical-center.png
new file mode 100644
index 00000000..d978eedd
Binary files /dev/null and b/frontend/src/assets/sources/kahuku-medical-center.png differ
diff --git a/frontend/src/assets/sources/kalamazoo-gastroenterology-hepatology.jpg b/frontend/src/assets/sources/kalamazoo-gastroenterology-hepatology.jpg
new file mode 100644
index 00000000..35d36172
Binary files /dev/null and b/frontend/src/assets/sources/kalamazoo-gastroenterology-hepatology.jpg differ
diff --git a/frontend/src/assets/sources/kalamazoo-gastroenterology-hepatology.png b/frontend/src/assets/sources/kalamazoo-gastroenterology-hepatology.png
new file mode 100644
index 00000000..c50f0799
Binary files /dev/null and b/frontend/src/assets/sources/kalamazoo-gastroenterology-hepatology.png differ
diff --git a/frontend/src/assets/sources/kalamazoo-ophthalmology-pc.png b/frontend/src/assets/sources/kalamazoo-ophthalmology-pc.png
new file mode 100644
index 00000000..ff9be7ce
Binary files /dev/null and b/frontend/src/assets/sources/kalamazoo-ophthalmology-pc.png differ
diff --git a/frontend/src/assets/sources/kaleida-health.jpg b/frontend/src/assets/sources/kaleida-health.jpg
new file mode 100644
index 00000000..0ff4f0d8
Binary files /dev/null and b/frontend/src/assets/sources/kaleida-health.jpg differ
diff --git a/frontend/src/assets/sources/kalyani-eye-care-llc.png b/frontend/src/assets/sources/kalyani-eye-care-llc.png
new file mode 100644
index 00000000..455bdd4d
Binary files /dev/null and b/frontend/src/assets/sources/kalyani-eye-care-llc.png differ
diff --git a/frontend/src/assets/sources/kamran-khan-sc.png b/frontend/src/assets/sources/kamran-khan-sc.png
new file mode 100644
index 00000000..6b36b0ad
Binary files /dev/null and b/frontend/src/assets/sources/kamran-khan-sc.png differ
diff --git a/frontend/src/assets/sources/kandula-surgical-associates.png b/frontend/src/assets/sources/kandula-surgical-associates.png
new file mode 100644
index 00000000..94402ff8
Binary files /dev/null and b/frontend/src/assets/sources/kandula-surgical-associates.png differ
diff --git a/frontend/src/assets/sources/kane-county-hospital.png b/frontend/src/assets/sources/kane-county-hospital.png
new file mode 100644
index 00000000..94cc2de3
Binary files /dev/null and b/frontend/src/assets/sources/kane-county-hospital.png differ
diff --git a/frontend/src/assets/sources/kane-hall-barry-neurology.png b/frontend/src/assets/sources/kane-hall-barry-neurology.png
new file mode 100644
index 00000000..8a3a0425
Binary files /dev/null and b/frontend/src/assets/sources/kane-hall-barry-neurology.png differ
diff --git a/frontend/src/assets/sources/kansas-city-dermatology.png b/frontend/src/assets/sources/kansas-city-dermatology.png
new file mode 100644
index 00000000..46e39503
Binary files /dev/null and b/frontend/src/assets/sources/kansas-city-dermatology.png differ
diff --git a/frontend/src/assets/sources/kansas-city-physician-partners-inc.jpg b/frontend/src/assets/sources/kansas-city-physician-partners-inc.jpg
new file mode 100644
index 00000000..98865212
Binary files /dev/null and b/frontend/src/assets/sources/kansas-city-physician-partners-inc.jpg differ
diff --git a/frontend/src/assets/sources/kansas-city-physician-partners-inc.png b/frontend/src/assets/sources/kansas-city-physician-partners-inc.png
new file mode 100644
index 00000000..f7129f30
Binary files /dev/null and b/frontend/src/assets/sources/kansas-city-physician-partners-inc.png differ
diff --git a/frontend/src/assets/sources/kansas-medical-center.png b/frontend/src/assets/sources/kansas-medical-center.png
new file mode 100644
index 00000000..e8b3e381
Binary files /dev/null and b/frontend/src/assets/sources/kansas-medical-center.png differ
diff --git a/frontend/src/assets/sources/kansas-urgent-care.png b/frontend/src/assets/sources/kansas-urgent-care.png
new file mode 100644
index 00000000..d5aeb0f3
Binary files /dev/null and b/frontend/src/assets/sources/kansas-urgent-care.png differ
diff --git a/frontend/src/assets/sources/karim-healthcare.png b/frontend/src/assets/sources/karim-healthcare.png
new file mode 100644
index 00000000..6f67ad50
Binary files /dev/null and b/frontend/src/assets/sources/karim-healthcare.png differ
diff --git a/frontend/src/assets/sources/karing-hearts-cardiology.jpg b/frontend/src/assets/sources/karing-hearts-cardiology.jpg
new file mode 100644
index 00000000..07a64716
Binary files /dev/null and b/frontend/src/assets/sources/karing-hearts-cardiology.jpg differ
diff --git a/frontend/src/assets/sources/katherine-shaw-bethea-hospital.png b/frontend/src/assets/sources/katherine-shaw-bethea-hospital.png
new file mode 100644
index 00000000..87a1853a
Binary files /dev/null and b/frontend/src/assets/sources/katherine-shaw-bethea-hospital.png differ
diff --git a/frontend/src/assets/sources/kathryn-amacher-d-o.svg b/frontend/src/assets/sources/kathryn-amacher-d-o.svg
new file mode 100644
index 00000000..d03b6308
--- /dev/null
+++ b/frontend/src/assets/sources/kathryn-amacher-d-o.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/katzen-medical-associates.png b/frontend/src/assets/sources/katzen-medical-associates.png
new file mode 100644
index 00000000..439ec557
Binary files /dev/null and b/frontend/src/assets/sources/katzen-medical-associates.png differ
diff --git a/frontend/src/assets/sources/kaweah-health.png b/frontend/src/assets/sources/kaweah-health.png
new file mode 100644
index 00000000..173714eb
Binary files /dev/null and b/frontend/src/assets/sources/kaweah-health.png differ
diff --git a/frontend/src/assets/sources/kcs-health-center.png b/frontend/src/assets/sources/kcs-health-center.png
new file mode 100644
index 00000000..7aa0dabf
Binary files /dev/null and b/frontend/src/assets/sources/kcs-health-center.png differ
diff --git a/frontend/src/assets/sources/keck-medicine-of-usc.png b/frontend/src/assets/sources/keck-medicine-of-usc.png
new file mode 100644
index 00000000..fea85e11
Binary files /dev/null and b/frontend/src/assets/sources/keck-medicine-of-usc.png differ
diff --git a/frontend/src/assets/sources/kenneth-j-rosenthal-md-pc.png b/frontend/src/assets/sources/kenneth-j-rosenthal-md-pc.png
new file mode 100644
index 00000000..f0d8c360
Binary files /dev/null and b/frontend/src/assets/sources/kenneth-j-rosenthal-md-pc.png differ
diff --git a/frontend/src/assets/sources/kenneth-p-tway-md-facc.jpg b/frontend/src/assets/sources/kenneth-p-tway-md-facc.jpg
new file mode 100644
index 00000000..cb31f27c
Binary files /dev/null and b/frontend/src/assets/sources/kenneth-p-tway-md-facc.jpg differ
diff --git a/frontend/src/assets/sources/kennrick-j-dennis-dpm.png b/frontend/src/assets/sources/kennrick-j-dennis-dpm.png
new file mode 100644
index 00000000..08e19808
Binary files /dev/null and b/frontend/src/assets/sources/kennrick-j-dennis-dpm.png differ
diff --git a/frontend/src/assets/sources/kentuckiana-rheumatology.jpg b/frontend/src/assets/sources/kentuckiana-rheumatology.jpg
new file mode 100644
index 00000000..282b7f2e
Binary files /dev/null and b/frontend/src/assets/sources/kentuckiana-rheumatology.jpg differ
diff --git a/frontend/src/assets/sources/kentucky-obh-practice.jpg b/frontend/src/assets/sources/kentucky-obh-practice.jpg
new file mode 100644
index 00000000..b3cf0a9b
Binary files /dev/null and b/frontend/src/assets/sources/kentucky-obh-practice.jpg differ
diff --git a/frontend/src/assets/sources/kern-county-hospital-authority.png b/frontend/src/assets/sources/kern-county-hospital-authority.png
new file mode 100644
index 00000000..3f285b16
Binary files /dev/null and b/frontend/src/assets/sources/kern-county-hospital-authority.png differ
diff --git a/frontend/src/assets/sources/key-clinics-llc.svg b/frontend/src/assets/sources/key-clinics-llc.svg
new file mode 100644
index 00000000..84527888
--- /dev/null
+++ b/frontend/src/assets/sources/key-clinics-llc.svg
@@ -0,0 +1,97 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/kidney-and-hypertension-center.png b/frontend/src/assets/sources/kidney-and-hypertension-center.png
new file mode 100644
index 00000000..9f2e0b58
Binary files /dev/null and b/frontend/src/assets/sources/kidney-and-hypertension-center.png differ
diff --git a/frontend/src/assets/sources/kidz-medical-services-miami.png b/frontend/src/assets/sources/kidz-medical-services-miami.png
new file mode 100644
index 00000000..9c072ebe
Binary files /dev/null and b/frontend/src/assets/sources/kidz-medical-services-miami.png differ
diff --git a/frontend/src/assets/sources/kings-highway-electro-diagnostic.png b/frontend/src/assets/sources/kings-highway-electro-diagnostic.png
new file mode 100644
index 00000000..9e42ce8f
Binary files /dev/null and b/frontend/src/assets/sources/kings-highway-electro-diagnostic.png differ
diff --git a/frontend/src/assets/sources/kings-view-corporation.png b/frontend/src/assets/sources/kings-view-corporation.png
new file mode 100644
index 00000000..4d950394
Binary files /dev/null and b/frontend/src/assets/sources/kings-view-corporation.png differ
diff --git a/frontend/src/assets/sources/kings-view-del-norte.png b/frontend/src/assets/sources/kings-view-del-norte.png
new file mode 100644
index 00000000..4d950394
Binary files /dev/null and b/frontend/src/assets/sources/kings-view-del-norte.png differ
diff --git a/frontend/src/assets/sources/kinston-community-health-center.png b/frontend/src/assets/sources/kinston-community-health-center.png
new file mode 100644
index 00000000..03817927
Binary files /dev/null and b/frontend/src/assets/sources/kinston-community-health-center.png differ
diff --git a/frontend/src/assets/sources/kiowa-county-memorial-hospital.jpg b/frontend/src/assets/sources/kiowa-county-memorial-hospital.jpg
new file mode 100644
index 00000000..4ca939a1
Binary files /dev/null and b/frontend/src/assets/sources/kiowa-county-memorial-hospital.jpg differ
diff --git a/frontend/src/assets/sources/kiowa-district-hospital.jpg b/frontend/src/assets/sources/kiowa-district-hospital.jpg
new file mode 100644
index 00000000..4cc5463d
Binary files /dev/null and b/frontend/src/assets/sources/kiowa-district-hospital.jpg differ
diff --git a/frontend/src/assets/sources/kiritkumar-s-shah-md.png b/frontend/src/assets/sources/kiritkumar-s-shah-md.png
new file mode 100644
index 00000000..8bfd0572
Binary files /dev/null and b/frontend/src/assets/sources/kiritkumar-s-shah-md.png differ
diff --git a/frontend/src/assets/sources/kishor-vachhani-md-inc.svg b/frontend/src/assets/sources/kishor-vachhani-md-inc.svg
new file mode 100644
index 00000000..2e7480ee
--- /dev/null
+++ b/frontend/src/assets/sources/kishor-vachhani-md-inc.svg
@@ -0,0 +1,224 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/kittitas-valley-healthcare.png b/frontend/src/assets/sources/kittitas-valley-healthcare.png
new file mode 100644
index 00000000..a2c10b44
Binary files /dev/null and b/frontend/src/assets/sources/kittitas-valley-healthcare.png differ
diff --git a/frontend/src/assets/sources/klallam-counseling-services.png b/frontend/src/assets/sources/klallam-counseling-services.png
new file mode 100644
index 00000000..7413701a
Binary files /dev/null and b/frontend/src/assets/sources/klallam-counseling-services.png differ
diff --git a/frontend/src/assets/sources/klamath-tribal-health-and-family-services.png b/frontend/src/assets/sources/klamath-tribal-health-and-family-services.png
new file mode 100644
index 00000000..4b164a10
Binary files /dev/null and b/frontend/src/assets/sources/klamath-tribal-health-and-family-services.png differ
diff --git a/frontend/src/assets/sources/klm-ophthalmology.png b/frontend/src/assets/sources/klm-ophthalmology.png
new file mode 100644
index 00000000..9f076a1a
Binary files /dev/null and b/frontend/src/assets/sources/klm-ophthalmology.png differ
diff --git a/frontend/src/assets/sources/knoxville-hospitals-and-clinics.jpg b/frontend/src/assets/sources/knoxville-hospitals-and-clinics.jpg
new file mode 100644
index 00000000..db08e359
Binary files /dev/null and b/frontend/src/assets/sources/knoxville-hospitals-and-clinics.jpg differ
diff --git a/frontend/src/assets/sources/kolli-medical-corporation-redlands.png b/frontend/src/assets/sources/kolli-medical-corporation-redlands.png
new file mode 100644
index 00000000..b0a05cb1
Binary files /dev/null and b/frontend/src/assets/sources/kolli-medical-corporation-redlands.png differ
diff --git a/frontend/src/assets/sources/kootenai-outpatient-surgery.jpg b/frontend/src/assets/sources/kootenai-outpatient-surgery.jpg
new file mode 100644
index 00000000..c56f6c0a
Binary files /dev/null and b/frontend/src/assets/sources/kootenai-outpatient-surgery.jpg differ
diff --git a/frontend/src/assets/sources/kossuth-regional-health-center.jpg b/frontend/src/assets/sources/kossuth-regional-health-center.jpg
new file mode 100644
index 00000000..625f13bf
Binary files /dev/null and b/frontend/src/assets/sources/kossuth-regional-health-center.jpg differ
diff --git a/frontend/src/assets/sources/kuakini-medical-center.jpg b/frontend/src/assets/sources/kuakini-medical-center.jpg
new file mode 100644
index 00000000..e751a1ba
Binary files /dev/null and b/frontend/src/assets/sources/kuakini-medical-center.jpg differ
diff --git a/frontend/src/assets/sources/kunesh-eye-surgery-center.png b/frontend/src/assets/sources/kunesh-eye-surgery-center.png
new file mode 100644
index 00000000..236cf286
Binary files /dev/null and b/frontend/src/assets/sources/kunesh-eye-surgery-center.png differ
diff --git a/frontend/src/assets/sources/la-care-health-plan.png b/frontend/src/assets/sources/la-care-health-plan.png
new file mode 100644
index 00000000..a5bf0ac4
Binary files /dev/null and b/frontend/src/assets/sources/la-care-health-plan.png differ
diff --git a/frontend/src/assets/sources/la-frontera-empact-spc.png b/frontend/src/assets/sources/la-frontera-empact-spc.png
new file mode 100644
index 00000000..2e691d01
Binary files /dev/null and b/frontend/src/assets/sources/la-frontera-empact-spc.png differ
diff --git a/frontend/src/assets/sources/la-maestra-community-health-centers.png b/frontend/src/assets/sources/la-maestra-community-health-centers.png
new file mode 100644
index 00000000..b7ac1e57
Binary files /dev/null and b/frontend/src/assets/sources/la-maestra-community-health-centers.png differ
diff --git a/frontend/src/assets/sources/la-maestra-social-determinants-of-health.jpg b/frontend/src/assets/sources/la-maestra-social-determinants-of-health.jpg
new file mode 100644
index 00000000..56a4b0dd
Binary files /dev/null and b/frontend/src/assets/sources/la-maestra-social-determinants-of-health.jpg differ
diff --git a/frontend/src/assets/sources/la-maestra-social-determinants-of-health.png b/frontend/src/assets/sources/la-maestra-social-determinants-of-health.png
new file mode 100644
index 00000000..8c15aad6
Binary files /dev/null and b/frontend/src/assets/sources/la-maestra-social-determinants-of-health.png differ
diff --git a/frontend/src/assets/sources/lacy-coker-kessler-md-pa.jpg b/frontend/src/assets/sources/lacy-coker-kessler-md-pa.jpg
new file mode 100644
index 00000000..92ca5c72
Binary files /dev/null and b/frontend/src/assets/sources/lacy-coker-kessler-md-pa.jpg differ
diff --git a/frontend/src/assets/sources/lafayette-family-footcare.png b/frontend/src/assets/sources/lafayette-family-footcare.png
new file mode 100644
index 00000000..0efeb0ec
Binary files /dev/null and b/frontend/src/assets/sources/lafayette-family-footcare.png differ
diff --git a/frontend/src/assets/sources/lake-country-orthopedics.png b/frontend/src/assets/sources/lake-country-orthopedics.png
new file mode 100644
index 00000000..9dce0533
Binary files /dev/null and b/frontend/src/assets/sources/lake-country-orthopedics.png differ
diff --git a/frontend/src/assets/sources/lake-country-physical-therapy.jpg b/frontend/src/assets/sources/lake-country-physical-therapy.jpg
new file mode 100644
index 00000000..7f84cc55
Binary files /dev/null and b/frontend/src/assets/sources/lake-country-physical-therapy.jpg differ
diff --git a/frontend/src/assets/sources/lake-country-physical-therapy.png b/frontend/src/assets/sources/lake-country-physical-therapy.png
new file mode 100644
index 00000000..61cf2d86
Binary files /dev/null and b/frontend/src/assets/sources/lake-country-physical-therapy.png differ
diff --git a/frontend/src/assets/sources/lake-county-health-department-chc.png b/frontend/src/assets/sources/lake-county-health-department-chc.png
new file mode 100644
index 00000000..a86891d3
Binary files /dev/null and b/frontend/src/assets/sources/lake-county-health-department-chc.png differ
diff --git a/frontend/src/assets/sources/lake-cumberland-rheumatology.png b/frontend/src/assets/sources/lake-cumberland-rheumatology.png
new file mode 100644
index 00000000..d66790d7
Binary files /dev/null and b/frontend/src/assets/sources/lake-cumberland-rheumatology.png differ
diff --git a/frontend/src/assets/sources/lake-forest-medical-group-inc.jpg b/frontend/src/assets/sources/lake-forest-medical-group-inc.jpg
new file mode 100644
index 00000000..085dc115
Binary files /dev/null and b/frontend/src/assets/sources/lake-forest-medical-group-inc.jpg differ
diff --git a/frontend/src/assets/sources/lake-forest-medical-group-inc.png b/frontend/src/assets/sources/lake-forest-medical-group-inc.png
new file mode 100644
index 00000000..b0aa037d
Binary files /dev/null and b/frontend/src/assets/sources/lake-forest-medical-group-inc.png differ
diff --git a/frontend/src/assets/sources/lake-havasu-unified-school-district.png b/frontend/src/assets/sources/lake-havasu-unified-school-district.png
new file mode 100644
index 00000000..24e5ab2e
Binary files /dev/null and b/frontend/src/assets/sources/lake-havasu-unified-school-district.png differ
diff --git a/frontend/src/assets/sources/lake-health-district.png b/frontend/src/assets/sources/lake-health-district.png
new file mode 100644
index 00000000..f1dcb7d1
Binary files /dev/null and b/frontend/src/assets/sources/lake-health-district.png differ
diff --git a/frontend/src/assets/sources/lake-health.svg b/frontend/src/assets/sources/lake-health.svg
new file mode 100644
index 00000000..c9ca38bd
--- /dev/null
+++ b/frontend/src/assets/sources/lake-health.svg
@@ -0,0 +1,168 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/lake-pointe-obh.svg b/frontend/src/assets/sources/lake-pointe-obh.svg
new file mode 100644
index 00000000..2fd53168
--- /dev/null
+++ b/frontend/src/assets/sources/lake-pointe-obh.svg
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/lake-region-healthcare-corporation.jpg b/frontend/src/assets/sources/lake-region-healthcare-corporation.jpg
new file mode 100644
index 00000000..50e74d7e
Binary files /dev/null and b/frontend/src/assets/sources/lake-region-healthcare-corporation.jpg differ
diff --git a/frontend/src/assets/sources/lake-wales-foot-and-ankle.jpg b/frontend/src/assets/sources/lake-wales-foot-and-ankle.jpg
new file mode 100644
index 00000000..44a4cc3a
Binary files /dev/null and b/frontend/src/assets/sources/lake-wales-foot-and-ankle.jpg differ
diff --git a/frontend/src/assets/sources/lake-wales-foot-and-ankle.png b/frontend/src/assets/sources/lake-wales-foot-and-ankle.png
new file mode 100644
index 00000000..7408aade
Binary files /dev/null and b/frontend/src/assets/sources/lake-wales-foot-and-ankle.png differ
diff --git a/frontend/src/assets/sources/lakeland-asc.png b/frontend/src/assets/sources/lakeland-asc.png
new file mode 100644
index 00000000..3337f5fd
Binary files /dev/null and b/frontend/src/assets/sources/lakeland-asc.png differ
diff --git a/frontend/src/assets/sources/lakeland-regional-health-systems-inc.svg b/frontend/src/assets/sources/lakeland-regional-health-systems-inc.svg
new file mode 100644
index 00000000..c296e7e9
--- /dev/null
+++ b/frontend/src/assets/sources/lakeland-regional-health-systems-inc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/lakeland-vascular-care.png b/frontend/src/assets/sources/lakeland-vascular-care.png
new file mode 100644
index 00000000..36e8d64a
Binary files /dev/null and b/frontend/src/assets/sources/lakeland-vascular-care.png differ
diff --git a/frontend/src/assets/sources/lakeside-pain-center.jpg b/frontend/src/assets/sources/lakeside-pain-center.jpg
new file mode 100644
index 00000000..aa7f23f5
Binary files /dev/null and b/frontend/src/assets/sources/lakeside-pain-center.jpg differ
diff --git a/frontend/src/assets/sources/lakeside-surgery-p-a.png b/frontend/src/assets/sources/lakeside-surgery-p-a.png
new file mode 100644
index 00000000..9c2e0354
Binary files /dev/null and b/frontend/src/assets/sources/lakeside-surgery-p-a.png differ
diff --git a/frontend/src/assets/sources/lancaster-neuroscience-and-spine-assoc.svg b/frontend/src/assets/sources/lancaster-neuroscience-and-spine-assoc.svg
new file mode 100644
index 00000000..c73cb446
--- /dev/null
+++ b/frontend/src/assets/sources/lancaster-neuroscience-and-spine-assoc.svg
@@ -0,0 +1,260 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/lane-county-hospital.png b/frontend/src/assets/sources/lane-county-hospital.png
new file mode 100644
index 00000000..5140345a
Binary files /dev/null and b/frontend/src/assets/sources/lane-county-hospital.png differ
diff --git a/frontend/src/assets/sources/lane-county-medication-assisted-tx.jpg b/frontend/src/assets/sources/lane-county-medication-assisted-tx.jpg
new file mode 100644
index 00000000..d353f082
Binary files /dev/null and b/frontend/src/assets/sources/lane-county-medication-assisted-tx.jpg differ
diff --git a/frontend/src/assets/sources/laporte-regional-physician-network.jpg b/frontend/src/assets/sources/laporte-regional-physician-network.jpg
new file mode 100644
index 00000000..8df1b28a
Binary files /dev/null and b/frontend/src/assets/sources/laporte-regional-physician-network.jpg differ
diff --git a/frontend/src/assets/sources/laredo-endovascular.svg b/frontend/src/assets/sources/laredo-endovascular.svg
new file mode 100644
index 00000000..597b1ce0
--- /dev/null
+++ b/frontend/src/assets/sources/laredo-endovascular.svg
@@ -0,0 +1,188 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/larry-c-hughes-md.png b/frontend/src/assets/sources/larry-c-hughes-md.png
new file mode 100644
index 00000000..b0a05cb1
Binary files /dev/null and b/frontend/src/assets/sources/larry-c-hughes-md.png differ
diff --git a/frontend/src/assets/sources/larry-campoli-dpm.png b/frontend/src/assets/sources/larry-campoli-dpm.png
new file mode 100644
index 00000000..d745670a
Binary files /dev/null and b/frontend/src/assets/sources/larry-campoli-dpm.png differ
diff --git a/frontend/src/assets/sources/las-vegas-asc.png b/frontend/src/assets/sources/las-vegas-asc.png
new file mode 100644
index 00000000..a062c776
Binary files /dev/null and b/frontend/src/assets/sources/las-vegas-asc.png differ
diff --git a/frontend/src/assets/sources/laser-and-skin-surgery-center-of-new-york.svg b/frontend/src/assets/sources/laser-and-skin-surgery-center-of-new-york.svg
new file mode 100644
index 00000000..6cc59888
--- /dev/null
+++ b/frontend/src/assets/sources/laser-and-skin-surgery-center-of-new-york.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/laser-eye-institute.svg b/frontend/src/assets/sources/laser-eye-institute.svg
new file mode 100644
index 00000000..989f0d56
--- /dev/null
+++ b/frontend/src/assets/sources/laser-eye-institute.svg
@@ -0,0 +1,110 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/laurel-cosmetic-and-plastic-surgery.png b/frontend/src/assets/sources/laurel-cosmetic-and-plastic-surgery.png
new file mode 100644
index 00000000..8601d4c1
Binary files /dev/null and b/frontend/src/assets/sources/laurel-cosmetic-and-plastic-surgery.png differ
diff --git a/frontend/src/assets/sources/laurel-health-centers.jpg b/frontend/src/assets/sources/laurel-health-centers.jpg
new file mode 100644
index 00000000..7c01a393
Binary files /dev/null and b/frontend/src/assets/sources/laurel-health-centers.jpg differ
diff --git a/frontend/src/assets/sources/laurel-health-centers.png b/frontend/src/assets/sources/laurel-health-centers.png
new file mode 100644
index 00000000..c1d1d5d9
Binary files /dev/null and b/frontend/src/assets/sources/laurel-health-centers.png differ
diff --git a/frontend/src/assets/sources/laurel-laser-and-surgery-center.jpg b/frontend/src/assets/sources/laurel-laser-and-surgery-center.jpg
new file mode 100644
index 00000000..1099700f
Binary files /dev/null and b/frontend/src/assets/sources/laurel-laser-and-surgery-center.jpg differ
diff --git a/frontend/src/assets/sources/laurel-laser-and-surgery-center.png b/frontend/src/assets/sources/laurel-laser-and-surgery-center.png
new file mode 100644
index 00000000..0cbb142c
Binary files /dev/null and b/frontend/src/assets/sources/laurel-laser-and-surgery-center.png differ
diff --git a/frontend/src/assets/sources/laurel-ob-gyn.png b/frontend/src/assets/sources/laurel-ob-gyn.png
new file mode 100644
index 00000000..861fd771
Binary files /dev/null and b/frontend/src/assets/sources/laurel-ob-gyn.png differ
diff --git a/frontend/src/assets/sources/lavac-medical-group.png b/frontend/src/assets/sources/lavac-medical-group.png
new file mode 100644
index 00000000..edbbacc8
Binary files /dev/null and b/frontend/src/assets/sources/lavac-medical-group.png differ
diff --git a/frontend/src/assets/sources/lavaca-medical-center.png b/frontend/src/assets/sources/lavaca-medical-center.png
new file mode 100644
index 00000000..608a4ffe
Binary files /dev/null and b/frontend/src/assets/sources/lavaca-medical-center.png differ
diff --git a/frontend/src/assets/sources/lawrence-cheung-md.jpg b/frontend/src/assets/sources/lawrence-cheung-md.jpg
new file mode 100644
index 00000000..3bc453a0
Binary files /dev/null and b/frontend/src/assets/sources/lawrence-cheung-md.jpg differ
diff --git a/frontend/src/assets/sources/lawrence-cheung-md.png b/frontend/src/assets/sources/lawrence-cheung-md.png
new file mode 100644
index 00000000..51ad4f9a
Binary files /dev/null and b/frontend/src/assets/sources/lawrence-cheung-md.png differ
diff --git a/frontend/src/assets/sources/lcmc-health-holdings-inc-d-b-a-east-jefferson-general-hospital.png b/frontend/src/assets/sources/lcmc-health-holdings-inc-d-b-a-east-jefferson-general-hospital.png
new file mode 100644
index 00000000..64a1df52
Binary files /dev/null and b/frontend/src/assets/sources/lcmc-health-holdings-inc-d-b-a-east-jefferson-general-hospital.png differ
diff --git a/frontend/src/assets/sources/lee-eye-center.jpg b/frontend/src/assets/sources/lee-eye-center.jpg
new file mode 100644
index 00000000..637f1d55
Binary files /dev/null and b/frontend/src/assets/sources/lee-eye-center.jpg differ
diff --git a/frontend/src/assets/sources/lee-surgery-center-llc.jpg b/frontend/src/assets/sources/lee-surgery-center-llc.jpg
new file mode 100644
index 00000000..637f1d55
Binary files /dev/null and b/frontend/src/assets/sources/lee-surgery-center-llc.jpg differ
diff --git a/frontend/src/assets/sources/lehigh-eye-specialists.jpg b/frontend/src/assets/sources/lehigh-eye-specialists.jpg
new file mode 100644
index 00000000..60b1ab83
Binary files /dev/null and b/frontend/src/assets/sources/lehigh-eye-specialists.jpg differ
diff --git a/frontend/src/assets/sources/lehigh-eye-specialists.png b/frontend/src/assets/sources/lehigh-eye-specialists.png
new file mode 100644
index 00000000..13734756
Binary files /dev/null and b/frontend/src/assets/sources/lehigh-eye-specialists.png differ
diff --git a/frontend/src/assets/sources/lehigh-valley-family-practice-epic.svg b/frontend/src/assets/sources/lehigh-valley-family-practice-epic.svg
new file mode 100644
index 00000000..d6d82abd
--- /dev/null
+++ b/frontend/src/assets/sources/lehigh-valley-family-practice-epic.svg
@@ -0,0 +1 @@
+LVHN_logo
\ No newline at end of file
diff --git a/frontend/src/assets/sources/lehigh-valley-physician-group.png b/frontend/src/assets/sources/lehigh-valley-physician-group.png
new file mode 100644
index 00000000..a1386e6b
Binary files /dev/null and b/frontend/src/assets/sources/lehigh-valley-physician-group.png differ
diff --git a/frontend/src/assets/sources/lehigh-valley-vascular.png b/frontend/src/assets/sources/lehigh-valley-vascular.png
new file mode 100644
index 00000000..e5d3cc07
Binary files /dev/null and b/frontend/src/assets/sources/lehigh-valley-vascular.png differ
diff --git a/frontend/src/assets/sources/leidos-partnership-for-defense-health.png b/frontend/src/assets/sources/leidos-partnership-for-defense-health.png
new file mode 100644
index 00000000..4cf114c2
Binary files /dev/null and b/frontend/src/assets/sources/leidos-partnership-for-defense-health.png differ
diff --git a/frontend/src/assets/sources/leland-t-gilmore-dpm.png b/frontend/src/assets/sources/leland-t-gilmore-dpm.png
new file mode 100644
index 00000000..75385a20
Binary files /dev/null and b/frontend/src/assets/sources/leland-t-gilmore-dpm.png differ
diff --git a/frontend/src/assets/sources/leonard-plastic-surgery.jpg b/frontend/src/assets/sources/leonard-plastic-surgery.jpg
new file mode 100644
index 00000000..605f0a67
Binary files /dev/null and b/frontend/src/assets/sources/leonard-plastic-surgery.jpg differ
diff --git a/frontend/src/assets/sources/leonard-plastic-surgery.png b/frontend/src/assets/sources/leonard-plastic-surgery.png
new file mode 100644
index 00000000..3eb6ad40
Binary files /dev/null and b/frontend/src/assets/sources/leonard-plastic-surgery.png differ
diff --git a/frontend/src/assets/sources/levin-eye-care.png b/frontend/src/assets/sources/levin-eye-care.png
new file mode 100644
index 00000000..e1c63ff4
Binary files /dev/null and b/frontend/src/assets/sources/levin-eye-care.png differ
diff --git a/frontend/src/assets/sources/lewes-spine-center.png b/frontend/src/assets/sources/lewes-spine-center.png
new file mode 100644
index 00000000..5605bca7
Binary files /dev/null and b/frontend/src/assets/sources/lewes-spine-center.png differ
diff --git a/frontend/src/assets/sources/lewis-hargett-md.svg b/frontend/src/assets/sources/lewis-hargett-md.svg
new file mode 100644
index 00000000..eb8b1111
--- /dev/null
+++ b/frontend/src/assets/sources/lewis-hargett-md.svg
@@ -0,0 +1,113 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/lexington-regional-health-center.jpg b/frontend/src/assets/sources/lexington-regional-health-center.jpg
new file mode 100644
index 00000000..44bd8769
Binary files /dev/null and b/frontend/src/assets/sources/lexington-regional-health-center.jpg differ
diff --git a/frontend/src/assets/sources/liberty-hospital-physicians.jpg b/frontend/src/assets/sources/liberty-hospital-physicians.jpg
new file mode 100644
index 00000000..f3e68576
Binary files /dev/null and b/frontend/src/assets/sources/liberty-hospital-physicians.jpg differ
diff --git a/frontend/src/assets/sources/liberty-spine-and-pain-center-pc.png b/frontend/src/assets/sources/liberty-spine-and-pain-center-pc.png
new file mode 100644
index 00000000..bcdd63fe
Binary files /dev/null and b/frontend/src/assets/sources/liberty-spine-and-pain-center-pc.png differ
diff --git a/frontend/src/assets/sources/life-chiropractic-centers.jpg b/frontend/src/assets/sources/life-chiropractic-centers.jpg
new file mode 100644
index 00000000..2d39cbee
Binary files /dev/null and b/frontend/src/assets/sources/life-chiropractic-centers.jpg differ
diff --git a/frontend/src/assets/sources/life-university-clinics.png b/frontend/src/assets/sources/life-university-clinics.png
new file mode 100644
index 00000000..3b7e1953
Binary files /dev/null and b/frontend/src/assets/sources/life-university-clinics.png differ
diff --git a/frontend/src/assets/sources/lifebridge-health-inc.png b/frontend/src/assets/sources/lifebridge-health-inc.png
new file mode 100644
index 00000000..5316113c
Binary files /dev/null and b/frontend/src/assets/sources/lifebridge-health-inc.png differ
diff --git a/frontend/src/assets/sources/lifeline-medical-associates-llc.svg b/frontend/src/assets/sources/lifeline-medical-associates-llc.svg
new file mode 100644
index 00000000..0b926b7b
--- /dev/null
+++ b/frontend/src/assets/sources/lifeline-medical-associates-llc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/lifeline-pensacola-llc.png b/frontend/src/assets/sources/lifeline-pensacola-llc.png
new file mode 100644
index 00000000..71f4181e
Binary files /dev/null and b/frontend/src/assets/sources/lifeline-pensacola-llc.png differ
diff --git a/frontend/src/assets/sources/lifeline-vascular-center-albany-llc.png b/frontend/src/assets/sources/lifeline-vascular-center-albany-llc.png
new file mode 100644
index 00000000..b72a0c6f
Binary files /dev/null and b/frontend/src/assets/sources/lifeline-vascular-center-albany-llc.png differ
diff --git a/frontend/src/assets/sources/lifeline-vascular-ctr-niceville-llc.png b/frontend/src/assets/sources/lifeline-vascular-ctr-niceville-llc.png
new file mode 100644
index 00000000..b72a0c6f
Binary files /dev/null and b/frontend/src/assets/sources/lifeline-vascular-ctr-niceville-llc.png differ
diff --git a/frontend/src/assets/sources/lifepoint-corporate-services-general-partnership.png b/frontend/src/assets/sources/lifepoint-corporate-services-general-partnership.png
new file mode 100644
index 00000000..7e52a45a
Binary files /dev/null and b/frontend/src/assets/sources/lifepoint-corporate-services-general-partnership.png differ
diff --git a/frontend/src/assets/sources/lincoln-community-hospital-and-nursing-home.png b/frontend/src/assets/sources/lincoln-community-hospital-and-nursing-home.png
new file mode 100644
index 00000000..45e73030
Binary files /dev/null and b/frontend/src/assets/sources/lincoln-community-hospital-and-nursing-home.png differ
diff --git a/frontend/src/assets/sources/linda-alimadadian-do.png b/frontend/src/assets/sources/linda-alimadadian-do.png
new file mode 100644
index 00000000..8453e85e
Binary files /dev/null and b/frontend/src/assets/sources/linda-alimadadian-do.png differ
diff --git a/frontend/src/assets/sources/little-colorado-medical-center.png b/frontend/src/assets/sources/little-colorado-medical-center.png
new file mode 100644
index 00000000..e214bf99
Binary files /dev/null and b/frontend/src/assets/sources/little-colorado-medical-center.png differ
diff --git a/frontend/src/assets/sources/littleton-hospital-association-d-b-a-lrh.png b/frontend/src/assets/sources/littleton-hospital-association-d-b-a-lrh.png
new file mode 100644
index 00000000..f7175129
Binary files /dev/null and b/frontend/src/assets/sources/littleton-hospital-association-d-b-a-lrh.png differ
diff --git a/frontend/src/assets/sources/livingston-community-health.png b/frontend/src/assets/sources/livingston-community-health.png
new file mode 100644
index 00000000..5773de6c
Binary files /dev/null and b/frontend/src/assets/sources/livingston-community-health.png differ
diff --git a/frontend/src/assets/sources/livingston-hospital-and-healthcare-services-inc.png b/frontend/src/assets/sources/livingston-hospital-and-healthcare-services-inc.png
new file mode 100644
index 00000000..4f6c0812
Binary files /dev/null and b/frontend/src/assets/sources/livingston-hospital-and-healthcare-services-inc.png differ
diff --git a/frontend/src/assets/sources/livingston-vitreo-retinal-associates.svg b/frontend/src/assets/sources/livingston-vitreo-retinal-associates.svg
new file mode 100644
index 00000000..5a23ece2
--- /dev/null
+++ b/frontend/src/assets/sources/livingston-vitreo-retinal-associates.svg
@@ -0,0 +1,82 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/lmg-family-practice-pc-chiro.png b/frontend/src/assets/sources/lmg-family-practice-pc-chiro.png
new file mode 100644
index 00000000..f57b60e2
Binary files /dev/null and b/frontend/src/assets/sources/lmg-family-practice-pc-chiro.png differ
diff --git a/frontend/src/assets/sources/lmg-family-practice-pc.png b/frontend/src/assets/sources/lmg-family-practice-pc.png
new file mode 100644
index 00000000..f57b60e2
Binary files /dev/null and b/frontend/src/assets/sources/lmg-family-practice-pc.png differ
diff --git a/frontend/src/assets/sources/lmh-health.svg b/frontend/src/assets/sources/lmh-health.svg
new file mode 100644
index 00000000..5eb2820f
--- /dev/null
+++ b/frontend/src/assets/sources/lmh-health.svg
@@ -0,0 +1 @@
+Artboard 1
\ No newline at end of file
diff --git a/frontend/src/assets/sources/lo-eye-care.svg b/frontend/src/assets/sources/lo-eye-care.svg
new file mode 100644
index 00000000..e6dd5f70
--- /dev/null
+++ b/frontend/src/assets/sources/lo-eye-care.svg
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/logan-k-bundy-md.png b/frontend/src/assets/sources/logan-k-bundy-md.png
new file mode 100644
index 00000000..9a5f57f1
Binary files /dev/null and b/frontend/src/assets/sources/logan-k-bundy-md.png differ
diff --git a/frontend/src/assets/sources/logansport-memorial-hospital.svg b/frontend/src/assets/sources/logansport-memorial-hospital.svg
new file mode 100644
index 00000000..a057d25b
--- /dev/null
+++ b/frontend/src/assets/sources/logansport-memorial-hospital.svg
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/loma-linda-university-medical-center-murrieta.png b/frontend/src/assets/sources/loma-linda-university-medical-center-murrieta.png
new file mode 100644
index 00000000..a71372ed
Binary files /dev/null and b/frontend/src/assets/sources/loma-linda-university-medical-center-murrieta.png differ
diff --git a/frontend/src/assets/sources/lomibao-rheumatology-and-wellness-care.png b/frontend/src/assets/sources/lomibao-rheumatology-and-wellness-care.png
new file mode 100644
index 00000000..560fb846
Binary files /dev/null and b/frontend/src/assets/sources/lomibao-rheumatology-and-wellness-care.png differ
diff --git a/frontend/src/assets/sources/lone-star-circle-of-care.svg b/frontend/src/assets/sources/lone-star-circle-of-care.svg
new file mode 100644
index 00000000..9b5e2dcf
--- /dev/null
+++ b/frontend/src/assets/sources/lone-star-circle-of-care.svg
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/lonestar-vein-and-vascular-specialists.jpg b/frontend/src/assets/sources/lonestar-vein-and-vascular-specialists.jpg
new file mode 100644
index 00000000..d0e8f39e
Binary files /dev/null and b/frontend/src/assets/sources/lonestar-vein-and-vascular-specialists.jpg differ
diff --git a/frontend/src/assets/sources/long-beach-surgery-center.png b/frontend/src/assets/sources/long-beach-surgery-center.png
new file mode 100644
index 00000000..68fa86b6
Binary files /dev/null and b/frontend/src/assets/sources/long-beach-surgery-center.png differ
diff --git a/frontend/src/assets/sources/long-island-spine-specialists-pc.png b/frontend/src/assets/sources/long-island-spine-specialists-pc.png
new file mode 100644
index 00000000..7c1f0d38
Binary files /dev/null and b/frontend/src/assets/sources/long-island-spine-specialists-pc.png differ
diff --git a/frontend/src/assets/sources/lorain-county-health-and-dentistry.png b/frontend/src/assets/sources/lorain-county-health-and-dentistry.png
new file mode 100644
index 00000000..fdf7ab8c
Binary files /dev/null and b/frontend/src/assets/sources/lorain-county-health-and-dentistry.png differ
diff --git a/frontend/src/assets/sources/los-angeles-county-dept-of-health-services.svg b/frontend/src/assets/sources/los-angeles-county-dept-of-health-services.svg
new file mode 100644
index 00000000..30f83bcb
--- /dev/null
+++ b/frontend/src/assets/sources/los-angeles-county-dept-of-health-services.svg
@@ -0,0 +1 @@
+ dhs_logoCreated with Sketch.
\ No newline at end of file
diff --git a/frontend/src/assets/sources/los-angeles-jewish-home-for-the-aging.jpeg b/frontend/src/assets/sources/los-angeles-jewish-home-for-the-aging.jpeg
new file mode 100644
index 00000000..9bb413ed
Binary files /dev/null and b/frontend/src/assets/sources/los-angeles-jewish-home-for-the-aging.jpeg differ
diff --git a/frontend/src/assets/sources/los-barrios-unidos-community-clinic-inc.png b/frontend/src/assets/sources/los-barrios-unidos-community-clinic-inc.png
new file mode 100644
index 00000000..1f57e585
Binary files /dev/null and b/frontend/src/assets/sources/los-barrios-unidos-community-clinic-inc.png differ
diff --git a/frontend/src/assets/sources/louis-j-arno-md.png b/frontend/src/assets/sources/louis-j-arno-md.png
new file mode 100644
index 00000000..f23fb291
Binary files /dev/null and b/frontend/src/assets/sources/louis-j-arno-md.png differ
diff --git a/frontend/src/assets/sources/louisiana-pain-care-llc.png b/frontend/src/assets/sources/louisiana-pain-care-llc.png
new file mode 100644
index 00000000..6f62f35b
Binary files /dev/null and b/frontend/src/assets/sources/louisiana-pain-care-llc.png differ
diff --git a/frontend/src/assets/sources/lowell-surgical-associates.png b/frontend/src/assets/sources/lowell-surgical-associates.png
new file mode 100644
index 00000000..4c4f8584
Binary files /dev/null and b/frontend/src/assets/sources/lowell-surgical-associates.png differ
diff --git a/frontend/src/assets/sources/lower-elwha-health-department.png b/frontend/src/assets/sources/lower-elwha-health-department.png
new file mode 100644
index 00000000..7413701a
Binary files /dev/null and b/frontend/src/assets/sources/lower-elwha-health-department.png differ
diff --git a/frontend/src/assets/sources/lower-lights-christian-health-cnt.png b/frontend/src/assets/sources/lower-lights-christian-health-cnt.png
new file mode 100644
index 00000000..51e04628
Binary files /dev/null and b/frontend/src/assets/sources/lower-lights-christian-health-cnt.png differ
diff --git a/frontend/src/assets/sources/lscc-georgetown-womens-center.svg b/frontend/src/assets/sources/lscc-georgetown-womens-center.svg
new file mode 100644
index 00000000..9b5e2dcf
--- /dev/null
+++ b/frontend/src/assets/sources/lscc-georgetown-womens-center.svg
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/lubbock-heart-and-surgical-hospital.png b/frontend/src/assets/sources/lubbock-heart-and-surgical-hospital.png
new file mode 100644
index 00000000..87fec00f
Binary files /dev/null and b/frontend/src/assets/sources/lubbock-heart-and-surgical-hospital.png differ
diff --git a/frontend/src/assets/sources/ludwick-eye-center.svg b/frontend/src/assets/sources/ludwick-eye-center.svg
new file mode 100644
index 00000000..4f4ed7ec
--- /dev/null
+++ b/frontend/src/assets/sources/ludwick-eye-center.svg
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/ludwick-laser-and-surgery-center.png b/frontend/src/assets/sources/ludwick-laser-and-surgery-center.png
new file mode 100644
index 00000000..82cb3acf
Binary files /dev/null and b/frontend/src/assets/sources/ludwick-laser-and-surgery-center.png differ
diff --git a/frontend/src/assets/sources/luther-mangoba-md.png b/frontend/src/assets/sources/luther-mangoba-md.png
new file mode 100644
index 00000000..8859ea97
Binary files /dev/null and b/frontend/src/assets/sources/luther-mangoba-md.png differ
diff --git a/frontend/src/assets/sources/lvpg-matlv.png b/frontend/src/assets/sources/lvpg-matlv.png
new file mode 100644
index 00000000..04639c4e
Binary files /dev/null and b/frontend/src/assets/sources/lvpg-matlv.png differ
diff --git a/frontend/src/assets/sources/m-hugh-bailey-md-facs.png b/frontend/src/assets/sources/m-hugh-bailey-md-facs.png
new file mode 100644
index 00000000..12b4822f
Binary files /dev/null and b/frontend/src/assets/sources/m-hugh-bailey-md-facs.png differ
diff --git a/frontend/src/assets/sources/mackool-eye-institute.svg b/frontend/src/assets/sources/mackool-eye-institute.svg
new file mode 100644
index 00000000..1ef420e5
--- /dev/null
+++ b/frontend/src/assets/sources/mackool-eye-institute.svg
@@ -0,0 +1,79 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/macon-community-hospital.png b/frontend/src/assets/sources/macon-community-hospital.png
new file mode 100644
index 00000000..0d80f159
Binary files /dev/null and b/frontend/src/assets/sources/macon-community-hospital.png differ
diff --git a/frontend/src/assets/sources/macoupin-county-health-center.jpg b/frontend/src/assets/sources/macoupin-county-health-center.jpg
new file mode 100644
index 00000000..15718dc4
Binary files /dev/null and b/frontend/src/assets/sources/macoupin-county-health-center.jpg differ
diff --git a/frontend/src/assets/sources/madelia-community-hospital-and-clinic-d-b-a-madelia-health.jpg b/frontend/src/assets/sources/madelia-community-hospital-and-clinic-d-b-a-madelia-health.jpg
new file mode 100644
index 00000000..eeee6e97
Binary files /dev/null and b/frontend/src/assets/sources/madelia-community-hospital-and-clinic-d-b-a-madelia-health.jpg differ
diff --git a/frontend/src/assets/sources/madison-county-memorial-hospital.png b/frontend/src/assets/sources/madison-county-memorial-hospital.png
new file mode 100644
index 00000000..64ceb8c0
Binary files /dev/null and b/frontend/src/assets/sources/madison-county-memorial-hospital.png differ
diff --git a/frontend/src/assets/sources/madison-healthplex-and-sport-perf.png b/frontend/src/assets/sources/madison-healthplex-and-sport-perf.png
new file mode 100644
index 00000000..aab3ef55
Binary files /dev/null and b/frontend/src/assets/sources/madison-healthplex-and-sport-perf.png differ
diff --git a/frontend/src/assets/sources/madison-medical-dermatology-llc.jpg b/frontend/src/assets/sources/madison-medical-dermatology-llc.jpg
new file mode 100644
index 00000000..e2704d60
Binary files /dev/null and b/frontend/src/assets/sources/madison-medical-dermatology-llc.jpg differ
diff --git a/frontend/src/assets/sources/madison-rheumatology.png b/frontend/src/assets/sources/madison-rheumatology.png
new file mode 100644
index 00000000..140a0175
Binary files /dev/null and b/frontend/src/assets/sources/madison-rheumatology.png differ
diff --git a/frontend/src/assets/sources/madison-street-surgery-center-llc.svg b/frontend/src/assets/sources/madison-street-surgery-center-llc.svg
new file mode 100644
index 00000000..b6c0bc5a
--- /dev/null
+++ b/frontend/src/assets/sources/madison-street-surgery-center-llc.svg
@@ -0,0 +1,59 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/mae-physicians-surgery-center.png b/frontend/src/assets/sources/mae-physicians-surgery-center.png
new file mode 100644
index 00000000..c6e90b7b
Binary files /dev/null and b/frontend/src/assets/sources/mae-physicians-surgery-center.png differ
diff --git a/frontend/src/assets/sources/magruder-hospital.jpg b/frontend/src/assets/sources/magruder-hospital.jpg
new file mode 100644
index 00000000..008ca38a
Binary files /dev/null and b/frontend/src/assets/sources/magruder-hospital.jpg differ
diff --git a/frontend/src/assets/sources/magruder-hospital.svg b/frontend/src/assets/sources/magruder-hospital.svg
new file mode 100644
index 00000000..361f8c93
--- /dev/null
+++ b/frontend/src/assets/sources/magruder-hospital.svg
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/mahomet-specialty-clinic.jpg b/frontend/src/assets/sources/mahomet-specialty-clinic.jpg
new file mode 100644
index 00000000..3b4e3005
Binary files /dev/null and b/frontend/src/assets/sources/mahomet-specialty-clinic.jpg differ
diff --git a/frontend/src/assets/sources/mahomet-specialty-clinic.png b/frontend/src/assets/sources/mahomet-specialty-clinic.png
new file mode 100644
index 00000000..bc672a51
Binary files /dev/null and b/frontend/src/assets/sources/mahomet-specialty-clinic.png differ
diff --git a/frontend/src/assets/sources/mahoning-valley-asc.png b/frontend/src/assets/sources/mahoning-valley-asc.png
new file mode 100644
index 00000000..397268d2
Binary files /dev/null and b/frontend/src/assets/sources/mahoning-valley-asc.png differ
diff --git a/frontend/src/assets/sources/main-line-vascular-institute-asc.jpg b/frontend/src/assets/sources/main-line-vascular-institute-asc.jpg
new file mode 100644
index 00000000..f5219525
Binary files /dev/null and b/frontend/src/assets/sources/main-line-vascular-institute-asc.jpg differ
diff --git a/frontend/src/assets/sources/main-line-vascular-institute-asc.png b/frontend/src/assets/sources/main-line-vascular-institute-asc.png
new file mode 100644
index 00000000..c3e57304
Binary files /dev/null and b/frontend/src/assets/sources/main-line-vascular-institute-asc.png differ
diff --git a/frontend/src/assets/sources/main-line-vascular-institute-obl.png b/frontend/src/assets/sources/main-line-vascular-institute-obl.png
new file mode 100644
index 00000000..19124238
Binary files /dev/null and b/frontend/src/assets/sources/main-line-vascular-institute-obl.png differ
diff --git a/frontend/src/assets/sources/makrismd-llc.png b/frontend/src/assets/sources/makrismd-llc.png
new file mode 100644
index 00000000..5a0149b2
Binary files /dev/null and b/frontend/src/assets/sources/makrismd-llc.png differ
diff --git a/frontend/src/assets/sources/mammoth-hospital.png b/frontend/src/assets/sources/mammoth-hospital.png
new file mode 100644
index 00000000..94323067
Binary files /dev/null and b/frontend/src/assets/sources/mammoth-hospital.png differ
diff --git a/frontend/src/assets/sources/manasse-howard-m-md.svg b/frontend/src/assets/sources/manasse-howard-m-md.svg
new file mode 100644
index 00000000..69df8228
--- /dev/null
+++ b/frontend/src/assets/sources/manasse-howard-m-md.svg
@@ -0,0 +1 @@
+logo
\ No newline at end of file
diff --git a/frontend/src/assets/sources/manila-zaman-md-inc.png b/frontend/src/assets/sources/manila-zaman-md-inc.png
new file mode 100644
index 00000000..a59f885f
Binary files /dev/null and b/frontend/src/assets/sources/manila-zaman-md-inc.png differ
diff --git a/frontend/src/assets/sources/mann-eye-institute.png b/frontend/src/assets/sources/mann-eye-institute.png
new file mode 100644
index 00000000..93edc41a
Binary files /dev/null and b/frontend/src/assets/sources/mann-eye-institute.png differ
diff --git a/frontend/src/assets/sources/margaret-mary-community-hospital.jpeg b/frontend/src/assets/sources/margaret-mary-community-hospital.jpeg
new file mode 100644
index 00000000..99705566
Binary files /dev/null and b/frontend/src/assets/sources/margaret-mary-community-hospital.jpeg differ
diff --git a/frontend/src/assets/sources/maria-susan-a-buhay-maglunog-md.png b/frontend/src/assets/sources/maria-susan-a-buhay-maglunog-md.png
new file mode 100644
index 00000000..66faa9c5
Binary files /dev/null and b/frontend/src/assets/sources/maria-susan-a-buhay-maglunog-md.png differ
diff --git a/frontend/src/assets/sources/marias-healthcare-services-inc.jpg b/frontend/src/assets/sources/marias-healthcare-services-inc.jpg
new file mode 100644
index 00000000..e7f8ec41
Binary files /dev/null and b/frontend/src/assets/sources/marias-healthcare-services-inc.jpg differ
diff --git a/frontend/src/assets/sources/marimn-health-medical-center.png b/frontend/src/assets/sources/marimn-health-medical-center.png
new file mode 100644
index 00000000..7bd94001
Binary files /dev/null and b/frontend/src/assets/sources/marimn-health-medical-center.png differ
diff --git a/frontend/src/assets/sources/marin-community-clinics.png b/frontend/src/assets/sources/marin-community-clinics.png
new file mode 100644
index 00000000..f7129f30
Binary files /dev/null and b/frontend/src/assets/sources/marin-community-clinics.png differ
diff --git a/frontend/src/assets/sources/marlette-regional-hospital.png b/frontend/src/assets/sources/marlette-regional-hospital.png
new file mode 100644
index 00000000..47074558
Binary files /dev/null and b/frontend/src/assets/sources/marlette-regional-hospital.png differ
diff --git a/frontend/src/assets/sources/marshfield-clinic-health-system-inc.png b/frontend/src/assets/sources/marshfield-clinic-health-system-inc.png
new file mode 100644
index 00000000..4e89abd3
Binary files /dev/null and b/frontend/src/assets/sources/marshfield-clinic-health-system-inc.png differ
diff --git a/frontend/src/assets/sources/marta-blesa-md.png b/frontend/src/assets/sources/marta-blesa-md.png
new file mode 100644
index 00000000..66faa9c5
Binary files /dev/null and b/frontend/src/assets/sources/marta-blesa-md.png differ
diff --git a/frontend/src/assets/sources/martin-county-hospital-district.png b/frontend/src/assets/sources/martin-county-hospital-district.png
new file mode 100644
index 00000000..4d3808c4
Binary files /dev/null and b/frontend/src/assets/sources/martin-county-hospital-district.png differ
diff --git a/frontend/src/assets/sources/martin-luther-king-jr-community-hospital.png b/frontend/src/assets/sources/martin-luther-king-jr-community-hospital.png
new file mode 100644
index 00000000..75a7d3c4
Binary files /dev/null and b/frontend/src/assets/sources/martin-luther-king-jr-community-hospital.png differ
diff --git a/frontend/src/assets/sources/mary-free-bed-rehabilitation-hospital.jpeg b/frontend/src/assets/sources/mary-free-bed-rehabilitation-hospital.jpeg
new file mode 100644
index 00000000..3a5770b8
Binary files /dev/null and b/frontend/src/assets/sources/mary-free-bed-rehabilitation-hospital.jpeg differ
diff --git a/frontend/src/assets/sources/maryanne-freeman-brndjar-do-pc.jpg b/frontend/src/assets/sources/maryanne-freeman-brndjar-do-pc.jpg
new file mode 100644
index 00000000..6cc4808a
Binary files /dev/null and b/frontend/src/assets/sources/maryanne-freeman-brndjar-do-pc.jpg differ
diff --git a/frontend/src/assets/sources/maryland-eye-associates.png b/frontend/src/assets/sources/maryland-eye-associates.png
new file mode 100644
index 00000000..437967f7
Binary files /dev/null and b/frontend/src/assets/sources/maryland-eye-associates.png differ
diff --git a/frontend/src/assets/sources/maryville.png b/frontend/src/assets/sources/maryville.png
new file mode 100644
index 00000000..f64fddbf
Binary files /dev/null and b/frontend/src/assets/sources/maryville.png differ
diff --git a/frontend/src/assets/sources/masland-associates-inc.jpg b/frontend/src/assets/sources/masland-associates-inc.jpg
new file mode 100644
index 00000000..5e349cf6
Binary files /dev/null and b/frontend/src/assets/sources/masland-associates-inc.jpg differ
diff --git a/frontend/src/assets/sources/mason-eye-surgery-center.svg b/frontend/src/assets/sources/mason-eye-surgery-center.svg
new file mode 100644
index 00000000..1a0638e0
--- /dev/null
+++ b/frontend/src/assets/sources/mason-eye-surgery-center.svg
@@ -0,0 +1,48 @@
+
+
+
+ Vitadox Logo
+ Vitadox Trademark
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/massachusetts-eye-and-ear.svg b/frontend/src/assets/sources/massachusetts-eye-and-ear.svg
new file mode 100644
index 00000000..0f9af120
--- /dev/null
+++ b/frontend/src/assets/sources/massachusetts-eye-and-ear.svg
@@ -0,0 +1,234 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/maternal-and-family-health-services.png b/frontend/src/assets/sources/maternal-and-family-health-services.png
new file mode 100644
index 00000000..af67d928
Binary files /dev/null and b/frontend/src/assets/sources/maternal-and-family-health-services.png differ
diff --git a/frontend/src/assets/sources/mathias-primary-care-associates-inc.png b/frontend/src/assets/sources/mathias-primary-care-associates-inc.png
new file mode 100644
index 00000000..60639a72
Binary files /dev/null and b/frontend/src/assets/sources/mathias-primary-care-associates-inc.png differ
diff --git a/frontend/src/assets/sources/may-street-surgi-center.png b/frontend/src/assets/sources/may-street-surgi-center.png
new file mode 100644
index 00000000..a7cfbeca
Binary files /dev/null and b/frontend/src/assets/sources/may-street-surgi-center.png differ
diff --git a/frontend/src/assets/sources/mbmc-clinics.png b/frontend/src/assets/sources/mbmc-clinics.png
new file mode 100644
index 00000000..3187a4d9
Binary files /dev/null and b/frontend/src/assets/sources/mbmc-clinics.png differ
diff --git a/frontend/src/assets/sources/mbmc-psychiatrists.png b/frontend/src/assets/sources/mbmc-psychiatrists.png
new file mode 100644
index 00000000..4cc667e0
Binary files /dev/null and b/frontend/src/assets/sources/mbmc-psychiatrists.png differ
diff --git a/frontend/src/assets/sources/mcallen-surgeon.png b/frontend/src/assets/sources/mcallen-surgeon.png
new file mode 100644
index 00000000..63e63e34
Binary files /dev/null and b/frontend/src/assets/sources/mcallen-surgeon.png differ
diff --git a/frontend/src/assets/sources/mcdonough-district-hospital.png b/frontend/src/assets/sources/mcdonough-district-hospital.png
new file mode 100644
index 00000000..55865456
Binary files /dev/null and b/frontend/src/assets/sources/mcdonough-district-hospital.png differ
diff --git a/frontend/src/assets/sources/mcknight-clinic.png b/frontend/src/assets/sources/mcknight-clinic.png
new file mode 100644
index 00000000..9615dc7a
Binary files /dev/null and b/frontend/src/assets/sources/mcknight-clinic.png differ
diff --git a/frontend/src/assets/sources/mcknight-eye-center-p-c.png b/frontend/src/assets/sources/mcknight-eye-center-p-c.png
new file mode 100644
index 00000000..a29d450c
Binary files /dev/null and b/frontend/src/assets/sources/mcknight-eye-center-p-c.png differ
diff --git a/frontend/src/assets/sources/mcminnville-eye-clinic.png b/frontend/src/assets/sources/mcminnville-eye-clinic.png
new file mode 100644
index 00000000..f8942523
Binary files /dev/null and b/frontend/src/assets/sources/mcminnville-eye-clinic.png differ
diff --git a/frontend/src/assets/sources/meadville-medical-center-family-planning.png b/frontend/src/assets/sources/meadville-medical-center-family-planning.png
new file mode 100644
index 00000000..98049ed3
Binary files /dev/null and b/frontend/src/assets/sources/meadville-medical-center-family-planning.png differ
diff --git a/frontend/src/assets/sources/medac.svg b/frontend/src/assets/sources/medac.svg
new file mode 100644
index 00000000..053387ae
--- /dev/null
+++ b/frontend/src/assets/sources/medac.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/medallus-urgent-care.png b/frontend/src/assets/sources/medallus-urgent-care.png
new file mode 100644
index 00000000..05acd994
Binary files /dev/null and b/frontend/src/assets/sources/medallus-urgent-care.png differ
diff --git a/frontend/src/assets/sources/medcor-at-bayer.png b/frontend/src/assets/sources/medcor-at-bayer.png
new file mode 100644
index 00000000..9e6feab6
Binary files /dev/null and b/frontend/src/assets/sources/medcor-at-bayer.png differ
diff --git a/frontend/src/assets/sources/medcor-at-bechtel.png b/frontend/src/assets/sources/medcor-at-bechtel.png
new file mode 100644
index 00000000..9e6feab6
Binary files /dev/null and b/frontend/src/assets/sources/medcor-at-bechtel.png differ
diff --git a/frontend/src/assets/sources/medcor-at-comcast.png b/frontend/src/assets/sources/medcor-at-comcast.png
new file mode 100644
index 00000000..9e6feab6
Binary files /dev/null and b/frontend/src/assets/sources/medcor-at-comcast.png differ
diff --git a/frontend/src/assets/sources/medcor-at-commerce-casino.png b/frontend/src/assets/sources/medcor-at-commerce-casino.png
new file mode 100644
index 00000000..acaf0f36
Binary files /dev/null and b/frontend/src/assets/sources/medcor-at-commerce-casino.png differ
diff --git a/frontend/src/assets/sources/medcor-at-dc-juvenile-community-justice.png b/frontend/src/assets/sources/medcor-at-dc-juvenile-community-justice.png
new file mode 100644
index 00000000..e6cffa83
Binary files /dev/null and b/frontend/src/assets/sources/medcor-at-dc-juvenile-community-justice.png differ
diff --git a/frontend/src/assets/sources/medcor-at-deschutes-onsite-clinic.png b/frontend/src/assets/sources/medcor-at-deschutes-onsite-clinic.png
new file mode 100644
index 00000000..e6cffa83
Binary files /dev/null and b/frontend/src/assets/sources/medcor-at-deschutes-onsite-clinic.png differ
diff --git a/frontend/src/assets/sources/medcor-at-encore-wire.svg b/frontend/src/assets/sources/medcor-at-encore-wire.svg
new file mode 100644
index 00000000..3b5b58ab
--- /dev/null
+++ b/frontend/src/assets/sources/medcor-at-encore-wire.svg
@@ -0,0 +1,26 @@
+
+
+
+ logo white
+ Created with Sketch.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/medcor-at-forest-productions.png b/frontend/src/assets/sources/medcor-at-forest-productions.png
new file mode 100644
index 00000000..9e6feab6
Binary files /dev/null and b/frontend/src/assets/sources/medcor-at-forest-productions.png differ
diff --git a/frontend/src/assets/sources/medcor-at-genesisalkali.png b/frontend/src/assets/sources/medcor-at-genesisalkali.png
new file mode 100644
index 00000000..5ede7923
Binary files /dev/null and b/frontend/src/assets/sources/medcor-at-genesisalkali.png differ
diff --git a/frontend/src/assets/sources/medcor-at-nbc-universal.png b/frontend/src/assets/sources/medcor-at-nbc-universal.png
new file mode 100644
index 00000000..9e6feab6
Binary files /dev/null and b/frontend/src/assets/sources/medcor-at-nbc-universal.png differ
diff --git a/frontend/src/assets/sources/medcor-at-qpp.png b/frontend/src/assets/sources/medcor-at-qpp.png
new file mode 100644
index 00000000..3b92ebb6
Binary files /dev/null and b/frontend/src/assets/sources/medcor-at-qpp.png differ
diff --git a/frontend/src/assets/sources/medcor-at-rivian-automotives.jpg b/frontend/src/assets/sources/medcor-at-rivian-automotives.jpg
new file mode 100644
index 00000000..c9365abb
Binary files /dev/null and b/frontend/src/assets/sources/medcor-at-rivian-automotives.jpg differ
diff --git a/frontend/src/assets/sources/medcor-at-rivian-automotives.png b/frontend/src/assets/sources/medcor-at-rivian-automotives.png
new file mode 100644
index 00000000..9e6feab6
Binary files /dev/null and b/frontend/src/assets/sources/medcor-at-rivian-automotives.png differ
diff --git a/frontend/src/assets/sources/medcor-at-royal-caribbean.jpeg b/frontend/src/assets/sources/medcor-at-royal-caribbean.jpeg
new file mode 100644
index 00000000..96ac4c82
Binary files /dev/null and b/frontend/src/assets/sources/medcor-at-royal-caribbean.jpeg differ
diff --git a/frontend/src/assets/sources/medcor-at-shields-bag-and-printing.jpg b/frontend/src/assets/sources/medcor-at-shields-bag-and-printing.jpg
new file mode 100644
index 00000000..ab5e9162
Binary files /dev/null and b/frontend/src/assets/sources/medcor-at-shields-bag-and-printing.jpg differ
diff --git a/frontend/src/assets/sources/medcor-at-shields-bag-and-printing.png b/frontend/src/assets/sources/medcor-at-shields-bag-and-printing.png
new file mode 100644
index 00000000..40712eb7
Binary files /dev/null and b/frontend/src/assets/sources/medcor-at-shields-bag-and-printing.png differ
diff --git a/frontend/src/assets/sources/medcor-at-warner-bros.png b/frontend/src/assets/sources/medcor-at-warner-bros.png
new file mode 100644
index 00000000..9e6feab6
Binary files /dev/null and b/frontend/src/assets/sources/medcor-at-warner-bros.png differ
diff --git a/frontend/src/assets/sources/medcor-corporate-clinic.png b/frontend/src/assets/sources/medcor-corporate-clinic.png
new file mode 100644
index 00000000..168237d6
Binary files /dev/null and b/frontend/src/assets/sources/medcor-corporate-clinic.png differ
diff --git a/frontend/src/assets/sources/medeye-associates.png b/frontend/src/assets/sources/medeye-associates.png
new file mode 100644
index 00000000..eac7681a
Binary files /dev/null and b/frontend/src/assets/sources/medeye-associates.png differ
diff --git a/frontend/src/assets/sources/medical-associates-clinic-pc.png b/frontend/src/assets/sources/medical-associates-clinic-pc.png
new file mode 100644
index 00000000..1d63c632
Binary files /dev/null and b/frontend/src/assets/sources/medical-associates-clinic-pc.png differ
diff --git a/frontend/src/assets/sources/medical-associates-of-cambridge-inc.jpg b/frontend/src/assets/sources/medical-associates-of-cambridge-inc.jpg
new file mode 100644
index 00000000..84556155
Binary files /dev/null and b/frontend/src/assets/sources/medical-associates-of-cambridge-inc.jpg differ
diff --git a/frontend/src/assets/sources/medical-care-coordination.jpg b/frontend/src/assets/sources/medical-care-coordination.jpg
new file mode 100644
index 00000000..ae0140c8
Binary files /dev/null and b/frontend/src/assets/sources/medical-care-coordination.jpg differ
diff --git a/frontend/src/assets/sources/medical-care-coordination.png b/frontend/src/assets/sources/medical-care-coordination.png
new file mode 100644
index 00000000..53e4b43f
Binary files /dev/null and b/frontend/src/assets/sources/medical-care-coordination.png differ
diff --git a/frontend/src/assets/sources/medical-care-of-tennessee-pllc.jpg b/frontend/src/assets/sources/medical-care-of-tennessee-pllc.jpg
new file mode 100644
index 00000000..7c0a9193
Binary files /dev/null and b/frontend/src/assets/sources/medical-care-of-tennessee-pllc.jpg differ
diff --git a/frontend/src/assets/sources/medical-care-of-tennessee-pllc.png b/frontend/src/assets/sources/medical-care-of-tennessee-pllc.png
new file mode 100644
index 00000000..23db9497
Binary files /dev/null and b/frontend/src/assets/sources/medical-care-of-tennessee-pllc.png differ
diff --git a/frontend/src/assets/sources/medical-center-podiatry-pc.png b/frontend/src/assets/sources/medical-center-podiatry-pc.png
new file mode 100644
index 00000000..d112bb19
Binary files /dev/null and b/frontend/src/assets/sources/medical-center-podiatry-pc.png differ
diff --git a/frontend/src/assets/sources/medical-clinic-of-north-texas-pllc.png b/frontend/src/assets/sources/medical-clinic-of-north-texas-pllc.png
new file mode 100644
index 00000000..d7b4e828
Binary files /dev/null and b/frontend/src/assets/sources/medical-clinic-of-north-texas-pllc.png differ
diff --git a/frontend/src/assets/sources/medical-clinic-of-northville-pc.png b/frontend/src/assets/sources/medical-clinic-of-northville-pc.png
new file mode 100644
index 00000000..2c7f904d
Binary files /dev/null and b/frontend/src/assets/sources/medical-clinic-of-northville-pc.png differ
diff --git a/frontend/src/assets/sources/medical-eye-associates-pa.png b/frontend/src/assets/sources/medical-eye-associates-pa.png
new file mode 100644
index 00000000..68f4a208
Binary files /dev/null and b/frontend/src/assets/sources/medical-eye-associates-pa.png differ
diff --git a/frontend/src/assets/sources/medical-genetics-bchp.png b/frontend/src/assets/sources/medical-genetics-bchp.png
new file mode 100644
index 00000000..7275fba0
Binary files /dev/null and b/frontend/src/assets/sources/medical-genetics-bchp.png differ
diff --git a/frontend/src/assets/sources/medical-group-of-mitchell-county.png b/frontend/src/assets/sources/medical-group-of-mitchell-county.png
new file mode 100644
index 00000000..f04308b4
Binary files /dev/null and b/frontend/src/assets/sources/medical-group-of-mitchell-county.png differ
diff --git a/frontend/src/assets/sources/medical-group-rhc-of-wch.png b/frontend/src/assets/sources/medical-group-rhc-of-wch.png
new file mode 100644
index 00000000..73356b57
Binary files /dev/null and b/frontend/src/assets/sources/medical-group-rhc-of-wch.png differ
diff --git a/frontend/src/assets/sources/medical-home-primary-care-center.png b/frontend/src/assets/sources/medical-home-primary-care-center.png
new file mode 100644
index 00000000..940da356
Binary files /dev/null and b/frontend/src/assets/sources/medical-home-primary-care-center.png differ
diff --git a/frontend/src/assets/sources/medicine-lodge-memorial-hospital.png b/frontend/src/assets/sources/medicine-lodge-memorial-hospital.png
new file mode 100644
index 00000000..cd567b54
Binary files /dev/null and b/frontend/src/assets/sources/medicine-lodge-memorial-hospital.png differ
diff --git a/frontend/src/assets/sources/medsouth-urgent-care.svg b/frontend/src/assets/sources/medsouth-urgent-care.svg
new file mode 100644
index 00000000..c8d41111
--- /dev/null
+++ b/frontend/src/assets/sources/medsouth-urgent-care.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/medstar-medical-group-southern-md-llc.jpg b/frontend/src/assets/sources/medstar-medical-group-southern-md-llc.jpg
new file mode 100644
index 00000000..7e31ac70
Binary files /dev/null and b/frontend/src/assets/sources/medstar-medical-group-southern-md-llc.jpg differ
diff --git a/frontend/src/assets/sources/memorial-community-health-inc.jpg b/frontend/src/assets/sources/memorial-community-health-inc.jpg
new file mode 100644
index 00000000..49c950b0
Binary files /dev/null and b/frontend/src/assets/sources/memorial-community-health-inc.jpg differ
diff --git a/frontend/src/assets/sources/memorial-health-system.jpg b/frontend/src/assets/sources/memorial-health-system.jpg
new file mode 100644
index 00000000..73145b59
Binary files /dev/null and b/frontend/src/assets/sources/memorial-health-system.jpg differ
diff --git a/frontend/src/assets/sources/memorial-hospital-at-gulfport.svg b/frontend/src/assets/sources/memorial-hospital-at-gulfport.svg
new file mode 100644
index 00000000..53a482bc
--- /dev/null
+++ b/frontend/src/assets/sources/memorial-hospital-at-gulfport.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/memorial-hospital-of-carbon-county.png b/frontend/src/assets/sources/memorial-hospital-of-carbon-county.png
new file mode 100644
index 00000000..0af648bb
Binary files /dev/null and b/frontend/src/assets/sources/memorial-hospital-of-carbon-county.png differ
diff --git a/frontend/src/assets/sources/memorial-hospital-of-sweetwater-county.png b/frontend/src/assets/sources/memorial-hospital-of-sweetwater-county.png
new file mode 100644
index 00000000..6519bd38
Binary files /dev/null and b/frontend/src/assets/sources/memorial-hospital-of-sweetwater-county.png differ
diff --git a/frontend/src/assets/sources/memorial-hospital.png b/frontend/src/assets/sources/memorial-hospital.png
new file mode 100644
index 00000000..409388fd
Binary files /dev/null and b/frontend/src/assets/sources/memorial-hospital.png differ
diff --git a/frontend/src/assets/sources/mendocino-coast-clinics.png b/frontend/src/assets/sources/mendocino-coast-clinics.png
new file mode 100644
index 00000000..91b6f1cd
Binary files /dev/null and b/frontend/src/assets/sources/mendocino-coast-clinics.png differ
diff --git a/frontend/src/assets/sources/menifee-global-msg-haun-road.png b/frontend/src/assets/sources/menifee-global-msg-haun-road.png
new file mode 100644
index 00000000..36fceac1
Binary files /dev/null and b/frontend/src/assets/sources/menifee-global-msg-haun-road.png differ
diff --git a/frontend/src/assets/sources/menifee-global-msg-tahl.png b/frontend/src/assets/sources/menifee-global-msg-tahl.png
new file mode 100644
index 00000000..36fceac1
Binary files /dev/null and b/frontend/src/assets/sources/menifee-global-msg-tahl.png differ
diff --git a/frontend/src/assets/sources/mental-health-resources-inc.jpg b/frontend/src/assets/sources/mental-health-resources-inc.jpg
new file mode 100644
index 00000000..0c009863
Binary files /dev/null and b/frontend/src/assets/sources/mental-health-resources-inc.jpg differ
diff --git a/frontend/src/assets/sources/mental-health-resources-inc.png b/frontend/src/assets/sources/mental-health-resources-inc.png
new file mode 100644
index 00000000..ffde04b9
Binary files /dev/null and b/frontend/src/assets/sources/mental-health-resources-inc.png differ
diff --git a/frontend/src/assets/sources/mental-illness-recovery-center-inc.svg b/frontend/src/assets/sources/mental-illness-recovery-center-inc.svg
new file mode 100644
index 00000000..00c3b65a
--- /dev/null
+++ b/frontend/src/assets/sources/mental-illness-recovery-center-inc.svg
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/mercedes-medical-clinic.png b/frontend/src/assets/sources/mercedes-medical-clinic.png
new file mode 100644
index 00000000..d67e96a8
Binary files /dev/null and b/frontend/src/assets/sources/mercedes-medical-clinic.png differ
diff --git a/frontend/src/assets/sources/mercy-clinics.png b/frontend/src/assets/sources/mercy-clinics.png
new file mode 100644
index 00000000..0072e9e4
Binary files /dev/null and b/frontend/src/assets/sources/mercy-clinics.png differ
diff --git a/frontend/src/assets/sources/mercy-hospital.png b/frontend/src/assets/sources/mercy-hospital.png
new file mode 100644
index 00000000..550baa92
Binary files /dev/null and b/frontend/src/assets/sources/mercy-hospital.png differ
diff --git a/frontend/src/assets/sources/mercy-medical-center-des-moines.jpg b/frontend/src/assets/sources/mercy-medical-center-des-moines.jpg
new file mode 100644
index 00000000..b6c5bc22
Binary files /dev/null and b/frontend/src/assets/sources/mercy-medical-center-des-moines.jpg differ
diff --git a/frontend/src/assets/sources/mercy-medical-center-des-moines.png b/frontend/src/assets/sources/mercy-medical-center-des-moines.png
new file mode 100644
index 00000000..dbbc4c35
Binary files /dev/null and b/frontend/src/assets/sources/mercy-medical-center-des-moines.png differ
diff --git a/frontend/src/assets/sources/mercy-medical-center-new-hampton.jpg b/frontend/src/assets/sources/mercy-medical-center-new-hampton.jpg
new file mode 100644
index 00000000..8092f686
Binary files /dev/null and b/frontend/src/assets/sources/mercy-medical-center-new-hampton.jpg differ
diff --git a/frontend/src/assets/sources/mercy-specialty-clinic-clinton.png b/frontend/src/assets/sources/mercy-specialty-clinic-clinton.png
new file mode 100644
index 00000000..45e73030
Binary files /dev/null and b/frontend/src/assets/sources/mercy-specialty-clinic-clinton.png differ
diff --git a/frontend/src/assets/sources/meridian-health-services.png b/frontend/src/assets/sources/meridian-health-services.png
new file mode 100644
index 00000000..d497fd24
Binary files /dev/null and b/frontend/src/assets/sources/meridian-health-services.png differ
diff --git a/frontend/src/assets/sources/meridian-healthcare.png b/frontend/src/assets/sources/meridian-healthcare.png
new file mode 100644
index 00000000..247cbbc5
Binary files /dev/null and b/frontend/src/assets/sources/meridian-healthcare.png differ
diff --git a/frontend/src/assets/sources/meridian-oncology-assoc-pllc.jpg b/frontend/src/assets/sources/meridian-oncology-assoc-pllc.jpg
new file mode 100644
index 00000000..0fc6b729
Binary files /dev/null and b/frontend/src/assets/sources/meridian-oncology-assoc-pllc.jpg differ
diff --git a/frontend/src/assets/sources/merrimack-valley-orthopaedic-associates.png b/frontend/src/assets/sources/merrimack-valley-orthopaedic-associates.png
new file mode 100644
index 00000000..9a131738
Binary files /dev/null and b/frontend/src/assets/sources/merrimack-valley-orthopaedic-associates.png differ
diff --git a/frontend/src/assets/sources/methodist-fremont-health.jpg b/frontend/src/assets/sources/methodist-fremont-health.jpg
new file mode 100644
index 00000000..2805b695
Binary files /dev/null and b/frontend/src/assets/sources/methodist-fremont-health.jpg differ
diff --git a/frontend/src/assets/sources/methodist-le-bonheur-healthcare.png b/frontend/src/assets/sources/methodist-le-bonheur-healthcare.png
new file mode 100644
index 00000000..87942a1b
Binary files /dev/null and b/frontend/src/assets/sources/methodist-le-bonheur-healthcare.png differ
diff --git a/frontend/src/assets/sources/metro-obstetrics-and-gynecology.png b/frontend/src/assets/sources/metro-obstetrics-and-gynecology.png
new file mode 100644
index 00000000..51029227
Binary files /dev/null and b/frontend/src/assets/sources/metro-obstetrics-and-gynecology.png differ
diff --git a/frontend/src/assets/sources/metroeast-healthcare-limited.png b/frontend/src/assets/sources/metroeast-healthcare-limited.png
new file mode 100644
index 00000000..22ce16a4
Binary files /dev/null and b/frontend/src/assets/sources/metroeast-healthcare-limited.png differ
diff --git a/frontend/src/assets/sources/metrolina-asc.png b/frontend/src/assets/sources/metrolina-asc.png
new file mode 100644
index 00000000..3943e7df
Binary files /dev/null and b/frontend/src/assets/sources/metrolina-asc.png differ
diff --git a/frontend/src/assets/sources/metrolina-vascular.png b/frontend/src/assets/sources/metrolina-vascular.png
new file mode 100644
index 00000000..218b7c8a
Binary files /dev/null and b/frontend/src/assets/sources/metrolina-vascular.png differ
diff --git a/frontend/src/assets/sources/metropolitan-access-center.png b/frontend/src/assets/sources/metropolitan-access-center.png
new file mode 100644
index 00000000..b72a0c6f
Binary files /dev/null and b/frontend/src/assets/sources/metropolitan-access-center.png differ
diff --git a/frontend/src/assets/sources/metropolitan-nephrology-associates-2.png b/frontend/src/assets/sources/metropolitan-nephrology-associates-2.png
new file mode 100644
index 00000000..0992965f
Binary files /dev/null and b/frontend/src/assets/sources/metropolitan-nephrology-associates-2.png differ
diff --git a/frontend/src/assets/sources/metropolitan-nephrology-associates-asc-2.png b/frontend/src/assets/sources/metropolitan-nephrology-associates-asc-2.png
new file mode 100644
index 00000000..9c7b8a63
Binary files /dev/null and b/frontend/src/assets/sources/metropolitan-nephrology-associates-asc-2.png differ
diff --git a/frontend/src/assets/sources/metropolitan-nephrology-associates-asc.png b/frontend/src/assets/sources/metropolitan-nephrology-associates-asc.png
new file mode 100644
index 00000000..0992965f
Binary files /dev/null and b/frontend/src/assets/sources/metropolitan-nephrology-associates-asc.png differ
diff --git a/frontend/src/assets/sources/metropolitan-nephrology-associates.png b/frontend/src/assets/sources/metropolitan-nephrology-associates.png
new file mode 100644
index 00000000..0992965f
Binary files /dev/null and b/frontend/src/assets/sources/metropolitan-nephrology-associates.png differ
diff --git a/frontend/src/assets/sources/metropolitan-pediatric-specialists.svg b/frontend/src/assets/sources/metropolitan-pediatric-specialists.svg
new file mode 100644
index 00000000..00b62363
--- /dev/null
+++ b/frontend/src/assets/sources/metropolitan-pediatric-specialists.svg
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/metropolitan-pediatrics.svg b/frontend/src/assets/sources/metropolitan-pediatrics.svg
new file mode 100644
index 00000000..00b62363
--- /dev/null
+++ b/frontend/src/assets/sources/metropolitan-pediatrics.svg
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/metuchen-cardio-associates-p-a.png b/frontend/src/assets/sources/metuchen-cardio-associates-p-a.png
new file mode 100644
index 00000000..7c14cc55
Binary files /dev/null and b/frontend/src/assets/sources/metuchen-cardio-associates-p-a.png differ
diff --git a/frontend/src/assets/sources/mfi.png b/frontend/src/assets/sources/mfi.png
new file mode 100644
index 00000000..73dbd25f
Binary files /dev/null and b/frontend/src/assets/sources/mfi.png differ
diff --git a/frontend/src/assets/sources/mi-doctora-medical-clinic-md-inc.jpg b/frontend/src/assets/sources/mi-doctora-medical-clinic-md-inc.jpg
new file mode 100644
index 00000000..485998a1
Binary files /dev/null and b/frontend/src/assets/sources/mi-doctora-medical-clinic-md-inc.jpg differ
diff --git a/frontend/src/assets/sources/miami-associates-in-pediatric-surgery-pa.png b/frontend/src/assets/sources/miami-associates-in-pediatric-surgery-pa.png
new file mode 100644
index 00000000..f8c94bf9
Binary files /dev/null and b/frontend/src/assets/sources/miami-associates-in-pediatric-surgery-pa.png differ
diff --git a/frontend/src/assets/sources/miami-pulmonary-specialists.png b/frontend/src/assets/sources/miami-pulmonary-specialists.png
new file mode 100644
index 00000000..83bd84a4
Binary files /dev/null and b/frontend/src/assets/sources/miami-pulmonary-specialists.png differ
diff --git a/frontend/src/assets/sources/michael-behforouz-md.png b/frontend/src/assets/sources/michael-behforouz-md.png
new file mode 100644
index 00000000..79f1cb32
Binary files /dev/null and b/frontend/src/assets/sources/michael-behforouz-md.png differ
diff --git a/frontend/src/assets/sources/michael-curley-md.png b/frontend/src/assets/sources/michael-curley-md.png
new file mode 100644
index 00000000..8641e6e7
Binary files /dev/null and b/frontend/src/assets/sources/michael-curley-md.png differ
diff --git a/frontend/src/assets/sources/michael-e-green.jpg b/frontend/src/assets/sources/michael-e-green.jpg
new file mode 100644
index 00000000..39d7448b
Binary files /dev/null and b/frontend/src/assets/sources/michael-e-green.jpg differ
diff --git a/frontend/src/assets/sources/michael-f-esber-dpm-pc.svg b/frontend/src/assets/sources/michael-f-esber-dpm-pc.svg
new file mode 100644
index 00000000..f7412ce8
--- /dev/null
+++ b/frontend/src/assets/sources/michael-f-esber-dpm-pc.svg
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/michael-j-lemmers-md.png b/frontend/src/assets/sources/michael-j-lemmers-md.png
new file mode 100644
index 00000000..c2189b05
Binary files /dev/null and b/frontend/src/assets/sources/michael-j-lemmers-md.png differ
diff --git a/frontend/src/assets/sources/michiana-endoscopy-center.jpg b/frontend/src/assets/sources/michiana-endoscopy-center.jpg
new file mode 100644
index 00000000..f914c5ce
Binary files /dev/null and b/frontend/src/assets/sources/michiana-endoscopy-center.jpg differ
diff --git a/frontend/src/assets/sources/michigan-head-and-spine-institute.svg b/frontend/src/assets/sources/michigan-head-and-spine-institute.svg
new file mode 100644
index 00000000..267b15c4
--- /dev/null
+++ b/frontend/src/assets/sources/michigan-head-and-spine-institute.svg
@@ -0,0 +1,347 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/michigan-healthcare-professionals.png b/frontend/src/assets/sources/michigan-healthcare-professionals.png
new file mode 100644
index 00000000..8f4ab0d1
Binary files /dev/null and b/frontend/src/assets/sources/michigan-healthcare-professionals.png differ
diff --git a/frontend/src/assets/sources/michigan-interventional-pain-associates.png b/frontend/src/assets/sources/michigan-interventional-pain-associates.png
new file mode 100644
index 00000000..6685c23e
Binary files /dev/null and b/frontend/src/assets/sources/michigan-interventional-pain-associates.png differ
diff --git a/frontend/src/assets/sources/michigan-kidney-consultants.png b/frontend/src/assets/sources/michigan-kidney-consultants.png
new file mode 100644
index 00000000..98deee4a
Binary files /dev/null and b/frontend/src/assets/sources/michigan-kidney-consultants.png differ
diff --git a/frontend/src/assets/sources/michigan-physicians-group-pc.png b/frontend/src/assets/sources/michigan-physicians-group-pc.png
new file mode 100644
index 00000000..9707a873
Binary files /dev/null and b/frontend/src/assets/sources/michigan-physicians-group-pc.png differ
diff --git a/frontend/src/assets/sources/mici-of-main-line.png b/frontend/src/assets/sources/mici-of-main-line.png
new file mode 100644
index 00000000..1b1a2a20
Binary files /dev/null and b/frontend/src/assets/sources/mici-of-main-line.png differ
diff --git a/frontend/src/assets/sources/mid-america-rheumatology-consultants-pa.jpg b/frontend/src/assets/sources/mid-america-rheumatology-consultants-pa.jpg
new file mode 100644
index 00000000..5b0775fd
Binary files /dev/null and b/frontend/src/assets/sources/mid-america-rheumatology-consultants-pa.jpg differ
diff --git a/frontend/src/assets/sources/mid-america-rheumatology-consultants-pa.png b/frontend/src/assets/sources/mid-america-rheumatology-consultants-pa.png
new file mode 100644
index 00000000..dbf54b71
Binary files /dev/null and b/frontend/src/assets/sources/mid-america-rheumatology-consultants-pa.png differ
diff --git a/frontend/src/assets/sources/mid-atlantic-rheumatology-llc.png b/frontend/src/assets/sources/mid-atlantic-rheumatology-llc.png
new file mode 100644
index 00000000..9fcb5f63
Binary files /dev/null and b/frontend/src/assets/sources/mid-atlantic-rheumatology-llc.png differ
diff --git a/frontend/src/assets/sources/mid-city-pediatrics.jpg b/frontend/src/assets/sources/mid-city-pediatrics.jpg
new file mode 100644
index 00000000..df648755
Binary files /dev/null and b/frontend/src/assets/sources/mid-city-pediatrics.jpg differ
diff --git a/frontend/src/assets/sources/mid-iowa-fertility.jpg b/frontend/src/assets/sources/mid-iowa-fertility.jpg
new file mode 100644
index 00000000..4da643ff
Binary files /dev/null and b/frontend/src/assets/sources/mid-iowa-fertility.jpg differ
diff --git a/frontend/src/assets/sources/mid-iowa-fertility.png b/frontend/src/assets/sources/mid-iowa-fertility.png
new file mode 100644
index 00000000..e7437ac1
Binary files /dev/null and b/frontend/src/assets/sources/mid-iowa-fertility.png differ
diff --git a/frontend/src/assets/sources/mid-south-heart-center-pc.png b/frontend/src/assets/sources/mid-south-heart-center-pc.png
new file mode 100644
index 00000000..ff1df2e3
Binary files /dev/null and b/frontend/src/assets/sources/mid-south-heart-center-pc.png differ
diff --git a/frontend/src/assets/sources/mid-south-pulmonary-and-sleep-specialist.png b/frontend/src/assets/sources/mid-south-pulmonary-and-sleep-specialist.png
new file mode 100644
index 00000000..d414985c
Binary files /dev/null and b/frontend/src/assets/sources/mid-south-pulmonary-and-sleep-specialist.png differ
diff --git a/frontend/src/assets/sources/mid-tennessee-bone-and-joint-clinic.jpg b/frontend/src/assets/sources/mid-tennessee-bone-and-joint-clinic.jpg
new file mode 100644
index 00000000..3df69082
Binary files /dev/null and b/frontend/src/assets/sources/mid-tennessee-bone-and-joint-clinic.jpg differ
diff --git a/frontend/src/assets/sources/mid-valley-hospital.png b/frontend/src/assets/sources/mid-valley-hospital.png
new file mode 100644
index 00000000..d37ff974
Binary files /dev/null and b/frontend/src/assets/sources/mid-valley-hospital.png differ
diff --git a/frontend/src/assets/sources/midatlantic-eye-center.jpg b/frontend/src/assets/sources/midatlantic-eye-center.jpg
new file mode 100644
index 00000000..9d6800f8
Binary files /dev/null and b/frontend/src/assets/sources/midatlantic-eye-center.jpg differ
diff --git a/frontend/src/assets/sources/middlebrook-family-physicians-pa.png b/frontend/src/assets/sources/middlebrook-family-physicians-pa.png
new file mode 100644
index 00000000..082e0184
Binary files /dev/null and b/frontend/src/assets/sources/middlebrook-family-physicians-pa.png differ
diff --git a/frontend/src/assets/sources/middletown-eye-physicians-plc.png b/frontend/src/assets/sources/middletown-eye-physicians-plc.png
new file mode 100644
index 00000000..f90f3704
Binary files /dev/null and b/frontend/src/assets/sources/middletown-eye-physicians-plc.png differ
diff --git a/frontend/src/assets/sources/middletown-valley-family-medicine.png b/frontend/src/assets/sources/middletown-valley-family-medicine.png
new file mode 100644
index 00000000..6789cc7a
Binary files /dev/null and b/frontend/src/assets/sources/middletown-valley-family-medicine.png differ
diff --git a/frontend/src/assets/sources/midjersey-orthopaedics.jpg b/frontend/src/assets/sources/midjersey-orthopaedics.jpg
new file mode 100644
index 00000000..d62af30c
Binary files /dev/null and b/frontend/src/assets/sources/midjersey-orthopaedics.jpg differ
diff --git a/frontend/src/assets/sources/midland-memorial-hospital.png b/frontend/src/assets/sources/midland-memorial-hospital.png
new file mode 100644
index 00000000..441d5431
Binary files /dev/null and b/frontend/src/assets/sources/midland-memorial-hospital.png differ
diff --git a/frontend/src/assets/sources/midtown-health-center.jpg b/frontend/src/assets/sources/midtown-health-center.jpg
new file mode 100644
index 00000000..a729d696
Binary files /dev/null and b/frontend/src/assets/sources/midtown-health-center.jpg differ
diff --git a/frontend/src/assets/sources/midwest-eye-center-asc.png b/frontend/src/assets/sources/midwest-eye-center-asc.png
new file mode 100644
index 00000000..93335d28
Binary files /dev/null and b/frontend/src/assets/sources/midwest-eye-center-asc.png differ
diff --git a/frontend/src/assets/sources/midwest-eye-centers.png b/frontend/src/assets/sources/midwest-eye-centers.png
new file mode 100644
index 00000000..0bfe05c2
Binary files /dev/null and b/frontend/src/assets/sources/midwest-eye-centers.png differ
diff --git a/frontend/src/assets/sources/midwest-spine-and-brain-institute-llc.png b/frontend/src/assets/sources/midwest-spine-and-brain-institute-llc.png
new file mode 100644
index 00000000..e6321f66
Binary files /dev/null and b/frontend/src/assets/sources/midwest-spine-and-brain-institute-llc.png differ
diff --git a/frontend/src/assets/sources/midwest-surgical-hospital.png b/frontend/src/assets/sources/midwest-surgical-hospital.png
new file mode 100644
index 00000000..872a51e4
Binary files /dev/null and b/frontend/src/assets/sources/midwest-surgical-hospital.png differ
diff --git a/frontend/src/assets/sources/midwestern-university-eye-institute.png b/frontend/src/assets/sources/midwestern-university-eye-institute.png
new file mode 100644
index 00000000..9f86cd8d
Binary files /dev/null and b/frontend/src/assets/sources/midwestern-university-eye-institute.png differ
diff --git a/frontend/src/assets/sources/milauskas-eye-institute.png b/frontend/src/assets/sources/milauskas-eye-institute.png
new file mode 100644
index 00000000..cc66df41
Binary files /dev/null and b/frontend/src/assets/sources/milauskas-eye-institute.png differ
diff --git a/frontend/src/assets/sources/millennium-medical-billing-and-physician-services-inc.png b/frontend/src/assets/sources/millennium-medical-billing-and-physician-services-inc.png
new file mode 100644
index 00000000..e0e2a63b
Binary files /dev/null and b/frontend/src/assets/sources/millennium-medical-billing-and-physician-services-inc.png differ
diff --git a/frontend/src/assets/sources/miller-county-hospital.jpg b/frontend/src/assets/sources/miller-county-hospital.jpg
new file mode 100644
index 00000000..116b987f
Binary files /dev/null and b/frontend/src/assets/sources/miller-county-hospital.jpg differ
diff --git a/frontend/src/assets/sources/miller-county-hospital.png b/frontend/src/assets/sources/miller-county-hospital.png
new file mode 100644
index 00000000..a219724b
Binary files /dev/null and b/frontend/src/assets/sources/miller-county-hospital.png differ
diff --git a/frontend/src/assets/sources/miller-orthopedic-specialists.png b/frontend/src/assets/sources/miller-orthopedic-specialists.png
new file mode 100644
index 00000000..27e16653
Binary files /dev/null and b/frontend/src/assets/sources/miller-orthopedic-specialists.png differ
diff --git a/frontend/src/assets/sources/milton-l-kolchins-md-inc.png b/frontend/src/assets/sources/milton-l-kolchins-md-inc.png
new file mode 100644
index 00000000..35ccd4c8
Binary files /dev/null and b/frontend/src/assets/sources/milton-l-kolchins-md-inc.png differ
diff --git a/frontend/src/assets/sources/milwaukee-endoscopy-center.svg b/frontend/src/assets/sources/milwaukee-endoscopy-center.svg
new file mode 100644
index 00000000..bf2c75b1
--- /dev/null
+++ b/frontend/src/assets/sources/milwaukee-endoscopy-center.svg
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/milwaukee-foot-specialists.jpeg b/frontend/src/assets/sources/milwaukee-foot-specialists.jpeg
new file mode 100644
index 00000000..5e18044f
Binary files /dev/null and b/frontend/src/assets/sources/milwaukee-foot-specialists.jpeg differ
diff --git a/frontend/src/assets/sources/mind-body-connection.png b/frontend/src/assets/sources/mind-body-connection.png
new file mode 100644
index 00000000..8f6234fb
Binary files /dev/null and b/frontend/src/assets/sources/mind-body-connection.png differ
diff --git a/frontend/src/assets/sources/mindful-health-solutions.png b/frontend/src/assets/sources/mindful-health-solutions.png
new file mode 100644
index 00000000..f454035f
Binary files /dev/null and b/frontend/src/assets/sources/mindful-health-solutions.png differ
diff --git a/frontend/src/assets/sources/mineral-community-hospital.png b/frontend/src/assets/sources/mineral-community-hospital.png
new file mode 100644
index 00000000..c03413db
Binary files /dev/null and b/frontend/src/assets/sources/mineral-community-hospital.png differ
diff --git a/frontend/src/assets/sources/miners-colfax-medical-center.png b/frontend/src/assets/sources/miners-colfax-medical-center.png
new file mode 100644
index 00000000..13ae4bb6
Binary files /dev/null and b/frontend/src/assets/sources/miners-colfax-medical-center.png differ
diff --git a/frontend/src/assets/sources/minneapolis-pain-centers-llc.jpg b/frontend/src/assets/sources/minneapolis-pain-centers-llc.jpg
new file mode 100644
index 00000000..7bf76a76
Binary files /dev/null and b/frontend/src/assets/sources/minneapolis-pain-centers-llc.jpg differ
diff --git a/frontend/src/assets/sources/minneapolis-school-based-clinics.png b/frontend/src/assets/sources/minneapolis-school-based-clinics.png
new file mode 100644
index 00000000..92a9c040
Binary files /dev/null and b/frontend/src/assets/sources/minneapolis-school-based-clinics.png differ
diff --git a/frontend/src/assets/sources/minneola-district-hospital.png b/frontend/src/assets/sources/minneola-district-hospital.png
new file mode 100644
index 00000000..78368845
Binary files /dev/null and b/frontend/src/assets/sources/minneola-district-hospital.png differ
diff --git a/frontend/src/assets/sources/minnesota-vein-center-pa.png b/frontend/src/assets/sources/minnesota-vein-center-pa.png
new file mode 100644
index 00000000..2b19fd63
Binary files /dev/null and b/frontend/src/assets/sources/minnesota-vein-center-pa.png differ
diff --git a/frontend/src/assets/sources/minor-and-james-surgical-specialists.png b/frontend/src/assets/sources/minor-and-james-surgical-specialists.png
new file mode 100644
index 00000000..fb06dae3
Binary files /dev/null and b/frontend/src/assets/sources/minor-and-james-surgical-specialists.png differ
diff --git a/frontend/src/assets/sources/miramar-lynn-medical-group-inc.png b/frontend/src/assets/sources/miramar-lynn-medical-group-inc.png
new file mode 100644
index 00000000..b268328c
Binary files /dev/null and b/frontend/src/assets/sources/miramar-lynn-medical-group-inc.png differ
diff --git a/frontend/src/assets/sources/mishock-physical-therapy.png b/frontend/src/assets/sources/mishock-physical-therapy.png
new file mode 100644
index 00000000..f785f35e
Binary files /dev/null and b/frontend/src/assets/sources/mishock-physical-therapy.png differ
diff --git a/frontend/src/assets/sources/mission-family-practice.png b/frontend/src/assets/sources/mission-family-practice.png
new file mode 100644
index 00000000..705b1059
Binary files /dev/null and b/frontend/src/assets/sources/mission-family-practice.png differ
diff --git a/frontend/src/assets/sources/mission-health-system-inc.png b/frontend/src/assets/sources/mission-health-system-inc.png
new file mode 100644
index 00000000..18ce9874
Binary files /dev/null and b/frontend/src/assets/sources/mission-health-system-inc.png differ
diff --git a/frontend/src/assets/sources/mission-neighborhood-health-center.png b/frontend/src/assets/sources/mission-neighborhood-health-center.png
new file mode 100644
index 00000000..9e582f13
Binary files /dev/null and b/frontend/src/assets/sources/mission-neighborhood-health-center.png differ
diff --git a/frontend/src/assets/sources/mission-occumed.png b/frontend/src/assets/sources/mission-occumed.png
new file mode 100644
index 00000000..9c2e0354
Binary files /dev/null and b/frontend/src/assets/sources/mission-occumed.png differ
diff --git a/frontend/src/assets/sources/mississippi-rheum-and-osteo-ctr-pllc.png b/frontend/src/assets/sources/mississippi-rheum-and-osteo-ctr-pllc.png
new file mode 100644
index 00000000..1d912257
Binary files /dev/null and b/frontend/src/assets/sources/mississippi-rheum-and-osteo-ctr-pllc.png differ
diff --git a/frontend/src/assets/sources/missouri-cancer-associates-llc.png b/frontend/src/assets/sources/missouri-cancer-associates-llc.png
new file mode 100644
index 00000000..54bf4cd6
Binary files /dev/null and b/frontend/src/assets/sources/missouri-cancer-associates-llc.png differ
diff --git a/frontend/src/assets/sources/missouri-delta-medical-center.jpg b/frontend/src/assets/sources/missouri-delta-medical-center.jpg
new file mode 100644
index 00000000..f8147987
Binary files /dev/null and b/frontend/src/assets/sources/missouri-delta-medical-center.jpg differ
diff --git a/frontend/src/assets/sources/missouri-delta-medical-center.png b/frontend/src/assets/sources/missouri-delta-medical-center.png
new file mode 100644
index 00000000..9dd677fa
Binary files /dev/null and b/frontend/src/assets/sources/missouri-delta-medical-center.png differ
diff --git a/frontend/src/assets/sources/missouri-urgent-care.png b/frontend/src/assets/sources/missouri-urgent-care.png
new file mode 100644
index 00000000..4271ac01
Binary files /dev/null and b/frontend/src/assets/sources/missouri-urgent-care.png differ
diff --git a/frontend/src/assets/sources/mitchell-county-hospital-health-systems.png b/frontend/src/assets/sources/mitchell-county-hospital-health-systems.png
new file mode 100644
index 00000000..de4ff4d5
Binary files /dev/null and b/frontend/src/assets/sources/mitchell-county-hospital-health-systems.png differ
diff --git a/frontend/src/assets/sources/mobile-doctors.png b/frontend/src/assets/sources/mobile-doctors.png
new file mode 100644
index 00000000..7df4fa92
Binary files /dev/null and b/frontend/src/assets/sources/mobile-doctors.png differ
diff --git a/frontend/src/assets/sources/mobility-health-llc.png b/frontend/src/assets/sources/mobility-health-llc.png
new file mode 100644
index 00000000..ba4974de
Binary files /dev/null and b/frontend/src/assets/sources/mobility-health-llc.png differ
diff --git a/frontend/src/assets/sources/mobridge-regional-hospital.svg b/frontend/src/assets/sources/mobridge-regional-hospital.svg
new file mode 100644
index 00000000..04abf7b6
--- /dev/null
+++ b/frontend/src/assets/sources/mobridge-regional-hospital.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/modern-nose-clinic-llc.png b/frontend/src/assets/sources/modern-nose-clinic-llc.png
new file mode 100644
index 00000000..d346e702
Binary files /dev/null and b/frontend/src/assets/sources/modern-nose-clinic-llc.png differ
diff --git a/frontend/src/assets/sources/mommy-and-me-medical-group-inc.jpg b/frontend/src/assets/sources/mommy-and-me-medical-group-inc.jpg
new file mode 100644
index 00000000..9a4ffc25
Binary files /dev/null and b/frontend/src/assets/sources/mommy-and-me-medical-group-inc.jpg differ
diff --git a/frontend/src/assets/sources/mon-health-medical-center.png b/frontend/src/assets/sources/mon-health-medical-center.png
new file mode 100644
index 00000000..bfc85a8b
Binary files /dev/null and b/frontend/src/assets/sources/mon-health-medical-center.png differ
diff --git a/frontend/src/assets/sources/moninger-eye-care.png b/frontend/src/assets/sources/moninger-eye-care.png
new file mode 100644
index 00000000..60ccaf79
Binary files /dev/null and b/frontend/src/assets/sources/moninger-eye-care.png differ
diff --git a/frontend/src/assets/sources/monmouth-retina-consultants.png b/frontend/src/assets/sources/monmouth-retina-consultants.png
new file mode 100644
index 00000000..5e48bb7f
Binary files /dev/null and b/frontend/src/assets/sources/monmouth-retina-consultants.png differ
diff --git a/frontend/src/assets/sources/monongalia-county-general-hospital-company.png b/frontend/src/assets/sources/monongalia-county-general-hospital-company.png
new file mode 100644
index 00000000..24dafc38
Binary files /dev/null and b/frontend/src/assets/sources/monongalia-county-general-hospital-company.png differ
diff --git a/frontend/src/assets/sources/monroe-county-hospital.png b/frontend/src/assets/sources/monroe-county-hospital.png
new file mode 100644
index 00000000..5910e409
Binary files /dev/null and b/frontend/src/assets/sources/monroe-county-hospital.png differ
diff --git a/frontend/src/assets/sources/montana-arthritis-center-llc.png b/frontend/src/assets/sources/montana-arthritis-center-llc.png
new file mode 100644
index 00000000..738bef32
Binary files /dev/null and b/frontend/src/assets/sources/montana-arthritis-center-llc.png differ
diff --git a/frontend/src/assets/sources/montgomery-county-memorial-hospital.png b/frontend/src/assets/sources/montgomery-county-memorial-hospital.png
new file mode 100644
index 00000000..0d9fe108
Binary files /dev/null and b/frontend/src/assets/sources/montgomery-county-memorial-hospital.png differ
diff --git a/frontend/src/assets/sources/montgomery-county-pulmonary-and-sleep-consultants-pc.png b/frontend/src/assets/sources/montgomery-county-pulmonary-and-sleep-consultants-pc.png
new file mode 100644
index 00000000..07fb46e7
Binary files /dev/null and b/frontend/src/assets/sources/montgomery-county-pulmonary-and-sleep-consultants-pc.png differ
diff --git a/frontend/src/assets/sources/montgomery-pulmonary-cons.png b/frontend/src/assets/sources/montgomery-pulmonary-cons.png
new file mode 100644
index 00000000..199126a1
Binary files /dev/null and b/frontend/src/assets/sources/montgomery-pulmonary-cons.png differ
diff --git a/frontend/src/assets/sources/montgomery-vascular-care.png b/frontend/src/assets/sources/montgomery-vascular-care.png
new file mode 100644
index 00000000..df214b81
Binary files /dev/null and b/frontend/src/assets/sources/montgomery-vascular-care.png differ
diff --git a/frontend/src/assets/sources/morehead-state-university.png b/frontend/src/assets/sources/morehead-state-university.png
new file mode 100644
index 00000000..9de87c60
Binary files /dev/null and b/frontend/src/assets/sources/morehead-state-university.png differ
diff --git a/frontend/src/assets/sources/morgan-medical-center.svg b/frontend/src/assets/sources/morgan-medical-center.svg
new file mode 100644
index 00000000..5aa4e2a4
--- /dev/null
+++ b/frontend/src/assets/sources/morgan-medical-center.svg
@@ -0,0 +1,93 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/morris-county-hospital.png b/frontend/src/assets/sources/morris-county-hospital.png
new file mode 100644
index 00000000..09154bac
Binary files /dev/null and b/frontend/src/assets/sources/morris-county-hospital.png differ
diff --git a/frontend/src/assets/sources/morris-eye-group-comprehensive-eyecare.png b/frontend/src/assets/sources/morris-eye-group-comprehensive-eyecare.png
new file mode 100644
index 00000000..28f6d3e8
Binary files /dev/null and b/frontend/src/assets/sources/morris-eye-group-comprehensive-eyecare.png differ
diff --git a/frontend/src/assets/sources/morristown-ophthalmology-associates-pa.png b/frontend/src/assets/sources/morristown-ophthalmology-associates-pa.png
new file mode 100644
index 00000000..87264205
Binary files /dev/null and b/frontend/src/assets/sources/morristown-ophthalmology-associates-pa.png differ
diff --git a/frontend/src/assets/sources/mosaic-life-care.png b/frontend/src/assets/sources/mosaic-life-care.png
new file mode 100644
index 00000000..e223c3a4
Binary files /dev/null and b/frontend/src/assets/sources/mosaic-life-care.png differ
diff --git a/frontend/src/assets/sources/mosaic-mental-health.png b/frontend/src/assets/sources/mosaic-mental-health.png
new file mode 100644
index 00000000..55fed56e
Binary files /dev/null and b/frontend/src/assets/sources/mosaic-mental-health.png differ
diff --git a/frontend/src/assets/sources/moses-mouser-and-associates.jpg b/frontend/src/assets/sources/moses-mouser-and-associates.jpg
new file mode 100644
index 00000000..d6d2fd5c
Binary files /dev/null and b/frontend/src/assets/sources/moses-mouser-and-associates.jpg differ
diff --git a/frontend/src/assets/sources/moses-mouser-and-associates.png b/frontend/src/assets/sources/moses-mouser-and-associates.png
new file mode 100644
index 00000000..032f7672
Binary files /dev/null and b/frontend/src/assets/sources/moses-mouser-and-associates.png differ
diff --git a/frontend/src/assets/sources/moundview-memorial-hospital.jpg b/frontend/src/assets/sources/moundview-memorial-hospital.jpg
new file mode 100644
index 00000000..e398527e
Binary files /dev/null and b/frontend/src/assets/sources/moundview-memorial-hospital.jpg differ
diff --git a/frontend/src/assets/sources/mount-pleasant-internal-medicine.jpg b/frontend/src/assets/sources/mount-pleasant-internal-medicine.jpg
new file mode 100644
index 00000000..61be6f8d
Binary files /dev/null and b/frontend/src/assets/sources/mount-pleasant-internal-medicine.jpg differ
diff --git a/frontend/src/assets/sources/mountain-comprehensive-health-corporatio.jpg b/frontend/src/assets/sources/mountain-comprehensive-health-corporatio.jpg
new file mode 100644
index 00000000..2462f8eb
Binary files /dev/null and b/frontend/src/assets/sources/mountain-comprehensive-health-corporatio.jpg differ
diff --git a/frontend/src/assets/sources/mountain-family-health-centers.png b/frontend/src/assets/sources/mountain-family-health-centers.png
new file mode 100644
index 00000000..b26bce7e
Binary files /dev/null and b/frontend/src/assets/sources/mountain-family-health-centers.png differ
diff --git a/frontend/src/assets/sources/mountain-grove-health-clinic.png b/frontend/src/assets/sources/mountain-grove-health-clinic.png
new file mode 100644
index 00000000..67b7351a
Binary files /dev/null and b/frontend/src/assets/sources/mountain-grove-health-clinic.png differ
diff --git a/frontend/src/assets/sources/mountain-laurel-medical-center.png b/frontend/src/assets/sources/mountain-laurel-medical-center.png
new file mode 100644
index 00000000..24a25878
Binary files /dev/null and b/frontend/src/assets/sources/mountain-laurel-medical-center.png differ
diff --git a/frontend/src/assets/sources/mountain-valley-hospice-and-palliative-ca.png b/frontend/src/assets/sources/mountain-valley-hospice-and-palliative-ca.png
new file mode 100644
index 00000000..d3e9da02
Binary files /dev/null and b/frontend/src/assets/sources/mountain-valley-hospice-and-palliative-ca.png differ
diff --git a/frontend/src/assets/sources/mountain-view-child-care-inc-d-b-a-totally-kids-rehabilitation-hospital.png b/frontend/src/assets/sources/mountain-view-child-care-inc-d-b-a-totally-kids-rehabilitation-hospital.png
new file mode 100644
index 00000000..65cc93d0
Binary files /dev/null and b/frontend/src/assets/sources/mountain-view-child-care-inc-d-b-a-totally-kids-rehabilitation-hospital.png differ
diff --git a/frontend/src/assets/sources/mowery-clinic-llc.png b/frontend/src/assets/sources/mowery-clinic-llc.png
new file mode 100644
index 00000000..a0e7678e
Binary files /dev/null and b/frontend/src/assets/sources/mowery-clinic-llc.png differ
diff --git a/frontend/src/assets/sources/msu-longest-student-health-center.png b/frontend/src/assets/sources/msu-longest-student-health-center.png
new file mode 100644
index 00000000..a95b944b
Binary files /dev/null and b/frontend/src/assets/sources/msu-longest-student-health-center.png differ
diff --git a/frontend/src/assets/sources/mt-ascutney-hospital-and-health-center.jpg b/frontend/src/assets/sources/mt-ascutney-hospital-and-health-center.jpg
new file mode 100644
index 00000000..fefe734b
Binary files /dev/null and b/frontend/src/assets/sources/mt-ascutney-hospital-and-health-center.jpg differ
diff --git a/frontend/src/assets/sources/multicare-obh-spokane.png b/frontend/src/assets/sources/multicare-obh-spokane.png
new file mode 100644
index 00000000..bea4918e
Binary files /dev/null and b/frontend/src/assets/sources/multicare-obh-spokane.png differ
diff --git a/frontend/src/assets/sources/munising-memorial-hospital.jpg b/frontend/src/assets/sources/munising-memorial-hospital.jpg
new file mode 100644
index 00000000..5aa03374
Binary files /dev/null and b/frontend/src/assets/sources/munising-memorial-hospital.jpg differ
diff --git a/frontend/src/assets/sources/munising-memorial-hospital.png b/frontend/src/assets/sources/munising-memorial-hospital.png
new file mode 100644
index 00000000..c8ba5e47
Binary files /dev/null and b/frontend/src/assets/sources/munising-memorial-hospital.png differ
diff --git a/frontend/src/assets/sources/munson-healthcare-charlevoix-hospital.jpg b/frontend/src/assets/sources/munson-healthcare-charlevoix-hospital.jpg
new file mode 100644
index 00000000..861b1767
Binary files /dev/null and b/frontend/src/assets/sources/munson-healthcare-charlevoix-hospital.jpg differ
diff --git a/frontend/src/assets/sources/munson-healthcare-charlevoix-hospital.png b/frontend/src/assets/sources/munson-healthcare-charlevoix-hospital.png
new file mode 100644
index 00000000..764540be
Binary files /dev/null and b/frontend/src/assets/sources/munson-healthcare-charlevoix-hospital.png differ
diff --git a/frontend/src/assets/sources/munson-healthcare.png b/frontend/src/assets/sources/munson-healthcare.png
new file mode 100644
index 00000000..27d781a3
Binary files /dev/null and b/frontend/src/assets/sources/munson-healthcare.png differ
diff --git a/frontend/src/assets/sources/murrieta-valley-surgery-associates.png b/frontend/src/assets/sources/murrieta-valley-surgery-associates.png
new file mode 100644
index 00000000..762954c3
Binary files /dev/null and b/frontend/src/assets/sources/murrieta-valley-surgery-associates.png differ
diff --git a/frontend/src/assets/sources/musick-dermatology-and-advanced-clinical-spa-llc.png b/frontend/src/assets/sources/musick-dermatology-and-advanced-clinical-spa-llc.png
new file mode 100644
index 00000000..f22ad48f
Binary files /dev/null and b/frontend/src/assets/sources/musick-dermatology-and-advanced-clinical-spa-llc.png differ
diff --git a/frontend/src/assets/sources/muskingum-pediatrics.png b/frontend/src/assets/sources/muskingum-pediatrics.png
new file mode 100644
index 00000000..fee36170
Binary files /dev/null and b/frontend/src/assets/sources/muskingum-pediatrics.png differ
diff --git a/frontend/src/assets/sources/my-kidney-care-llc.png b/frontend/src/assets/sources/my-kidney-care-llc.png
new file mode 100644
index 00000000..1fdf2b0f
Binary files /dev/null and b/frontend/src/assets/sources/my-kidney-care-llc.png differ
diff --git a/frontend/src/assets/sources/myhealth-for-teens-and-young-adults.jpg b/frontend/src/assets/sources/myhealth-for-teens-and-young-adults.jpg
new file mode 100644
index 00000000..29875bdf
Binary files /dev/null and b/frontend/src/assets/sources/myhealth-for-teens-and-young-adults.jpg differ
diff --git a/frontend/src/assets/sources/namita-mohideen-md-inc.png b/frontend/src/assets/sources/namita-mohideen-md-inc.png
new file mode 100644
index 00000000..04ac8064
Binary files /dev/null and b/frontend/src/assets/sources/namita-mohideen-md-inc.png differ
diff --git a/frontend/src/assets/sources/naples-premier-concierge-p-l.png b/frontend/src/assets/sources/naples-premier-concierge-p-l.png
new file mode 100644
index 00000000..9e779481
Binary files /dev/null and b/frontend/src/assets/sources/naples-premier-concierge-p-l.png differ
diff --git a/frontend/src/assets/sources/narbonne-multi-specialty-medical-group.jpg b/frontend/src/assets/sources/narbonne-multi-specialty-medical-group.jpg
new file mode 100644
index 00000000..acbd5763
Binary files /dev/null and b/frontend/src/assets/sources/narbonne-multi-specialty-medical-group.jpg differ
diff --git a/frontend/src/assets/sources/nash-unc-health-care.svg b/frontend/src/assets/sources/nash-unc-health-care.svg
new file mode 100644
index 00000000..92f840a9
--- /dev/null
+++ b/frontend/src/assets/sources/nash-unc-health-care.svg
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/nashville-pediatric-cardiology.png b/frontend/src/assets/sources/nashville-pediatric-cardiology.png
new file mode 100644
index 00000000..c7727903
Binary files /dev/null and b/frontend/src/assets/sources/nashville-pediatric-cardiology.png differ
diff --git a/frontend/src/assets/sources/nassau-ophthalmology-assoc.png b/frontend/src/assets/sources/nassau-ophthalmology-assoc.png
new file mode 100644
index 00000000..845bd0af
Binary files /dev/null and b/frontend/src/assets/sources/nassau-ophthalmology-assoc.png differ
diff --git a/frontend/src/assets/sources/nasson-health-care.png b/frontend/src/assets/sources/nasson-health-care.png
new file mode 100644
index 00000000..796fde16
Binary files /dev/null and b/frontend/src/assets/sources/nasson-health-care.png differ
diff --git a/frontend/src/assets/sources/national-integrated-health-associates.png b/frontend/src/assets/sources/national-integrated-health-associates.png
new file mode 100644
index 00000000..9584f462
Binary files /dev/null and b/frontend/src/assets/sources/national-integrated-health-associates.png differ
diff --git a/frontend/src/assets/sources/native-american-community-health-center.png b/frontend/src/assets/sources/native-american-community-health-center.png
new file mode 100644
index 00000000..f492fbe8
Binary files /dev/null and b/frontend/src/assets/sources/native-american-community-health-center.png differ
diff --git a/frontend/src/assets/sources/navicent-health.png b/frontend/src/assets/sources/navicent-health.png
new file mode 100644
index 00000000..f3bb23d4
Binary files /dev/null and b/frontend/src/assets/sources/navicent-health.png differ
diff --git a/frontend/src/assets/sources/nazanin-firooz-md-inc.jpg b/frontend/src/assets/sources/nazanin-firooz-md-inc.jpg
new file mode 100644
index 00000000..a111dbe6
Binary files /dev/null and b/frontend/src/assets/sources/nazanin-firooz-md-inc.jpg differ
diff --git a/frontend/src/assets/sources/ncdps-ibhs.png b/frontend/src/assets/sources/ncdps-ibhs.png
new file mode 100644
index 00000000..c4458a20
Binary files /dev/null and b/frontend/src/assets/sources/ncdps-ibhs.png differ
diff --git a/frontend/src/assets/sources/ncp-anderson-heart-cath-lab.png b/frontend/src/assets/sources/ncp-anderson-heart-cath-lab.png
new file mode 100644
index 00000000..456e217b
Binary files /dev/null and b/frontend/src/assets/sources/ncp-anderson-heart-cath-lab.png differ
diff --git a/frontend/src/assets/sources/ncp-beaumont-asc.png b/frontend/src/assets/sources/ncp-beaumont-asc.png
new file mode 100644
index 00000000..fed589c1
Binary files /dev/null and b/frontend/src/assets/sources/ncp-beaumont-asc.png differ
diff --git a/frontend/src/assets/sources/ncp-beaumont-cath-lab.png b/frontend/src/assets/sources/ncp-beaumont-cath-lab.png
new file mode 100644
index 00000000..fed589c1
Binary files /dev/null and b/frontend/src/assets/sources/ncp-beaumont-cath-lab.png differ
diff --git a/frontend/src/assets/sources/ncp-college-park-asc.png b/frontend/src/assets/sources/ncp-college-park-asc.png
new file mode 100644
index 00000000..ac63c482
Binary files /dev/null and b/frontend/src/assets/sources/ncp-college-park-asc.png differ
diff --git a/frontend/src/assets/sources/ncp-college-park-cath-lab.png b/frontend/src/assets/sources/ncp-college-park-cath-lab.png
new file mode 100644
index 00000000..ac63c482
Binary files /dev/null and b/frontend/src/assets/sources/ncp-college-park-cath-lab.png differ
diff --git a/frontend/src/assets/sources/ncp-collin-county-cath-lab.png b/frontend/src/assets/sources/ncp-collin-county-cath-lab.png
new file mode 100644
index 00000000..355dd435
Binary files /dev/null and b/frontend/src/assets/sources/ncp-collin-county-cath-lab.png differ
diff --git a/frontend/src/assets/sources/ncp-dallas-asc.png b/frontend/src/assets/sources/ncp-dallas-asc.png
new file mode 100644
index 00000000..81078f2c
Binary files /dev/null and b/frontend/src/assets/sources/ncp-dallas-asc.png differ
diff --git a/frontend/src/assets/sources/ncp-epic-asc.png b/frontend/src/assets/sources/ncp-epic-asc.png
new file mode 100644
index 00000000..7da9bc99
Binary files /dev/null and b/frontend/src/assets/sources/ncp-epic-asc.png differ
diff --git a/frontend/src/assets/sources/ncp-epic-heart-center.png b/frontend/src/assets/sources/ncp-epic-heart-center.png
new file mode 100644
index 00000000..facc536e
Binary files /dev/null and b/frontend/src/assets/sources/ncp-epic-heart-center.png differ
diff --git a/frontend/src/assets/sources/ncp-fort-worth-cath-lab.png b/frontend/src/assets/sources/ncp-fort-worth-cath-lab.png
new file mode 100644
index 00000000..44455f68
Binary files /dev/null and b/frontend/src/assets/sources/ncp-fort-worth-cath-lab.png differ
diff --git a/frontend/src/assets/sources/ncp-forth-worth-asc.png b/frontend/src/assets/sources/ncp-forth-worth-asc.png
new file mode 100644
index 00000000..a18e1144
Binary files /dev/null and b/frontend/src/assets/sources/ncp-forth-worth-asc.png differ
diff --git a/frontend/src/assets/sources/ncp-ft-lauderdale-asc.png b/frontend/src/assets/sources/ncp-ft-lauderdale-asc.png
new file mode 100644
index 00000000..3b2f8ff5
Binary files /dev/null and b/frontend/src/assets/sources/ncp-ft-lauderdale-asc.png differ
diff --git a/frontend/src/assets/sources/ncp-ft-lauderdale-cath-lab.png b/frontend/src/assets/sources/ncp-ft-lauderdale-cath-lab.png
new file mode 100644
index 00000000..3b2f8ff5
Binary files /dev/null and b/frontend/src/assets/sources/ncp-ft-lauderdale-cath-lab.png differ
diff --git a/frontend/src/assets/sources/ncp-hpsc-east-22nd-st-asc.png b/frontend/src/assets/sources/ncp-hpsc-east-22nd-st-asc.png
new file mode 100644
index 00000000..268c1ce6
Binary files /dev/null and b/frontend/src/assets/sources/ncp-hpsc-east-22nd-st-asc.png differ
diff --git a/frontend/src/assets/sources/ncp-katy-asc.png b/frontend/src/assets/sources/ncp-katy-asc.png
new file mode 100644
index 00000000..c4352b62
Binary files /dev/null and b/frontend/src/assets/sources/ncp-katy-asc.png differ
diff --git a/frontend/src/assets/sources/ncp-katy-cath-lab.png b/frontend/src/assets/sources/ncp-katy-cath-lab.png
new file mode 100644
index 00000000..c4352b62
Binary files /dev/null and b/frontend/src/assets/sources/ncp-katy-cath-lab.png differ
diff --git a/frontend/src/assets/sources/ncp-kingwood-asc.png b/frontend/src/assets/sources/ncp-kingwood-asc.png
new file mode 100644
index 00000000..b7b03b87
Binary files /dev/null and b/frontend/src/assets/sources/ncp-kingwood-asc.png differ
diff --git a/frontend/src/assets/sources/ncp-lake-charles-asc.png b/frontend/src/assets/sources/ncp-lake-charles-asc.png
new file mode 100644
index 00000000..7e03468e
Binary files /dev/null and b/frontend/src/assets/sources/ncp-lake-charles-asc.png differ
diff --git a/frontend/src/assets/sources/ncp-lake-charles-cath-lab.png b/frontend/src/assets/sources/ncp-lake-charles-cath-lab.png
new file mode 100644
index 00000000..7e03468e
Binary files /dev/null and b/frontend/src/assets/sources/ncp-lake-charles-cath-lab.png differ
diff --git a/frontend/src/assets/sources/ncp-north-phoenix-cath-lab.png b/frontend/src/assets/sources/ncp-north-phoenix-cath-lab.png
new file mode 100644
index 00000000..cf65143d
Binary files /dev/null and b/frontend/src/assets/sources/ncp-north-phoenix-cath-lab.png differ
diff --git a/frontend/src/assets/sources/ncp-phoenix-asc.png b/frontend/src/assets/sources/ncp-phoenix-asc.png
new file mode 100644
index 00000000..3c6d9091
Binary files /dev/null and b/frontend/src/assets/sources/ncp-phoenix-asc.png differ
diff --git a/frontend/src/assets/sources/ncp-phoenix-cath-lab.png b/frontend/src/assets/sources/ncp-phoenix-cath-lab.png
new file mode 100644
index 00000000..cf65143d
Binary files /dev/null and b/frontend/src/assets/sources/ncp-phoenix-cath-lab.png differ
diff --git a/frontend/src/assets/sources/ncp-port-arthur-cath-lab.png b/frontend/src/assets/sources/ncp-port-arthur-cath-lab.png
new file mode 100644
index 00000000..f9c33c07
Binary files /dev/null and b/frontend/src/assets/sources/ncp-port-arthur-cath-lab.png differ
diff --git a/frontend/src/assets/sources/ncp-tyler-asc.png b/frontend/src/assets/sources/ncp-tyler-asc.png
new file mode 100644
index 00000000..02b8de17
Binary files /dev/null and b/frontend/src/assets/sources/ncp-tyler-asc.png differ
diff --git a/frontend/src/assets/sources/ncp-tyler-cath-lab.png b/frontend/src/assets/sources/ncp-tyler-cath-lab.png
new file mode 100644
index 00000000..53007f65
Binary files /dev/null and b/frontend/src/assets/sources/ncp-tyler-cath-lab.png differ
diff --git a/frontend/src/assets/sources/ncp-waco-cardiology-cath-lab-asc.png b/frontend/src/assets/sources/ncp-waco-cardiology-cath-lab-asc.png
new file mode 100644
index 00000000..73d556d9
Binary files /dev/null and b/frontend/src/assets/sources/ncp-waco-cardiology-cath-lab-asc.png differ
diff --git a/frontend/src/assets/sources/ncp-waco-cardiology-cath-lab.png b/frontend/src/assets/sources/ncp-waco-cardiology-cath-lab.png
new file mode 100644
index 00000000..391e9972
Binary files /dev/null and b/frontend/src/assets/sources/ncp-waco-cardiology-cath-lab.png differ
diff --git a/frontend/src/assets/sources/ne-philadelphia-asc.png b/frontend/src/assets/sources/ne-philadelphia-asc.png
new file mode 100644
index 00000000..2709bd1a
Binary files /dev/null and b/frontend/src/assets/sources/ne-philadelphia-asc.png differ
diff --git a/frontend/src/assets/sources/ne-philadelphia-vascular.png b/frontend/src/assets/sources/ne-philadelphia-vascular.png
new file mode 100644
index 00000000..4a61f976
Binary files /dev/null and b/frontend/src/assets/sources/ne-philadelphia-vascular.png differ
diff --git a/frontend/src/assets/sources/nebraska-foot-and-ankle-pc.png b/frontend/src/assets/sources/nebraska-foot-and-ankle-pc.png
new file mode 100644
index 00000000..8220835c
Binary files /dev/null and b/frontend/src/assets/sources/nebraska-foot-and-ankle-pc.png differ
diff --git a/frontend/src/assets/sources/nefl-cardiology.png b/frontend/src/assets/sources/nefl-cardiology.png
new file mode 100644
index 00000000..a1036129
Binary files /dev/null and b/frontend/src/assets/sources/nefl-cardiology.png differ
diff --git a/frontend/src/assets/sources/neighborhood-health-services-corporation.png b/frontend/src/assets/sources/neighborhood-health-services-corporation.png
new file mode 100644
index 00000000..d17d372d
Binary files /dev/null and b/frontend/src/assets/sources/neighborhood-health-services-corporation.png differ
diff --git a/frontend/src/assets/sources/nemaha-valley-community-hospital.png b/frontend/src/assets/sources/nemaha-valley-community-hospital.png
new file mode 100644
index 00000000..234ffe10
Binary files /dev/null and b/frontend/src/assets/sources/nemaha-valley-community-hospital.png differ
diff --git a/frontend/src/assets/sources/neosho-memorial-regional-medical-center.svg b/frontend/src/assets/sources/neosho-memorial-regional-medical-center.svg
new file mode 100644
index 00000000..283abcab
--- /dev/null
+++ b/frontend/src/assets/sources/neosho-memorial-regional-medical-center.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/nephrology-and-endocrine-associates-asc.png b/frontend/src/assets/sources/nephrology-and-endocrine-associates-asc.png
new file mode 100644
index 00000000..54e0b557
Binary files /dev/null and b/frontend/src/assets/sources/nephrology-and-endocrine-associates-asc.png differ
diff --git a/frontend/src/assets/sources/nephrology-and-hypertension-specialist.png b/frontend/src/assets/sources/nephrology-and-hypertension-specialist.png
new file mode 100644
index 00000000..b5e6948d
Binary files /dev/null and b/frontend/src/assets/sources/nephrology-and-hypertension-specialist.png differ
diff --git a/frontend/src/assets/sources/nephrology-associates-inc.png b/frontend/src/assets/sources/nephrology-associates-inc.png
new file mode 100644
index 00000000..d9ae8687
Binary files /dev/null and b/frontend/src/assets/sources/nephrology-associates-inc.png differ
diff --git a/frontend/src/assets/sources/nephrology-associates-medical-group.jpg b/frontend/src/assets/sources/nephrology-associates-medical-group.jpg
new file mode 100644
index 00000000..e4afd72c
Binary files /dev/null and b/frontend/src/assets/sources/nephrology-associates-medical-group.jpg differ
diff --git a/frontend/src/assets/sources/nephrology-associates-of-michigan.png b/frontend/src/assets/sources/nephrology-associates-of-michigan.png
new file mode 100644
index 00000000..622cd7a3
Binary files /dev/null and b/frontend/src/assets/sources/nephrology-associates-of-michigan.png differ
diff --git a/frontend/src/assets/sources/nephrology-associates-of-n-illinois.jpg b/frontend/src/assets/sources/nephrology-associates-of-n-illinois.jpg
new file mode 100644
index 00000000..0065b84a
Binary files /dev/null and b/frontend/src/assets/sources/nephrology-associates-of-n-illinois.jpg differ
diff --git a/frontend/src/assets/sources/nephrology-associates-of-n-indiana.png b/frontend/src/assets/sources/nephrology-associates-of-n-indiana.png
new file mode 100644
index 00000000..65e1c6b2
Binary files /dev/null and b/frontend/src/assets/sources/nephrology-associates-of-n-indiana.png differ
diff --git a/frontend/src/assets/sources/nephrology-associates-of-upland.png b/frontend/src/assets/sources/nephrology-associates-of-upland.png
new file mode 100644
index 00000000..2f00266a
Binary files /dev/null and b/frontend/src/assets/sources/nephrology-associates-of-upland.png differ
diff --git a/frontend/src/assets/sources/nephrology-consultants-llc.png b/frontend/src/assets/sources/nephrology-consultants-llc.png
new file mode 100644
index 00000000..776ee184
Binary files /dev/null and b/frontend/src/assets/sources/nephrology-consultants-llc.png differ
diff --git a/frontend/src/assets/sources/nephrology-consultants-pa.png b/frontend/src/assets/sources/nephrology-consultants-pa.png
new file mode 100644
index 00000000..aa131ae6
Binary files /dev/null and b/frontend/src/assets/sources/nephrology-consultants-pa.png differ
diff --git a/frontend/src/assets/sources/nephrology-group-of-northeast-florida.png b/frontend/src/assets/sources/nephrology-group-of-northeast-florida.png
new file mode 100644
index 00000000..10d33637
Binary files /dev/null and b/frontend/src/assets/sources/nephrology-group-of-northeast-florida.png differ
diff --git a/frontend/src/assets/sources/nephrology-physicians-llc.png b/frontend/src/assets/sources/nephrology-physicians-llc.png
new file mode 100644
index 00000000..732297fa
Binary files /dev/null and b/frontend/src/assets/sources/nephrology-physicians-llc.png differ
diff --git a/frontend/src/assets/sources/neshoba-county-general-hospital.png b/frontend/src/assets/sources/neshoba-county-general-hospital.png
new file mode 100644
index 00000000..fb2f6d04
Binary files /dev/null and b/frontend/src/assets/sources/neshoba-county-general-hospital.png differ
diff --git a/frontend/src/assets/sources/neuro-network-partners.jpg b/frontend/src/assets/sources/neuro-network-partners.jpg
new file mode 100644
index 00000000..243357ab
Binary files /dev/null and b/frontend/src/assets/sources/neuro-network-partners.jpg differ
diff --git a/frontend/src/assets/sources/neurologic-associates-of-cape-girardeau.png b/frontend/src/assets/sources/neurologic-associates-of-cape-girardeau.png
new file mode 100644
index 00000000..e9ef57ce
Binary files /dev/null and b/frontend/src/assets/sources/neurologic-associates-of-cape-girardeau.png differ
diff --git a/frontend/src/assets/sources/neurological-and-spinal-surgery-llc.png b/frontend/src/assets/sources/neurological-and-spinal-surgery-llc.png
new file mode 100644
index 00000000..d906dbc1
Binary files /dev/null and b/frontend/src/assets/sources/neurological-and-spinal-surgery-llc.png differ
diff --git a/frontend/src/assets/sources/neurological-associates-of-st-paul-na.png b/frontend/src/assets/sources/neurological-associates-of-st-paul-na.png
new file mode 100644
index 00000000..5e1088ab
Binary files /dev/null and b/frontend/src/assets/sources/neurological-associates-of-st-paul-na.png differ
diff --git a/frontend/src/assets/sources/neurological-surgery-associates-pc.png b/frontend/src/assets/sources/neurological-surgery-associates-pc.png
new file mode 100644
index 00000000..0e227104
Binary files /dev/null and b/frontend/src/assets/sources/neurological-surgery-associates-pc.png differ
diff --git a/frontend/src/assets/sources/neurology-and-sleep-associates.png b/frontend/src/assets/sources/neurology-and-sleep-associates.png
new file mode 100644
index 00000000..697773d5
Binary files /dev/null and b/frontend/src/assets/sources/neurology-and-sleep-associates.png differ
diff --git a/frontend/src/assets/sources/neurology-center-of-east-alabama.png b/frontend/src/assets/sources/neurology-center-of-east-alabama.png
new file mode 100644
index 00000000..0e227104
Binary files /dev/null and b/frontend/src/assets/sources/neurology-center-of-east-alabama.png differ
diff --git a/frontend/src/assets/sources/neurology-of-bethlehem-pc.png b/frontend/src/assets/sources/neurology-of-bethlehem-pc.png
new file mode 100644
index 00000000..cc4dab71
Binary files /dev/null and b/frontend/src/assets/sources/neurology-of-bethlehem-pc.png differ
diff --git a/frontend/src/assets/sources/neurology-specialists.png b/frontend/src/assets/sources/neurology-specialists.png
new file mode 100644
index 00000000..3c6b232e
Binary files /dev/null and b/frontend/src/assets/sources/neurology-specialists.png differ
diff --git a/frontend/src/assets/sources/neuropsychiatric-hospitals.svg b/frontend/src/assets/sources/neuropsychiatric-hospitals.svg
new file mode 100644
index 00000000..0f8b66b8
--- /dev/null
+++ b/frontend/src/assets/sources/neuropsychiatric-hospitals.svg
@@ -0,0 +1,719 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/neurospinal-associates-pa.png b/frontend/src/assets/sources/neurospinal-associates-pa.png
new file mode 100644
index 00000000..b21a7bc1
Binary files /dev/null and b/frontend/src/assets/sources/neurospinal-associates-pa.png differ
diff --git a/frontend/src/assets/sources/neurosurgery-of-north-iowa-pc.jpg b/frontend/src/assets/sources/neurosurgery-of-north-iowa-pc.jpg
new file mode 100644
index 00000000..8ee6dd9b
Binary files /dev/null and b/frontend/src/assets/sources/neurosurgery-of-north-iowa-pc.jpg differ
diff --git a/frontend/src/assets/sources/neurosurgical-group-of-texas-llp.png b/frontend/src/assets/sources/neurosurgical-group-of-texas-llp.png
new file mode 100644
index 00000000..3fc53316
Binary files /dev/null and b/frontend/src/assets/sources/neurosurgical-group-of-texas-llp.png differ
diff --git a/frontend/src/assets/sources/nevada-regional-medical-center.png b/frontend/src/assets/sources/nevada-regional-medical-center.png
new file mode 100644
index 00000000..ff01e4ed
Binary files /dev/null and b/frontend/src/assets/sources/nevada-regional-medical-center.png differ
diff --git a/frontend/src/assets/sources/nevada-vwh.svg b/frontend/src/assets/sources/nevada-vwh.svg
new file mode 100644
index 00000000..892b88da
--- /dev/null
+++ b/frontend/src/assets/sources/nevada-vwh.svg
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/new-birth-company-kansas-city.png b/frontend/src/assets/sources/new-birth-company-kansas-city.png
new file mode 100644
index 00000000..d840747a
Binary files /dev/null and b/frontend/src/assets/sources/new-birth-company-kansas-city.png differ
diff --git a/frontend/src/assets/sources/new-england-foot-and-ankle-pc.jpg b/frontend/src/assets/sources/new-england-foot-and-ankle-pc.jpg
new file mode 100644
index 00000000..9086e46c
Binary files /dev/null and b/frontend/src/assets/sources/new-england-foot-and-ankle-pc.jpg differ
diff --git a/frontend/src/assets/sources/new-england-hernia-center.png b/frontend/src/assets/sources/new-england-hernia-center.png
new file mode 100644
index 00000000..780d2159
Binary files /dev/null and b/frontend/src/assets/sources/new-england-hernia-center.png differ
diff --git a/frontend/src/assets/sources/new-england-life-care.png b/frontend/src/assets/sources/new-england-life-care.png
new file mode 100644
index 00000000..80a7241b
Binary files /dev/null and b/frontend/src/assets/sources/new-england-life-care.png differ
diff --git a/frontend/src/assets/sources/new-foundation-medical-group.png b/frontend/src/assets/sources/new-foundation-medical-group.png
new file mode 100644
index 00000000..98d5048b
Binary files /dev/null and b/frontend/src/assets/sources/new-foundation-medical-group.png differ
diff --git a/frontend/src/assets/sources/new-jersey-vision-associates-pc.png b/frontend/src/assets/sources/new-jersey-vision-associates-pc.png
new file mode 100644
index 00000000..6f32a946
Binary files /dev/null and b/frontend/src/assets/sources/new-jersey-vision-associates-pc.png differ
diff --git a/frontend/src/assets/sources/new-milford-medical-group-llc.png b/frontend/src/assets/sources/new-milford-medical-group-llc.png
new file mode 100644
index 00000000..071d3091
Binary files /dev/null and b/frontend/src/assets/sources/new-milford-medical-group-llc.png differ
diff --git a/frontend/src/assets/sources/new-orleans-cbo-anesthesia.png b/frontend/src/assets/sources/new-orleans-cbo-anesthesia.png
new file mode 100644
index 00000000..a73059bf
Binary files /dev/null and b/frontend/src/assets/sources/new-orleans-cbo-anesthesia.png differ
diff --git a/frontend/src/assets/sources/new-richmond-clinic.svg b/frontend/src/assets/sources/new-richmond-clinic.svg
new file mode 100644
index 00000000..97e5e10e
--- /dev/null
+++ b/frontend/src/assets/sources/new-richmond-clinic.svg
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/new-vision-cataract-center-llc.png b/frontend/src/assets/sources/new-vision-cataract-center-llc.png
new file mode 100644
index 00000000..e2838663
Binary files /dev/null and b/frontend/src/assets/sources/new-vision-cataract-center-llc.png differ
diff --git a/frontend/src/assets/sources/new-york-comprehensive-care-p-c.jpg b/frontend/src/assets/sources/new-york-comprehensive-care-p-c.jpg
new file mode 100644
index 00000000..44153dee
Binary files /dev/null and b/frontend/src/assets/sources/new-york-comprehensive-care-p-c.jpg differ
diff --git a/frontend/src/assets/sources/new-york-presbyterian-hudson-valley-hospital.jpg b/frontend/src/assets/sources/new-york-presbyterian-hudson-valley-hospital.jpg
new file mode 100644
index 00000000..d0de1624
Binary files /dev/null and b/frontend/src/assets/sources/new-york-presbyterian-hudson-valley-hospital.jpg differ
diff --git a/frontend/src/assets/sources/newport-beach-internal-medicine-inc.png b/frontend/src/assets/sources/newport-beach-internal-medicine-inc.png
new file mode 100644
index 00000000..6c2a3048
Binary files /dev/null and b/frontend/src/assets/sources/newport-beach-internal-medicine-inc.png differ
diff --git a/frontend/src/assets/sources/newport-beach-medical-associates.png b/frontend/src/assets/sources/newport-beach-medical-associates.png
new file mode 100644
index 00000000..f45959b1
Binary files /dev/null and b/frontend/src/assets/sources/newport-beach-medical-associates.png differ
diff --git a/frontend/src/assets/sources/newport-beach-ob-gyn.jpg b/frontend/src/assets/sources/newport-beach-ob-gyn.jpg
new file mode 100644
index 00000000..996dab71
Binary files /dev/null and b/frontend/src/assets/sources/newport-beach-ob-gyn.jpg differ
diff --git a/frontend/src/assets/sources/newport-medicine-group-inc.png b/frontend/src/assets/sources/newport-medicine-group-inc.png
new file mode 100644
index 00000000..42c0a2fe
Binary files /dev/null and b/frontend/src/assets/sources/newport-medicine-group-inc.png differ
diff --git a/frontend/src/assets/sources/newport-orthopedic-institute.png b/frontend/src/assets/sources/newport-orthopedic-institute.png
new file mode 100644
index 00000000..0c8266c4
Binary files /dev/null and b/frontend/src/assets/sources/newport-orthopedic-institute.png differ
diff --git a/frontend/src/assets/sources/newyork-presbyterian-brooklyn-methodist-hospital.svg b/frontend/src/assets/sources/newyork-presbyterian-brooklyn-methodist-hospital.svg
new file mode 100644
index 00000000..9f9b6f6d
--- /dev/null
+++ b/frontend/src/assets/sources/newyork-presbyterian-brooklyn-methodist-hospital.svg
@@ -0,0 +1,406 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/nextcare-arizona-family-care.png b/frontend/src/assets/sources/nextcare-arizona-family-care.png
new file mode 100644
index 00000000..ccc5569e
Binary files /dev/null and b/frontend/src/assets/sources/nextcare-arizona-family-care.png differ
diff --git a/frontend/src/assets/sources/nextcare-chi-nebraska.jpg b/frontend/src/assets/sources/nextcare-chi-nebraska.jpg
new file mode 100644
index 00000000..0b78cba8
Binary files /dev/null and b/frontend/src/assets/sources/nextcare-chi-nebraska.jpg differ
diff --git a/frontend/src/assets/sources/nextcare-georgia-llc.png b/frontend/src/assets/sources/nextcare-georgia-llc.png
new file mode 100644
index 00000000..08dfb0e7
Binary files /dev/null and b/frontend/src/assets/sources/nextcare-georgia-llc.png differ
diff --git a/frontend/src/assets/sources/nextcare-urgent-care-michigan.png b/frontend/src/assets/sources/nextcare-urgent-care-michigan.png
new file mode 100644
index 00000000..a8826ce3
Binary files /dev/null and b/frontend/src/assets/sources/nextcare-urgent-care-michigan.png differ
diff --git a/frontend/src/assets/sources/nextcare-urgent-care-tx.jpg b/frontend/src/assets/sources/nextcare-urgent-care-tx.jpg
new file mode 100644
index 00000000..d599ab0a
Binary files /dev/null and b/frontend/src/assets/sources/nextcare-urgent-care-tx.jpg differ
diff --git a/frontend/src/assets/sources/nextcare-urgent-care.jpg b/frontend/src/assets/sources/nextcare-urgent-care.jpg
new file mode 100644
index 00000000..d599ab0a
Binary files /dev/null and b/frontend/src/assets/sources/nextcare-urgent-care.jpg differ
diff --git a/frontend/src/assets/sources/nextgen-medical-practice-demo.svg b/frontend/src/assets/sources/nextgen-medical-practice-demo.svg
new file mode 100644
index 00000000..20e08d94
--- /dev/null
+++ b/frontend/src/assets/sources/nextgen-medical-practice-demo.svg
@@ -0,0 +1,181 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/nextgen-medical-practice.svg b/frontend/src/assets/sources/nextgen-medical-practice.svg
new file mode 100644
index 00000000..20e08d94
--- /dev/null
+++ b/frontend/src/assets/sources/nextgen-medical-practice.svg
@@ -0,0 +1,181 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/ngs-mid-state-endoscopy-center.png b/frontend/src/assets/sources/ngs-mid-state-endoscopy-center.png
new file mode 100644
index 00000000..c513bb3c
Binary files /dev/null and b/frontend/src/assets/sources/ngs-mid-state-endoscopy-center.png differ
diff --git a/frontend/src/assets/sources/niagara-falls-memorial-medical-center.png b/frontend/src/assets/sources/niagara-falls-memorial-medical-center.png
new file mode 100644
index 00000000..b7f60939
Binary files /dev/null and b/frontend/src/assets/sources/niagara-falls-memorial-medical-center.png differ
diff --git a/frontend/src/assets/sources/nicklaus-childrens-pediatric-specialisits.png b/frontend/src/assets/sources/nicklaus-childrens-pediatric-specialisits.png
new file mode 100644
index 00000000..df87632f
Binary files /dev/null and b/frontend/src/assets/sources/nicklaus-childrens-pediatric-specialisits.png differ
diff --git a/frontend/src/assets/sources/nkdhc.jpg b/frontend/src/assets/sources/nkdhc.jpg
new file mode 100644
index 00000000..1ea6a477
Binary files /dev/null and b/frontend/src/assets/sources/nkdhc.jpg differ
diff --git a/frontend/src/assets/sources/no-colorado-hospitalists.svg b/frontend/src/assets/sources/no-colorado-hospitalists.svg
new file mode 100644
index 00000000..8ce575ed
--- /dev/null
+++ b/frontend/src/assets/sources/no-colorado-hospitalists.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/north-broward-hospital-district.png b/frontend/src/assets/sources/north-broward-hospital-district.png
new file mode 100644
index 00000000..948138c8
Binary files /dev/null and b/frontend/src/assets/sources/north-broward-hospital-district.png differ
diff --git a/frontend/src/assets/sources/north-caddo-medical-center.jpg b/frontend/src/assets/sources/north-caddo-medical-center.jpg
new file mode 100644
index 00000000..465de918
Binary files /dev/null and b/frontend/src/assets/sources/north-caddo-medical-center.jpg differ
diff --git a/frontend/src/assets/sources/north-cascade-eye-associates-p-s.jpg b/frontend/src/assets/sources/north-cascade-eye-associates-p-s.jpg
new file mode 100644
index 00000000..1a4e1386
Binary files /dev/null and b/frontend/src/assets/sources/north-cascade-eye-associates-p-s.jpg differ
diff --git a/frontend/src/assets/sources/north-central-health-care.png b/frontend/src/assets/sources/north-central-health-care.png
new file mode 100644
index 00000000..c69ac5e8
Binary files /dev/null and b/frontend/src/assets/sources/north-central-health-care.png differ
diff --git a/frontend/src/assets/sources/north-country-hospital-and-health-center.png b/frontend/src/assets/sources/north-country-hospital-and-health-center.png
new file mode 100644
index 00000000..11f62066
Binary files /dev/null and b/frontend/src/assets/sources/north-country-hospital-and-health-center.png differ
diff --git a/frontend/src/assets/sources/north-east-medical-services.png b/frontend/src/assets/sources/north-east-medical-services.png
new file mode 100644
index 00000000..f255c2f0
Binary files /dev/null and b/frontend/src/assets/sources/north-east-medical-services.png differ
diff --git a/frontend/src/assets/sources/north-florida-pediatrics-pa.jpg b/frontend/src/assets/sources/north-florida-pediatrics-pa.jpg
new file mode 100644
index 00000000..42975505
Binary files /dev/null and b/frontend/src/assets/sources/north-florida-pediatrics-pa.jpg differ
diff --git a/frontend/src/assets/sources/north-georgia-healthcare-center.png b/frontend/src/assets/sources/north-georgia-healthcare-center.png
new file mode 100644
index 00000000..02343c15
Binary files /dev/null and b/frontend/src/assets/sources/north-georgia-healthcare-center.png differ
diff --git a/frontend/src/assets/sources/north-hills-gastro-endoscopy-center.png b/frontend/src/assets/sources/north-hills-gastro-endoscopy-center.png
new file mode 100644
index 00000000..d8716ef0
Binary files /dev/null and b/frontend/src/assets/sources/north-hills-gastro-endoscopy-center.png differ
diff --git a/frontend/src/assets/sources/north-idaho-eye-institution.png b/frontend/src/assets/sources/north-idaho-eye-institution.png
new file mode 100644
index 00000000..72a71bd0
Binary files /dev/null and b/frontend/src/assets/sources/north-idaho-eye-institution.png differ
diff --git a/frontend/src/assets/sources/north-idaho-pain-center-llc.jpg b/frontend/src/assets/sources/north-idaho-pain-center-llc.jpg
new file mode 100644
index 00000000..3e0e08e7
Binary files /dev/null and b/frontend/src/assets/sources/north-idaho-pain-center-llc.jpg differ
diff --git a/frontend/src/assets/sources/north-jersey-gastro-and-endoscopy-center.png b/frontend/src/assets/sources/north-jersey-gastro-and-endoscopy-center.png
new file mode 100644
index 00000000..6e3b41cb
Binary files /dev/null and b/frontend/src/assets/sources/north-jersey-gastro-and-endoscopy-center.png differ
diff --git a/frontend/src/assets/sources/north-kansas-city-hospital.png b/frontend/src/assets/sources/north-kansas-city-hospital.png
new file mode 100644
index 00000000..21947839
Binary files /dev/null and b/frontend/src/assets/sources/north-kansas-city-hospital.png differ
diff --git a/frontend/src/assets/sources/north-oaks-health-system.png b/frontend/src/assets/sources/north-oaks-health-system.png
new file mode 100644
index 00000000..fe38bd6b
Binary files /dev/null and b/frontend/src/assets/sources/north-oaks-health-system.png differ
diff --git a/frontend/src/assets/sources/north-puget-sound-mri.svg b/frontend/src/assets/sources/north-puget-sound-mri.svg
new file mode 100644
index 00000000..f082d446
--- /dev/null
+++ b/frontend/src/assets/sources/north-puget-sound-mri.svg
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/north-river-primary-care-associates.png b/frontend/src/assets/sources/north-river-primary-care-associates.png
new file mode 100644
index 00000000..90b8fe02
Binary files /dev/null and b/frontend/src/assets/sources/north-river-primary-care-associates.png differ
diff --git a/frontend/src/assets/sources/north-suburban-eye-associates.png b/frontend/src/assets/sources/north-suburban-eye-associates.png
new file mode 100644
index 00000000..fdda25b4
Binary files /dev/null and b/frontend/src/assets/sources/north-suburban-eye-associates.png differ
diff --git a/frontend/src/assets/sources/north-texas-area-community-health-center.png b/frontend/src/assets/sources/north-texas-area-community-health-center.png
new file mode 100644
index 00000000..13dfd788
Binary files /dev/null and b/frontend/src/assets/sources/north-texas-area-community-health-center.png differ
diff --git a/frontend/src/assets/sources/north-valley-family-medicine.png b/frontend/src/assets/sources/north-valley-family-medicine.png
new file mode 100644
index 00000000..8b984ccc
Binary files /dev/null and b/frontend/src/assets/sources/north-valley-family-medicine.png differ
diff --git a/frontend/src/assets/sources/northbay-healthcare-system.svg b/frontend/src/assets/sources/northbay-healthcare-system.svg
new file mode 100644
index 00000000..89a77eee
--- /dev/null
+++ b/frontend/src/assets/sources/northbay-healthcare-system.svg
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/northeast-pa-community-healthcare.jpg b/frontend/src/assets/sources/northeast-pa-community-healthcare.jpg
new file mode 100644
index 00000000..bcdfd150
Binary files /dev/null and b/frontend/src/assets/sources/northeast-pa-community-healthcare.jpg differ
diff --git a/frontend/src/assets/sources/northeast-tarrant-internal-med-assoc.png b/frontend/src/assets/sources/northeast-tarrant-internal-med-assoc.png
new file mode 100644
index 00000000..da221e11
Binary files /dev/null and b/frontend/src/assets/sources/northeast-tarrant-internal-med-assoc.png differ
diff --git a/frontend/src/assets/sources/northeast-valley-health-corporation.png b/frontend/src/assets/sources/northeast-valley-health-corporation.png
new file mode 100644
index 00000000..927a84f3
Binary files /dev/null and b/frontend/src/assets/sources/northeast-valley-health-corporation.png differ
diff --git a/frontend/src/assets/sources/northeastern-health-system.jpg b/frontend/src/assets/sources/northeastern-health-system.jpg
new file mode 100644
index 00000000..3794bfc9
Binary files /dev/null and b/frontend/src/assets/sources/northeastern-health-system.jpg differ
diff --git a/frontend/src/assets/sources/northern-arizona-healthcare.svg b/frontend/src/assets/sources/northern-arizona-healthcare.svg
new file mode 100644
index 00000000..e2c66f6c
--- /dev/null
+++ b/frontend/src/assets/sources/northern-arizona-healthcare.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/northern-cal-advanced-surgery-center-lp.svg b/frontend/src/assets/sources/northern-cal-advanced-surgery-center-lp.svg
new file mode 100644
index 00000000..97a4cf37
--- /dev/null
+++ b/frontend/src/assets/sources/northern-cal-advanced-surgery-center-lp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/northern-eye-center.png b/frontend/src/assets/sources/northern-eye-center.png
new file mode 100644
index 00000000..8b3abe4d
Binary files /dev/null and b/frontend/src/assets/sources/northern-eye-center.png differ
diff --git a/frontend/src/assets/sources/northern-inyo-healthcare-district.png b/frontend/src/assets/sources/northern-inyo-healthcare-district.png
new file mode 100644
index 00000000..15c6bdd5
Binary files /dev/null and b/frontend/src/assets/sources/northern-inyo-healthcare-district.png differ
diff --git a/frontend/src/assets/sources/northern-light-health.png b/frontend/src/assets/sources/northern-light-health.png
new file mode 100644
index 00000000..6514aa70
Binary files /dev/null and b/frontend/src/assets/sources/northern-light-health.png differ
diff --git a/frontend/src/assets/sources/northern-maine-medical-center.png b/frontend/src/assets/sources/northern-maine-medical-center.png
new file mode 100644
index 00000000..7e5c29b2
Binary files /dev/null and b/frontend/src/assets/sources/northern-maine-medical-center.png differ
diff --git a/frontend/src/assets/sources/northern-va-pulm-and-critical-care-assoc.jpg b/frontend/src/assets/sources/northern-va-pulm-and-critical-care-assoc.jpg
new file mode 100644
index 00000000..63e3b3cb
Binary files /dev/null and b/frontend/src/assets/sources/northern-va-pulm-and-critical-care-assoc.jpg differ
diff --git a/frontend/src/assets/sources/northland-health-care-access.jpg b/frontend/src/assets/sources/northland-health-care-access.jpg
new file mode 100644
index 00000000..dcdae278
Binary files /dev/null and b/frontend/src/assets/sources/northland-health-care-access.jpg differ
diff --git a/frontend/src/assets/sources/northside-center-for-child-development.png b/frontend/src/assets/sources/northside-center-for-child-development.png
new file mode 100644
index 00000000..9d5ef7ec
Binary files /dev/null and b/frontend/src/assets/sources/northside-center-for-child-development.png differ
diff --git a/frontend/src/assets/sources/northstar-sleep-center.png b/frontend/src/assets/sources/northstar-sleep-center.png
new file mode 100644
index 00000000..abb63dd2
Binary files /dev/null and b/frontend/src/assets/sources/northstar-sleep-center.png differ
diff --git a/frontend/src/assets/sources/northwest-congenital-heart-care.svg b/frontend/src/assets/sources/northwest-congenital-heart-care.svg
new file mode 100644
index 00000000..f2e8136d
--- /dev/null
+++ b/frontend/src/assets/sources/northwest-congenital-heart-care.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/northwest-fl-gastroenterology-center.jpg b/frontend/src/assets/sources/northwest-fl-gastroenterology-center.jpg
new file mode 100644
index 00000000..53d91448
Binary files /dev/null and b/frontend/src/assets/sources/northwest-fl-gastroenterology-center.jpg differ
diff --git a/frontend/src/assets/sources/northwest-health-la-porte.png b/frontend/src/assets/sources/northwest-health-la-porte.png
new file mode 100644
index 00000000..a6347b02
Binary files /dev/null and b/frontend/src/assets/sources/northwest-health-la-porte.png differ
diff --git a/frontend/src/assets/sources/northwest-health-services-inc.png b/frontend/src/assets/sources/northwest-health-services-inc.png
new file mode 100644
index 00000000..f404c491
Binary files /dev/null and b/frontend/src/assets/sources/northwest-health-services-inc.png differ
diff --git a/frontend/src/assets/sources/northwest-human-services-inc.png b/frontend/src/assets/sources/northwest-human-services-inc.png
new file mode 100644
index 00000000..b91a313c
Binary files /dev/null and b/frontend/src/assets/sources/northwest-human-services-inc.png differ
diff --git a/frontend/src/assets/sources/northwest-medical-center.svg b/frontend/src/assets/sources/northwest-medical-center.svg
new file mode 100644
index 00000000..5ac3172f
--- /dev/null
+++ b/frontend/src/assets/sources/northwest-medical-center.svg
@@ -0,0 +1,161 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/northwest-surgical-specialists.png b/frontend/src/assets/sources/northwest-surgical-specialists.png
new file mode 100644
index 00000000..a61d1525
Binary files /dev/null and b/frontend/src/assets/sources/northwest-surgical-specialists.png differ
diff --git a/frontend/src/assets/sources/northwest-womens-healthcare.jpg b/frontend/src/assets/sources/northwest-womens-healthcare.jpg
new file mode 100644
index 00000000..6b894a9c
Binary files /dev/null and b/frontend/src/assets/sources/northwest-womens-healthcare.jpg differ
diff --git a/frontend/src/assets/sources/norton-childrens-medical-associates-middletown.svg b/frontend/src/assets/sources/norton-childrens-medical-associates-middletown.svg
new file mode 100644
index 00000000..c188a641
--- /dev/null
+++ b/frontend/src/assets/sources/norton-childrens-medical-associates-middletown.svg
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/norton-county-hospital.png b/frontend/src/assets/sources/norton-county-hospital.png
new file mode 100644
index 00000000..ebaa212d
Binary files /dev/null and b/frontend/src/assets/sources/norton-county-hospital.png differ
diff --git a/frontend/src/assets/sources/norwalk-cardiac-thoracic.png b/frontend/src/assets/sources/norwalk-cardiac-thoracic.png
new file mode 100644
index 00000000..4f4a4ea0
Binary files /dev/null and b/frontend/src/assets/sources/norwalk-cardiac-thoracic.png differ
diff --git a/frontend/src/assets/sources/notre-dame.png b/frontend/src/assets/sources/notre-dame.png
new file mode 100644
index 00000000..093d3778
Binary files /dev/null and b/frontend/src/assets/sources/notre-dame.png differ
diff --git a/frontend/src/assets/sources/nova-vision-center.png b/frontend/src/assets/sources/nova-vision-center.png
new file mode 100644
index 00000000..dd344af2
Binary files /dev/null and b/frontend/src/assets/sources/nova-vision-center.png differ
diff --git a/frontend/src/assets/sources/nsipa.png b/frontend/src/assets/sources/nsipa.png
new file mode 100644
index 00000000..9c390e95
Binary files /dev/null and b/frontend/src/assets/sources/nsipa.png differ
diff --git a/frontend/src/assets/sources/nsu-student-medical-center.png b/frontend/src/assets/sources/nsu-student-medical-center.png
new file mode 100644
index 00000000..b4f39725
Binary files /dev/null and b/frontend/src/assets/sources/nsu-student-medical-center.png differ
diff --git a/frontend/src/assets/sources/nura-pa.svg b/frontend/src/assets/sources/nura-pa.svg
new file mode 100644
index 00000000..980daadc
--- /dev/null
+++ b/frontend/src/assets/sources/nura-pa.svg
@@ -0,0 +1,125 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/nura-surgical-center.svg b/frontend/src/assets/sources/nura-surgical-center.svg
new file mode 100644
index 00000000..980daadc
--- /dev/null
+++ b/frontend/src/assets/sources/nura-surgical-center.svg
@@ -0,0 +1,125 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/nvision.jpg b/frontend/src/assets/sources/nvision.jpg
new file mode 100644
index 00000000..a028b8f4
Binary files /dev/null and b/frontend/src/assets/sources/nvision.jpg differ
diff --git a/frontend/src/assets/sources/nvision.png b/frontend/src/assets/sources/nvision.png
new file mode 100644
index 00000000..30a0cb3b
Binary files /dev/null and b/frontend/src/assets/sources/nvision.png differ
diff --git a/frontend/src/assets/sources/nw-center-for-congenital-heart-disease.svg b/frontend/src/assets/sources/nw-center-for-congenital-heart-disease.svg
new file mode 100644
index 00000000..0bf35d1d
--- /dev/null
+++ b/frontend/src/assets/sources/nw-center-for-congenital-heart-disease.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/oak-hills-family-care.png b/frontend/src/assets/sources/oak-hills-family-care.png
new file mode 100644
index 00000000..a7a81d73
Binary files /dev/null and b/frontend/src/assets/sources/oak-hills-family-care.png differ
diff --git a/frontend/src/assets/sources/oakland-asc.png b/frontend/src/assets/sources/oakland-asc.png
new file mode 100644
index 00000000..4492edaa
Binary files /dev/null and b/frontend/src/assets/sources/oakland-asc.png differ
diff --git a/frontend/src/assets/sources/oakland-vascular.png b/frontend/src/assets/sources/oakland-vascular.png
new file mode 100644
index 00000000..42097496
Binary files /dev/null and b/frontend/src/assets/sources/oakland-vascular.png differ
diff --git a/frontend/src/assets/sources/oaklawn-hospital.png b/frontend/src/assets/sources/oaklawn-hospital.png
new file mode 100644
index 00000000..c55c925f
Binary files /dev/null and b/frontend/src/assets/sources/oaklawn-hospital.png differ
diff --git a/frontend/src/assets/sources/oakwater-surgical-center.png b/frontend/src/assets/sources/oakwater-surgical-center.png
new file mode 100644
index 00000000..6d7aa8ca
Binary files /dev/null and b/frontend/src/assets/sources/oakwater-surgical-center.png differ
diff --git a/frontend/src/assets/sources/oasis-medical-and-surgical-wellness.png b/frontend/src/assets/sources/oasis-medical-and-surgical-wellness.png
new file mode 100644
index 00000000..4887b088
Binary files /dev/null and b/frontend/src/assets/sources/oasis-medical-and-surgical-wellness.png differ
diff --git a/frontend/src/assets/sources/oasis-medical-serrvices-pllc.png b/frontend/src/assets/sources/oasis-medical-serrvices-pllc.png
new file mode 100644
index 00000000..05dac38e
Binary files /dev/null and b/frontend/src/assets/sources/oasis-medical-serrvices-pllc.png differ
diff --git a/frontend/src/assets/sources/oasis-medical-services-pllc.jpg b/frontend/src/assets/sources/oasis-medical-services-pllc.jpg
new file mode 100644
index 00000000..a1153f4b
Binary files /dev/null and b/frontend/src/assets/sources/oasis-medical-services-pllc.jpg differ
diff --git a/frontend/src/assets/sources/ob-and-ped-subspecialty-grp-of-ks-mo.png b/frontend/src/assets/sources/ob-and-ped-subspecialty-grp-of-ks-mo.png
new file mode 100644
index 00000000..b8a02bb1
Binary files /dev/null and b/frontend/src/assets/sources/ob-and-ped-subspecialty-grp-of-ks-mo.png differ
diff --git a/frontend/src/assets/sources/obstetrix-medical-group-of-colorado-p-c.jpg b/frontend/src/assets/sources/obstetrix-medical-group-of-colorado-p-c.jpg
new file mode 100644
index 00000000..3010bc3a
Binary files /dev/null and b/frontend/src/assets/sources/obstetrix-medical-group-of-colorado-p-c.jpg differ
diff --git a/frontend/src/assets/sources/obstetrix-medical-group-of-in-p-c.jpeg b/frontend/src/assets/sources/obstetrix-medical-group-of-in-p-c.jpeg
new file mode 100644
index 00000000..621f5f62
Binary files /dev/null and b/frontend/src/assets/sources/obstetrix-medical-group-of-in-p-c.jpeg differ
diff --git a/frontend/src/assets/sources/obstetrix-of-the-mountain-states.png b/frontend/src/assets/sources/obstetrix-of-the-mountain-states.png
new file mode 100644
index 00000000..fc60cdfe
Binary files /dev/null and b/frontend/src/assets/sources/obstetrix-of-the-mountain-states.png differ
diff --git a/frontend/src/assets/sources/ocala-anesthesia-services.png b/frontend/src/assets/sources/ocala-anesthesia-services.png
new file mode 100644
index 00000000..eaeedf5e
Binary files /dev/null and b/frontend/src/assets/sources/ocala-anesthesia-services.png differ
diff --git a/frontend/src/assets/sources/ocala-eye-p-a.png b/frontend/src/assets/sources/ocala-eye-p-a.png
new file mode 100644
index 00000000..f1dcd0ef
Binary files /dev/null and b/frontend/src/assets/sources/ocala-eye-p-a.png differ
diff --git a/frontend/src/assets/sources/ocala-eye-surgery-center.png b/frontend/src/assets/sources/ocala-eye-surgery-center.png
new file mode 100644
index 00000000..f1dcd0ef
Binary files /dev/null and b/frontend/src/assets/sources/ocala-eye-surgery-center.png differ
diff --git a/frontend/src/assets/sources/ocean-county-foot-and-ankle-surgical-associates.svg b/frontend/src/assets/sources/ocean-county-foot-and-ankle-surgical-associates.svg
new file mode 100644
index 00000000..0f4a6537
--- /dev/null
+++ b/frontend/src/assets/sources/ocean-county-foot-and-ankle-surgical-associates.svg
@@ -0,0 +1,236 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/ocean-endosurgery-center.png b/frontend/src/assets/sources/ocean-endosurgery-center.png
new file mode 100644
index 00000000..c0b28025
Binary files /dev/null and b/frontend/src/assets/sources/ocean-endosurgery-center.png differ
diff --git a/frontend/src/assets/sources/ochsner-lsu-health-system-of-north-louisiana.png b/frontend/src/assets/sources/ochsner-lsu-health-system-of-north-louisiana.png
new file mode 100644
index 00000000..eaf24302
Binary files /dev/null and b/frontend/src/assets/sources/ochsner-lsu-health-system-of-north-louisiana.png differ
diff --git a/frontend/src/assets/sources/ocli-ophthalmic-consultants-of-li.svg b/frontend/src/assets/sources/ocli-ophthalmic-consultants-of-li.svg
new file mode 100644
index 00000000..ad1baf4e
--- /dev/null
+++ b/frontend/src/assets/sources/ocli-ophthalmic-consultants-of-li.svg
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/ocoee-regional-health-corporation.jpg b/frontend/src/assets/sources/ocoee-regional-health-corporation.jpg
new file mode 100644
index 00000000..41654681
Binary files /dev/null and b/frontend/src/assets/sources/ocoee-regional-health-corporation.jpg differ
diff --git a/frontend/src/assets/sources/odessa-medical-enterprises-pllc.jpg b/frontend/src/assets/sources/odessa-medical-enterprises-pllc.jpg
new file mode 100644
index 00000000..b271471b
Binary files /dev/null and b/frontend/src/assets/sources/odessa-medical-enterprises-pllc.jpg differ
diff --git a/frontend/src/assets/sources/odessa-memorial-healthcare-center.png b/frontend/src/assets/sources/odessa-memorial-healthcare-center.png
new file mode 100644
index 00000000..d66299d0
Binary files /dev/null and b/frontend/src/assets/sources/odessa-memorial-healthcare-center.png differ
diff --git a/frontend/src/assets/sources/oga.png b/frontend/src/assets/sources/oga.png
new file mode 100644
index 00000000..a7ecbca8
Binary files /dev/null and b/frontend/src/assets/sources/oga.png differ
diff --git a/frontend/src/assets/sources/ohio-ear-institute-llc.jpg b/frontend/src/assets/sources/ohio-ear-institute-llc.jpg
new file mode 100644
index 00000000..11e88a46
Binary files /dev/null and b/frontend/src/assets/sources/ohio-ear-institute-llc.jpg differ
diff --git a/frontend/src/assets/sources/ohio-health.jpg b/frontend/src/assets/sources/ohio-health.jpg
new file mode 100644
index 00000000..1294f710
Binary files /dev/null and b/frontend/src/assets/sources/ohio-health.jpg differ
diff --git a/frontend/src/assets/sources/okanogan-county-public-hospital-district-no-4-d-b-a-north-valley-hospital-district.png b/frontend/src/assets/sources/okanogan-county-public-hospital-district-no-4-d-b-a-north-valley-hospital-district.png
new file mode 100644
index 00000000..200b823d
Binary files /dev/null and b/frontend/src/assets/sources/okanogan-county-public-hospital-district-no-4-d-b-a-north-valley-hospital-district.png differ
diff --git a/frontend/src/assets/sources/okc-orthopedics-and-sports-medicine.png b/frontend/src/assets/sources/okc-orthopedics-and-sports-medicine.png
new file mode 100644
index 00000000..99a91ff0
Binary files /dev/null and b/frontend/src/assets/sources/okc-orthopedics-and-sports-medicine.png differ
diff --git a/frontend/src/assets/sources/oklahoma-heart-hospital.png b/frontend/src/assets/sources/oklahoma-heart-hospital.png
new file mode 100644
index 00000000..a14b7996
Binary files /dev/null and b/frontend/src/assets/sources/oklahoma-heart-hospital.png differ
diff --git a/frontend/src/assets/sources/oklahoma-surgical-hospital.png b/frontend/src/assets/sources/oklahoma-surgical-hospital.png
new file mode 100644
index 00000000..bd1ee74c
Binary files /dev/null and b/frontend/src/assets/sources/oklahoma-surgical-hospital.png differ
diff --git a/frontend/src/assets/sources/olathe-medical-center.png b/frontend/src/assets/sources/olathe-medical-center.png
new file mode 100644
index 00000000..ad7bfe05
Binary files /dev/null and b/frontend/src/assets/sources/olathe-medical-center.png differ
diff --git a/frontend/src/assets/sources/olean-medical-practice-pllc.png b/frontend/src/assets/sources/olean-medical-practice-pllc.png
new file mode 100644
index 00000000..81ce5a78
Binary files /dev/null and b/frontend/src/assets/sources/olean-medical-practice-pllc.png differ
diff --git a/frontend/src/assets/sources/olson-memorial-clinic.png b/frontend/src/assets/sources/olson-memorial-clinic.png
new file mode 100644
index 00000000..7c8a54cc
Binary files /dev/null and b/frontend/src/assets/sources/olson-memorial-clinic.png differ
diff --git a/frontend/src/assets/sources/omni-eye-services.svg b/frontend/src/assets/sources/omni-eye-services.svg
new file mode 100644
index 00000000..3021cc67
--- /dev/null
+++ b/frontend/src/assets/sources/omni-eye-services.svg
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/omni-eye-specialists.jpg b/frontend/src/assets/sources/omni-eye-specialists.jpg
new file mode 100644
index 00000000..7f6d15e4
Binary files /dev/null and b/frontend/src/assets/sources/omni-eye-specialists.jpg differ
diff --git a/frontend/src/assets/sources/omni-eye-surgery-of-new-york-pc.jpg b/frontend/src/assets/sources/omni-eye-surgery-of-new-york-pc.jpg
new file mode 100644
index 00000000..d63d58ef
Binary files /dev/null and b/frontend/src/assets/sources/omni-eye-surgery-of-new-york-pc.jpg differ
diff --git a/frontend/src/assets/sources/omni-family-health.png b/frontend/src/assets/sources/omni-family-health.png
new file mode 100644
index 00000000..b10150ff
Binary files /dev/null and b/frontend/src/assets/sources/omni-family-health.png differ
diff --git a/frontend/src/assets/sources/oncology-and-hematology.png b/frontend/src/assets/sources/oncology-and-hematology.png
new file mode 100644
index 00000000..7e6b6af4
Binary files /dev/null and b/frontend/src/assets/sources/oncology-and-hematology.png differ
diff --git a/frontend/src/assets/sources/oncology-hematology-consultants.png b/frontend/src/assets/sources/oncology-hematology-consultants.png
new file mode 100644
index 00000000..3686d9c0
Binary files /dev/null and b/frontend/src/assets/sources/oncology-hematology-consultants.png differ
diff --git a/frontend/src/assets/sources/one-health-ohio.png b/frontend/src/assets/sources/one-health-ohio.png
new file mode 100644
index 00000000..94934c92
Binary files /dev/null and b/frontend/src/assets/sources/one-health-ohio.png differ
diff --git a/frontend/src/assets/sources/one-medical-group.png b/frontend/src/assets/sources/one-medical-group.png
new file mode 100644
index 00000000..876fad07
Binary files /dev/null and b/frontend/src/assets/sources/one-medical-group.png differ
diff --git a/frontend/src/assets/sources/one-oak-medical-group-llc.png b/frontend/src/assets/sources/one-oak-medical-group-llc.png
new file mode 100644
index 00000000..c57be0fa
Binary files /dev/null and b/frontend/src/assets/sources/one-oak-medical-group-llc.png differ
diff --git a/frontend/src/assets/sources/oneida-nation-health-services.png b/frontend/src/assets/sources/oneida-nation-health-services.png
new file mode 100644
index 00000000..f255c2f0
Binary files /dev/null and b/frontend/src/assets/sources/oneida-nation-health-services.png differ
diff --git a/frontend/src/assets/sources/oneworld-community-health-centers-inc.png b/frontend/src/assets/sources/oneworld-community-health-centers-inc.png
new file mode 100644
index 00000000..1b7b35dd
Binary files /dev/null and b/frontend/src/assets/sources/oneworld-community-health-centers-inc.png differ
diff --git a/frontend/src/assets/sources/onslow-medical-specialties-clinic.jpg b/frontend/src/assets/sources/onslow-medical-specialties-clinic.jpg
new file mode 100644
index 00000000..c29b8620
Binary files /dev/null and b/frontend/src/assets/sources/onslow-medical-specialties-clinic.jpg differ
diff --git a/frontend/src/assets/sources/opelousas-general-hospital.png b/frontend/src/assets/sources/opelousas-general-hospital.png
new file mode 100644
index 00000000..320c662a
Binary files /dev/null and b/frontend/src/assets/sources/opelousas-general-hospital.png differ
diff --git a/frontend/src/assets/sources/operating-engineers-local-101-health-and-welfare-fund.png b/frontend/src/assets/sources/operating-engineers-local-101-health-and-welfare-fund.png
new file mode 100644
index 00000000..3f7e8a7b
Binary files /dev/null and b/frontend/src/assets/sources/operating-engineers-local-101-health-and-welfare-fund.png differ
diff --git a/frontend/src/assets/sources/ophthalmic-associates-apc.png b/frontend/src/assets/sources/ophthalmic-associates-apc.png
new file mode 100644
index 00000000..2461de32
Binary files /dev/null and b/frontend/src/assets/sources/ophthalmic-associates-apc.png differ
diff --git a/frontend/src/assets/sources/ophthalmic-consultants-of-connecticut.svg b/frontend/src/assets/sources/ophthalmic-consultants-of-connecticut.svg
new file mode 100644
index 00000000..ad1baf4e
--- /dev/null
+++ b/frontend/src/assets/sources/ophthalmic-consultants-of-connecticut.svg
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/ophthalmic-partners-pc.png b/frontend/src/assets/sources/ophthalmic-partners-pc.png
new file mode 100644
index 00000000..73bf3c6d
Binary files /dev/null and b/frontend/src/assets/sources/ophthalmic-partners-pc.png differ
diff --git a/frontend/src/assets/sources/ophthalmic-physicians-inc.png b/frontend/src/assets/sources/ophthalmic-physicians-inc.png
new file mode 100644
index 00000000..b88cdfe0
Binary files /dev/null and b/frontend/src/assets/sources/ophthalmic-physicians-inc.png differ
diff --git a/frontend/src/assets/sources/ophthalmic-surgical-associates-inc.png b/frontend/src/assets/sources/ophthalmic-surgical-associates-inc.png
new file mode 100644
index 00000000..aa64ea0d
Binary files /dev/null and b/frontend/src/assets/sources/ophthalmic-surgical-associates-inc.png differ
diff --git a/frontend/src/assets/sources/ophthalmology-associates.png b/frontend/src/assets/sources/ophthalmology-associates.png
new file mode 100644
index 00000000..b84775ac
Binary files /dev/null and b/frontend/src/assets/sources/ophthalmology-associates.png differ
diff --git a/frontend/src/assets/sources/ophthalmology-consultants-ltd.jpg b/frontend/src/assets/sources/ophthalmology-consultants-ltd.jpg
new file mode 100644
index 00000000..ed824532
Binary files /dev/null and b/frontend/src/assets/sources/ophthalmology-consultants-ltd.jpg differ
diff --git a/frontend/src/assets/sources/optum.svg b/frontend/src/assets/sources/optum.svg
new file mode 100644
index 00000000..5d9dd151
--- /dev/null
+++ b/frontend/src/assets/sources/optum.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/optumcare-cancer-care.svg b/frontend/src/assets/sources/optumcare-cancer-care.svg
new file mode 100644
index 00000000..5d9dd151
--- /dev/null
+++ b/frontend/src/assets/sources/optumcare-cancer-care.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/optumcare-lung-and-allergy-care.jpg b/frontend/src/assets/sources/optumcare-lung-and-allergy-care.jpg
new file mode 100644
index 00000000..2218f350
Binary files /dev/null and b/frontend/src/assets/sources/optumcare-lung-and-allergy-care.jpg differ
diff --git a/frontend/src/assets/sources/optumcare-medical-group-rbrc.png b/frontend/src/assets/sources/optumcare-medical-group-rbrc.png
new file mode 100644
index 00000000..8745c8c2
Binary files /dev/null and b/frontend/src/assets/sources/optumcare-medical-group-rbrc.png differ
diff --git a/frontend/src/assets/sources/optumcare-orthopaedics-and-spine.svg b/frontend/src/assets/sources/optumcare-orthopaedics-and-spine.svg
new file mode 100644
index 00000000..3075bc40
--- /dev/null
+++ b/frontend/src/assets/sources/optumcare-orthopaedics-and-spine.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/optumcare-primary-care.png b/frontend/src/assets/sources/optumcare-primary-care.png
new file mode 100644
index 00000000..79382f8e
Binary files /dev/null and b/frontend/src/assets/sources/optumcare-primary-care.png differ
diff --git a/frontend/src/assets/sources/orange-county-vascular.jpg b/frontend/src/assets/sources/orange-county-vascular.jpg
new file mode 100644
index 00000000..e55aec92
Binary files /dev/null and b/frontend/src/assets/sources/orange-county-vascular.jpg differ
diff --git a/frontend/src/assets/sources/oregon-rheumatology-clinics-llc.png b/frontend/src/assets/sources/oregon-rheumatology-clinics-llc.png
new file mode 100644
index 00000000..1f021dc5
Binary files /dev/null and b/frontend/src/assets/sources/oregon-rheumatology-clinics-llc.png differ
diff --git a/frontend/src/assets/sources/oregon-trail-eye-center-and-eye-surgery.jpg b/frontend/src/assets/sources/oregon-trail-eye-center-and-eye-surgery.jpg
new file mode 100644
index 00000000..0d376d82
Binary files /dev/null and b/frontend/src/assets/sources/oregon-trail-eye-center-and-eye-surgery.jpg differ
diff --git a/frontend/src/assets/sources/orlando-asc.svg b/frontend/src/assets/sources/orlando-asc.svg
new file mode 100644
index 00000000..fa6122d1
--- /dev/null
+++ b/frontend/src/assets/sources/orlando-asc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/ortho.png b/frontend/src/assets/sources/ortho.png
new file mode 100644
index 00000000..9f81894f
Binary files /dev/null and b/frontend/src/assets/sources/ortho.png differ
diff --git a/frontend/src/assets/sources/orthopaedic-and-spine-center.png b/frontend/src/assets/sources/orthopaedic-and-spine-center.png
new file mode 100644
index 00000000..10021912
Binary files /dev/null and b/frontend/src/assets/sources/orthopaedic-and-spine-center.png differ
diff --git a/frontend/src/assets/sources/orthopaedic-and-sports-medicine-center.png b/frontend/src/assets/sources/orthopaedic-and-sports-medicine-center.png
new file mode 100644
index 00000000..95485159
Binary files /dev/null and b/frontend/src/assets/sources/orthopaedic-and-sports-medicine-center.png differ
diff --git a/frontend/src/assets/sources/orthopaedic-institute-for-children.png b/frontend/src/assets/sources/orthopaedic-institute-for-children.png
new file mode 100644
index 00000000..d7887284
Binary files /dev/null and b/frontend/src/assets/sources/orthopaedic-institute-for-children.png differ
diff --git a/frontend/src/assets/sources/orthopaedic-institute-western-kentucky.png b/frontend/src/assets/sources/orthopaedic-institute-western-kentucky.png
new file mode 100644
index 00000000..367292ff
Binary files /dev/null and b/frontend/src/assets/sources/orthopaedic-institute-western-kentucky.png differ
diff --git a/frontend/src/assets/sources/orthopaedic-specialty-institute.jpg b/frontend/src/assets/sources/orthopaedic-specialty-institute.jpg
new file mode 100644
index 00000000..d01c9a3f
Binary files /dev/null and b/frontend/src/assets/sources/orthopaedic-specialty-institute.jpg differ
diff --git a/frontend/src/assets/sources/orthopedic-and-sports-medicine-ctr.png b/frontend/src/assets/sources/orthopedic-and-sports-medicine-ctr.png
new file mode 100644
index 00000000..85393478
Binary files /dev/null and b/frontend/src/assets/sources/orthopedic-and-sports-medicine-ctr.png differ
diff --git a/frontend/src/assets/sources/orthopedic-and-sports-medicine-of-saint-joseph.png b/frontend/src/assets/sources/orthopedic-and-sports-medicine-of-saint-joseph.png
new file mode 100644
index 00000000..1c4c910a
Binary files /dev/null and b/frontend/src/assets/sources/orthopedic-and-sports-medicine-of-saint-joseph.png differ
diff --git a/frontend/src/assets/sources/orthopedic-and-sports-medicine-specialists-of-green-bay-sc.png b/frontend/src/assets/sources/orthopedic-and-sports-medicine-specialists-of-green-bay-sc.png
new file mode 100644
index 00000000..b29c7cd8
Binary files /dev/null and b/frontend/src/assets/sources/orthopedic-and-sports-medicine-specialists-of-green-bay-sc.png differ
diff --git a/frontend/src/assets/sources/orthopedic-physician-associates.png b/frontend/src/assets/sources/orthopedic-physician-associates.png
new file mode 100644
index 00000000..5a562c86
Binary files /dev/null and b/frontend/src/assets/sources/orthopedic-physician-associates.png differ
diff --git a/frontend/src/assets/sources/orthopedic-rehabilitation-associates.jpg b/frontend/src/assets/sources/orthopedic-rehabilitation-associates.jpg
new file mode 100644
index 00000000..aebab856
Binary files /dev/null and b/frontend/src/assets/sources/orthopedic-rehabilitation-associates.jpg differ
diff --git a/frontend/src/assets/sources/orthopedic-specialists-of-seattle.png b/frontend/src/assets/sources/orthopedic-specialists-of-seattle.png
new file mode 100644
index 00000000..492f4833
Binary files /dev/null and b/frontend/src/assets/sources/orthopedic-specialists-of-seattle.png differ
diff --git a/frontend/src/assets/sources/orthopedics-and-sports-medicine.png b/frontend/src/assets/sources/orthopedics-and-sports-medicine.png
new file mode 100644
index 00000000..7e6b6af4
Binary files /dev/null and b/frontend/src/assets/sources/orthopedics-and-sports-medicine.png differ
diff --git a/frontend/src/assets/sources/orthopedics-northwest.png b/frontend/src/assets/sources/orthopedics-northwest.png
new file mode 100644
index 00000000..874192fe
Binary files /dev/null and b/frontend/src/assets/sources/orthopedics-northwest.png differ
diff --git a/frontend/src/assets/sources/orthopedics-of-southern-in.svg b/frontend/src/assets/sources/orthopedics-of-southern-in.svg
new file mode 100644
index 00000000..e29d64b2
--- /dev/null
+++ b/frontend/src/assets/sources/orthopedics-of-southern-in.svg
@@ -0,0 +1,193 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/orthopedics-unlimited-llc.png b/frontend/src/assets/sources/orthopedics-unlimited-llc.png
new file mode 100644
index 00000000..a72bad8e
Binary files /dev/null and b/frontend/src/assets/sources/orthopedics-unlimited-llc.png differ
diff --git a/frontend/src/assets/sources/orthotennessee.png b/frontend/src/assets/sources/orthotennessee.png
new file mode 100644
index 00000000..7bf95685
Binary files /dev/null and b/frontend/src/assets/sources/orthotennessee.png differ
diff --git a/frontend/src/assets/sources/osborne-county-memorial-hospital.jpg b/frontend/src/assets/sources/osborne-county-memorial-hospital.jpg
new file mode 100644
index 00000000..a402e078
Binary files /dev/null and b/frontend/src/assets/sources/osborne-county-memorial-hospital.jpg differ
diff --git a/frontend/src/assets/sources/osf-saint-clare-medical-center.png b/frontend/src/assets/sources/osf-saint-clare-medical-center.png
new file mode 100644
index 00000000..3f4f60a0
Binary files /dev/null and b/frontend/src/assets/sources/osf-saint-clare-medical-center.png differ
diff --git a/frontend/src/assets/sources/osmond-general-hospital.png b/frontend/src/assets/sources/osmond-general-hospital.png
new file mode 100644
index 00000000..d825fb21
Binary files /dev/null and b/frontend/src/assets/sources/osmond-general-hospital.png differ
diff --git a/frontend/src/assets/sources/ottawa-county-health-center.jpg b/frontend/src/assets/sources/ottawa-county-health-center.jpg
new file mode 100644
index 00000000..bfe14335
Binary files /dev/null and b/frontend/src/assets/sources/ottawa-county-health-center.jpg differ
diff --git a/frontend/src/assets/sources/ottawa-family-care-center.png b/frontend/src/assets/sources/ottawa-family-care-center.png
new file mode 100644
index 00000000..4f486679
Binary files /dev/null and b/frontend/src/assets/sources/ottawa-family-care-center.png differ
diff --git a/frontend/src/assets/sources/overland-park-mfm.jpg b/frontend/src/assets/sources/overland-park-mfm.jpg
new file mode 100644
index 00000000..698cade7
Binary files /dev/null and b/frontend/src/assets/sources/overland-park-mfm.jpg differ
diff --git a/frontend/src/assets/sources/owensboro-medical-practice.png b/frontend/src/assets/sources/owensboro-medical-practice.png
new file mode 100644
index 00000000..b5a7e9a2
Binary files /dev/null and b/frontend/src/assets/sources/owensboro-medical-practice.png differ
diff --git a/frontend/src/assets/sources/pa-foot-and-ankle-associates-llc.png b/frontend/src/assets/sources/pa-foot-and-ankle-associates-llc.png
new file mode 100644
index 00000000..add2bc20
Binary files /dev/null and b/frontend/src/assets/sources/pa-foot-and-ankle-associates-llc.png differ
diff --git a/frontend/src/assets/sources/pa-vascular-institute.png b/frontend/src/assets/sources/pa-vascular-institute.png
new file mode 100644
index 00000000..0e613399
Binary files /dev/null and b/frontend/src/assets/sources/pa-vascular-institute.png differ
diff --git a/frontend/src/assets/sources/pace.png b/frontend/src/assets/sources/pace.png
new file mode 100644
index 00000000..d99ddcaf
Binary files /dev/null and b/frontend/src/assets/sources/pace.png differ
diff --git a/frontend/src/assets/sources/pacific-arthritis-care-center.png b/frontend/src/assets/sources/pacific-arthritis-care-center.png
new file mode 100644
index 00000000..94d7d832
Binary files /dev/null and b/frontend/src/assets/sources/pacific-arthritis-care-center.png differ
diff --git a/frontend/src/assets/sources/pacific-cardiovascular-associates.jpg b/frontend/src/assets/sources/pacific-cardiovascular-associates.jpg
new file mode 100644
index 00000000..0224d42f
Binary files /dev/null and b/frontend/src/assets/sources/pacific-cardiovascular-associates.jpg differ
diff --git a/frontend/src/assets/sources/pacific-cataract-and-laser-institute.jpg b/frontend/src/assets/sources/pacific-cataract-and-laser-institute.jpg
new file mode 100644
index 00000000..099c5e02
Binary files /dev/null and b/frontend/src/assets/sources/pacific-cataract-and-laser-institute.jpg differ
diff --git a/frontend/src/assets/sources/pacific-heart-and-vascular-med-grp.png b/frontend/src/assets/sources/pacific-heart-and-vascular-med-grp.png
new file mode 100644
index 00000000..fcee7120
Binary files /dev/null and b/frontend/src/assets/sources/pacific-heart-and-vascular-med-grp.png differ
diff --git a/frontend/src/assets/sources/pacific-heart-medical-group.png b/frontend/src/assets/sources/pacific-heart-medical-group.png
new file mode 100644
index 00000000..d59c36aa
Binary files /dev/null and b/frontend/src/assets/sources/pacific-heart-medical-group.png differ
diff --git a/frontend/src/assets/sources/pacific-medical-group.png b/frontend/src/assets/sources/pacific-medical-group.png
new file mode 100644
index 00000000..7a96dc6b
Binary files /dev/null and b/frontend/src/assets/sources/pacific-medical-group.png differ
diff --git a/frontend/src/assets/sources/pacific-neurosurgery-and-spine-medical-group-inc.jpg b/frontend/src/assets/sources/pacific-neurosurgery-and-spine-medical-group-inc.jpg
new file mode 100644
index 00000000..5fbf31e7
Binary files /dev/null and b/frontend/src/assets/sources/pacific-neurosurgery-and-spine-medical-group-inc.jpg differ
diff --git a/frontend/src/assets/sources/pacific-northwest-retina.svg b/frontend/src/assets/sources/pacific-northwest-retina.svg
new file mode 100644
index 00000000..93b53857
--- /dev/null
+++ b/frontend/src/assets/sources/pacific-northwest-retina.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/frontend/src/assets/sources/pacific-pulmonary-medical-group.png b/frontend/src/assets/sources/pacific-pulmonary-medical-group.png
new file mode 100644
index 00000000..90b8fe02
Binary files /dev/null and b/frontend/src/assets/sources/pacific-pulmonary-medical-group.png differ
diff --git a/frontend/src/assets/sources/pacific-vascucare-asc.jpg b/frontend/src/assets/sources/pacific-vascucare-asc.jpg
new file mode 100644
index 00000000..0ec68e0d
Binary files /dev/null and b/frontend/src/assets/sources/pacific-vascucare-asc.jpg differ
diff --git a/frontend/src/assets/sources/pacific-vascucare.jpg b/frontend/src/assets/sources/pacific-vascucare.jpg
new file mode 100644
index 00000000..0ec68e0d
Binary files /dev/null and b/frontend/src/assets/sources/pacific-vascucare.jpg differ
diff --git a/frontend/src/assets/sources/pacific-womens-healthcare-associates.png b/frontend/src/assets/sources/pacific-womens-healthcare-associates.png
new file mode 100644
index 00000000..264ec363
Binary files /dev/null and b/frontend/src/assets/sources/pacific-womens-healthcare-associates.png differ
diff --git a/frontend/src/assets/sources/pact-multispecialty.png b/frontend/src/assets/sources/pact-multispecialty.png
new file mode 100644
index 00000000..c4c90ce5
Binary files /dev/null and b/frontend/src/assets/sources/pact-multispecialty.png differ
diff --git a/frontend/src/assets/sources/pact-surgical-specialists.png b/frontend/src/assets/sources/pact-surgical-specialists.png
new file mode 100644
index 00000000..c4c90ce5
Binary files /dev/null and b/frontend/src/assets/sources/pact-surgical-specialists.png differ
diff --git a/frontend/src/assets/sources/pain-centers-of-minnesota-chaska-llc.jpg b/frontend/src/assets/sources/pain-centers-of-minnesota-chaska-llc.jpg
new file mode 100644
index 00000000..d1d69d26
Binary files /dev/null and b/frontend/src/assets/sources/pain-centers-of-minnesota-chaska-llc.jpg differ
diff --git a/frontend/src/assets/sources/pain-centers-of-minnesota-mankato-llc.svg b/frontend/src/assets/sources/pain-centers-of-minnesota-mankato-llc.svg
new file mode 100644
index 00000000..82d997a5
--- /dev/null
+++ b/frontend/src/assets/sources/pain-centers-of-minnesota-mankato-llc.svg
@@ -0,0 +1,118 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/pain-centers-of-wisconsin-franklin-llc.png b/frontend/src/assets/sources/pain-centers-of-wisconsin-franklin-llc.png
new file mode 100644
index 00000000..80d3ca90
Binary files /dev/null and b/frontend/src/assets/sources/pain-centers-of-wisconsin-franklin-llc.png differ
diff --git a/frontend/src/assets/sources/pain-centers-of-wisconsin-sauk-prairie.png b/frontend/src/assets/sources/pain-centers-of-wisconsin-sauk-prairie.png
new file mode 100644
index 00000000..eb92ef65
Binary files /dev/null and b/frontend/src/assets/sources/pain-centers-of-wisconsin-sauk-prairie.png differ
diff --git a/frontend/src/assets/sources/pain-centers-of-wisconsin-west-bend-llc.png b/frontend/src/assets/sources/pain-centers-of-wisconsin-west-bend-llc.png
new file mode 100644
index 00000000..3b95775e
Binary files /dev/null and b/frontend/src/assets/sources/pain-centers-of-wisconsin-west-bend-llc.png differ
diff --git a/frontend/src/assets/sources/pain-management-of-north-idaho-pllc.jpg b/frontend/src/assets/sources/pain-management-of-north-idaho-pllc.jpg
new file mode 100644
index 00000000..3e0e08e7
Binary files /dev/null and b/frontend/src/assets/sources/pain-management-of-north-idaho-pllc.jpg differ
diff --git a/frontend/src/assets/sources/palm-beach-spine-and-diagnostic-institute.png b/frontend/src/assets/sources/palm-beach-spine-and-diagnostic-institute.png
new file mode 100644
index 00000000..f00fc4dd
Binary files /dev/null and b/frontend/src/assets/sources/palm-beach-spine-and-diagnostic-institute.png differ
diff --git a/frontend/src/assets/sources/palmetto-retina-center-llc.jpg b/frontend/src/assets/sources/palmetto-retina-center-llc.jpg
new file mode 100644
index 00000000..e87c4a4a
Binary files /dev/null and b/frontend/src/assets/sources/palmetto-retina-center-llc.jpg differ
diff --git a/frontend/src/assets/sources/palo-alto-county-health-system.svg b/frontend/src/assets/sources/palo-alto-county-health-system.svg
new file mode 100644
index 00000000..dcd644e9
--- /dev/null
+++ b/frontend/src/assets/sources/palo-alto-county-health-system.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/palomar-health.svg b/frontend/src/assets/sources/palomar-health.svg
new file mode 100644
index 00000000..0fa180f9
--- /dev/null
+++ b/frontend/src/assets/sources/palomar-health.svg
@@ -0,0 +1,66 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/pami.jpg b/frontend/src/assets/sources/pami.jpg
new file mode 100644
index 00000000..ce8cbb0d
Binary files /dev/null and b/frontend/src/assets/sources/pami.jpg differ
diff --git a/frontend/src/assets/sources/pana-community-hospital.png b/frontend/src/assets/sources/pana-community-hospital.png
new file mode 100644
index 00000000..4168e5c7
Binary files /dev/null and b/frontend/src/assets/sources/pana-community-hospital.png differ
diff --git a/frontend/src/assets/sources/pandi-capital-llc.png b/frontend/src/assets/sources/pandi-capital-llc.png
new file mode 100644
index 00000000..2c1e8dc0
Binary files /dev/null and b/frontend/src/assets/sources/pandi-capital-llc.png differ
diff --git a/frontend/src/assets/sources/panhandle-eye-group.jpg b/frontend/src/assets/sources/panhandle-eye-group.jpg
new file mode 100644
index 00000000..50dc063b
Binary files /dev/null and b/frontend/src/assets/sources/panhandle-eye-group.jpg differ
diff --git a/frontend/src/assets/sources/panhandle-health-district.png b/frontend/src/assets/sources/panhandle-health-district.png
new file mode 100644
index 00000000..42e91c8f
Binary files /dev/null and b/frontend/src/assets/sources/panhandle-health-district.png differ
diff --git a/frontend/src/assets/sources/panorama-orthopedics-and-spine-center-pc.png b/frontend/src/assets/sources/panorama-orthopedics-and-spine-center-pc.png
new file mode 100644
index 00000000..a5eb94e7
Binary files /dev/null and b/frontend/src/assets/sources/panorama-orthopedics-and-spine-center-pc.png differ
diff --git a/frontend/src/assets/sources/paris-cardiology-center.jpg b/frontend/src/assets/sources/paris-cardiology-center.jpg
new file mode 100644
index 00000000..4a61ea0e
Binary files /dev/null and b/frontend/src/assets/sources/paris-cardiology-center.jpg differ
diff --git a/frontend/src/assets/sources/parivash-mohamadi-md.png b/frontend/src/assets/sources/parivash-mohamadi-md.png
new file mode 100644
index 00000000..1ff87bbb
Binary files /dev/null and b/frontend/src/assets/sources/parivash-mohamadi-md.png differ
diff --git a/frontend/src/assets/sources/park-center-for-procedures.jpg b/frontend/src/assets/sources/park-center-for-procedures.jpg
new file mode 100644
index 00000000..5e3d825e
Binary files /dev/null and b/frontend/src/assets/sources/park-center-for-procedures.jpg differ
diff --git a/frontend/src/assets/sources/park-hudson-surgery-center.jpg b/frontend/src/assets/sources/park-hudson-surgery-center.jpg
new file mode 100644
index 00000000..f8851ec8
Binary files /dev/null and b/frontend/src/assets/sources/park-hudson-surgery-center.jpg differ
diff --git a/frontend/src/assets/sources/parkway-endoscopy-center.jpg b/frontend/src/assets/sources/parkway-endoscopy-center.jpg
new file mode 100644
index 00000000..4df15721
Binary files /dev/null and b/frontend/src/assets/sources/parkway-endoscopy-center.jpg differ
diff --git a/frontend/src/assets/sources/parkway-psychiatric.jpg b/frontend/src/assets/sources/parkway-psychiatric.jpg
new file mode 100644
index 00000000..248e2289
Binary files /dev/null and b/frontend/src/assets/sources/parkway-psychiatric.jpg differ
diff --git a/frontend/src/assets/sources/partners-for-womens-health-pa.png b/frontend/src/assets/sources/partners-for-womens-health-pa.png
new file mode 100644
index 00000000..66c9ad24
Binary files /dev/null and b/frontend/src/assets/sources/partners-for-womens-health-pa.png differ
diff --git a/frontend/src/assets/sources/partners-in-health-family-medicine.png b/frontend/src/assets/sources/partners-in-health-family-medicine.png
new file mode 100644
index 00000000..b8a6ce79
Binary files /dev/null and b/frontend/src/assets/sources/partners-in-health-family-medicine.png differ
diff --git a/frontend/src/assets/sources/partners-in-pediatrics.png b/frontend/src/assets/sources/partners-in-pediatrics.png
new file mode 100644
index 00000000..a407ab47
Binary files /dev/null and b/frontend/src/assets/sources/partners-in-pediatrics.png differ
diff --git a/frontend/src/assets/sources/partners-in-pediatrics.svg b/frontend/src/assets/sources/partners-in-pediatrics.svg
new file mode 100644
index 00000000..070b33c0
--- /dev/null
+++ b/frontend/src/assets/sources/partners-in-pediatrics.svg
@@ -0,0 +1,93 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/paseo-medical-specialists.jpg b/frontend/src/assets/sources/paseo-medical-specialists.jpg
new file mode 100644
index 00000000..0566afbc
Binary files /dev/null and b/frontend/src/assets/sources/paseo-medical-specialists.jpg differ
diff --git a/frontend/src/assets/sources/patricia-korber-md-inc.png b/frontend/src/assets/sources/patricia-korber-md-inc.png
new file mode 100644
index 00000000..6c2a3048
Binary files /dev/null and b/frontend/src/assets/sources/patricia-korber-md-inc.png differ
diff --git a/frontend/src/assets/sources/paul-h-crane-md.jpg b/frontend/src/assets/sources/paul-h-crane-md.jpg
new file mode 100644
index 00000000..9f42d2f6
Binary files /dev/null and b/frontend/src/assets/sources/paul-h-crane-md.jpg differ
diff --git a/frontend/src/assets/sources/paul-phillips-eye-and-surgery-center.png b/frontend/src/assets/sources/paul-phillips-eye-and-surgery-center.png
new file mode 100644
index 00000000..c65b378f
Binary files /dev/null and b/frontend/src/assets/sources/paul-phillips-eye-and-surgery-center.png differ
diff --git a/frontend/src/assets/sources/paul-potach-d-p-m.png b/frontend/src/assets/sources/paul-potach-d-p-m.png
new file mode 100644
index 00000000..6d44e874
Binary files /dev/null and b/frontend/src/assets/sources/paul-potach-d-p-m.png differ
diff --git a/frontend/src/assets/sources/paul-somers-dpm.png b/frontend/src/assets/sources/paul-somers-dpm.png
new file mode 100644
index 00000000..e51a7134
Binary files /dev/null and b/frontend/src/assets/sources/paul-somers-dpm.png differ
diff --git a/frontend/src/assets/sources/pawhuska-hospital-inc.png b/frontend/src/assets/sources/pawhuska-hospital-inc.png
new file mode 100644
index 00000000..49d2821b
Binary files /dev/null and b/frontend/src/assets/sources/pawhuska-hospital-inc.png differ
diff --git a/frontend/src/assets/sources/pawnee-county-memorial-hospital.png b/frontend/src/assets/sources/pawnee-county-memorial-hospital.png
new file mode 100644
index 00000000..d72e5fae
Binary files /dev/null and b/frontend/src/assets/sources/pawnee-county-memorial-hospital.png differ
diff --git a/frontend/src/assets/sources/pchc-employee-health.png b/frontend/src/assets/sources/pchc-employee-health.png
new file mode 100644
index 00000000..ee130e6c
Binary files /dev/null and b/frontend/src/assets/sources/pchc-employee-health.png differ
diff --git a/frontend/src/assets/sources/pchs-dental.jpg b/frontend/src/assets/sources/pchs-dental.jpg
new file mode 100644
index 00000000..513f5af8
Binary files /dev/null and b/frontend/src/assets/sources/pchs-dental.jpg differ
diff --git a/frontend/src/assets/sources/peace-health-family-medical-center.png b/frontend/src/assets/sources/peace-health-family-medical-center.png
new file mode 100644
index 00000000..4104da10
Binary files /dev/null and b/frontend/src/assets/sources/peace-health-family-medical-center.png differ
diff --git a/frontend/src/assets/sources/peach-tree-healthcare.jpg b/frontend/src/assets/sources/peach-tree-healthcare.jpg
new file mode 100644
index 00000000..82567739
Binary files /dev/null and b/frontend/src/assets/sources/peach-tree-healthcare.jpg differ
diff --git a/frontend/src/assets/sources/peach-tree-medical-center.jpg b/frontend/src/assets/sources/peach-tree-medical-center.jpg
new file mode 100644
index 00000000..e6ef44f4
Binary files /dev/null and b/frontend/src/assets/sources/peach-tree-medical-center.jpg differ
diff --git a/frontend/src/assets/sources/peach-tree-medical-ctr-affiliate-of-srh.jpg b/frontend/src/assets/sources/peach-tree-medical-ctr-affiliate-of-srh.jpg
new file mode 100644
index 00000000..fe4bf5ef
Binary files /dev/null and b/frontend/src/assets/sources/peach-tree-medical-ctr-affiliate-of-srh.jpg differ
diff --git a/frontend/src/assets/sources/peachtree-nephrology-pc.png b/frontend/src/assets/sources/peachtree-nephrology-pc.png
new file mode 100644
index 00000000..004a5ee7
Binary files /dev/null and b/frontend/src/assets/sources/peachtree-nephrology-pc.png differ
diff --git a/frontend/src/assets/sources/peak-vision-eye-center.png b/frontend/src/assets/sources/peak-vision-eye-center.png
new file mode 100644
index 00000000..5c21bc63
Binary files /dev/null and b/frontend/src/assets/sources/peak-vision-eye-center.png differ
diff --git a/frontend/src/assets/sources/peconic-bay-primary-medical-care-pc.svg b/frontend/src/assets/sources/peconic-bay-primary-medical-care-pc.svg
new file mode 100644
index 00000000..ff34cca1
--- /dev/null
+++ b/frontend/src/assets/sources/peconic-bay-primary-medical-care-pc.svg
@@ -0,0 +1,3793 @@
+
+
+
+
+
+
+
+
+
+
+]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/peconic-bay-prime-medical-care-pc.png b/frontend/src/assets/sources/peconic-bay-prime-medical-care-pc.png
new file mode 100644
index 00000000..06bee9aa
Binary files /dev/null and b/frontend/src/assets/sources/peconic-bay-prime-medical-care-pc.png differ
diff --git a/frontend/src/assets/sources/pediatric-and-fetal-cardiology-of-miami.jpg b/frontend/src/assets/sources/pediatric-and-fetal-cardiology-of-miami.jpg
new file mode 100644
index 00000000..9d9dbd18
Binary files /dev/null and b/frontend/src/assets/sources/pediatric-and-fetal-cardiology-of-miami.jpg differ
diff --git a/frontend/src/assets/sources/pediatric-associates-inc.jpg b/frontend/src/assets/sources/pediatric-associates-inc.jpg
new file mode 100644
index 00000000..1fd7c03a
Binary files /dev/null and b/frontend/src/assets/sources/pediatric-associates-inc.jpg differ
diff --git a/frontend/src/assets/sources/pediatric-cardiology-assoc-san-antonio.svg b/frontend/src/assets/sources/pediatric-cardiology-assoc-san-antonio.svg
new file mode 100644
index 00000000..45fb0871
--- /dev/null
+++ b/frontend/src/assets/sources/pediatric-cardiology-assoc-san-antonio.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/pediatric-cardiology-assoc.jpg b/frontend/src/assets/sources/pediatric-cardiology-assoc.jpg
new file mode 100644
index 00000000..367134a4
Binary files /dev/null and b/frontend/src/assets/sources/pediatric-cardiology-assoc.jpg differ
diff --git a/frontend/src/assets/sources/pediatric-cardiology-associates.png b/frontend/src/assets/sources/pediatric-cardiology-associates.png
new file mode 100644
index 00000000..cb819b62
Binary files /dev/null and b/frontend/src/assets/sources/pediatric-cardiology-associates.png differ
diff --git a/frontend/src/assets/sources/pediatric-cardiology-of-austin.png b/frontend/src/assets/sources/pediatric-cardiology-of-austin.png
new file mode 100644
index 00000000..8a8ccaf5
Binary files /dev/null and b/frontend/src/assets/sources/pediatric-cardiology-of-austin.png differ
diff --git a/frontend/src/assets/sources/pediatric-heart-center.png b/frontend/src/assets/sources/pediatric-heart-center.png
new file mode 100644
index 00000000..a99a8801
Binary files /dev/null and b/frontend/src/assets/sources/pediatric-heart-center.png differ
diff --git a/frontend/src/assets/sources/pediatric-pulmonology-of-central-georgia-llc.svg b/frontend/src/assets/sources/pediatric-pulmonology-of-central-georgia-llc.svg
new file mode 100644
index 00000000..50937fbc
--- /dev/null
+++ b/frontend/src/assets/sources/pediatric-pulmonology-of-central-georgia-llc.svg
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/pediatric-surgical-associates.png b/frontend/src/assets/sources/pediatric-surgical-associates.png
new file mode 100644
index 00000000..c7add27a
Binary files /dev/null and b/frontend/src/assets/sources/pediatric-surgical-associates.png differ
diff --git a/frontend/src/assets/sources/pediatrics-of-florence.png b/frontend/src/assets/sources/pediatrics-of-florence.png
new file mode 100644
index 00000000..84c8a9e3
Binary files /dev/null and b/frontend/src/assets/sources/pediatrics-of-florence.png differ
diff --git a/frontend/src/assets/sources/pediatrix-cardiology-assoc-of-new-mexico.jpg b/frontend/src/assets/sources/pediatrix-cardiology-assoc-of-new-mexico.jpg
new file mode 100644
index 00000000..98ce0d35
Binary files /dev/null and b/frontend/src/assets/sources/pediatrix-cardiology-assoc-of-new-mexico.jpg differ
diff --git a/frontend/src/assets/sources/pediatrix-cardiology-assoc-of-new-mexico.png b/frontend/src/assets/sources/pediatrix-cardiology-assoc-of-new-mexico.png
new file mode 100644
index 00000000..f6761a1a
Binary files /dev/null and b/frontend/src/assets/sources/pediatrix-cardiology-assoc-of-new-mexico.png differ
diff --git a/frontend/src/assets/sources/pediatrix-cardiology-of-broward.jpg b/frontend/src/assets/sources/pediatrix-cardiology-of-broward.jpg
new file mode 100644
index 00000000..d90faf07
Binary files /dev/null and b/frontend/src/assets/sources/pediatrix-cardiology-of-broward.jpg differ
diff --git a/frontend/src/assets/sources/pediatrix-cardiology-of-dallas.svg b/frontend/src/assets/sources/pediatrix-cardiology-of-dallas.svg
new file mode 100644
index 00000000..40c01788
--- /dev/null
+++ b/frontend/src/assets/sources/pediatrix-cardiology-of-dallas.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/pediatrix-cardiology-of-miami.png b/frontend/src/assets/sources/pediatrix-cardiology-of-miami.png
new file mode 100644
index 00000000..5fe87fea
Binary files /dev/null and b/frontend/src/assets/sources/pediatrix-cardiology-of-miami.png differ
diff --git a/frontend/src/assets/sources/pediatrix-cardiology-of-miami.svg b/frontend/src/assets/sources/pediatrix-cardiology-of-miami.svg
new file mode 100644
index 00000000..e0a50262
--- /dev/null
+++ b/frontend/src/assets/sources/pediatrix-cardiology-of-miami.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/pediatrix-cardiology-of-north-texas.jpg b/frontend/src/assets/sources/pediatrix-cardiology-of-north-texas.jpg
new file mode 100644
index 00000000..527a8a39
Binary files /dev/null and b/frontend/src/assets/sources/pediatrix-cardiology-of-north-texas.jpg differ
diff --git a/frontend/src/assets/sources/pediatrix-cardiology-of-southern-ca.jpg b/frontend/src/assets/sources/pediatrix-cardiology-of-southern-ca.jpg
new file mode 100644
index 00000000..c561e1ed
Binary files /dev/null and b/frontend/src/assets/sources/pediatrix-cardiology-of-southern-ca.jpg differ
diff --git a/frontend/src/assets/sources/pediatrix-cardiology-of-springfield-p-c.svg b/frontend/src/assets/sources/pediatrix-cardiology-of-springfield-p-c.svg
new file mode 100644
index 00000000..bfaa10bd
--- /dev/null
+++ b/frontend/src/assets/sources/pediatrix-cardiology-of-springfield-p-c.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/pediatrix-medical-group-of-fl-inc.png b/frontend/src/assets/sources/pediatrix-medical-group-of-fl-inc.png
new file mode 100644
index 00000000..a99a8801
Binary files /dev/null and b/frontend/src/assets/sources/pediatrix-medical-group-of-fl-inc.png differ
diff --git a/frontend/src/assets/sources/pediatrix-neuro-practice.png b/frontend/src/assets/sources/pediatrix-neuro-practice.png
new file mode 100644
index 00000000..1873fcde
Binary files /dev/null and b/frontend/src/assets/sources/pediatrix-neuro-practice.png differ
diff --git a/frontend/src/assets/sources/pediatrix-obstetrix-medical-group-of-co.jpg b/frontend/src/assets/sources/pediatrix-obstetrix-medical-group-of-co.jpg
new file mode 100644
index 00000000..527a8a39
Binary files /dev/null and b/frontend/src/assets/sources/pediatrix-obstetrix-medical-group-of-co.jpg differ
diff --git a/frontend/src/assets/sources/pediatrix-specialty-care-of-utah.jpg b/frontend/src/assets/sources/pediatrix-specialty-care-of-utah.jpg
new file mode 100644
index 00000000..653e25ce
Binary files /dev/null and b/frontend/src/assets/sources/pediatrix-specialty-care-of-utah.jpg differ
diff --git a/frontend/src/assets/sources/pediplace.svg b/frontend/src/assets/sources/pediplace.svg
new file mode 100644
index 00000000..8e7cb1a0
--- /dev/null
+++ b/frontend/src/assets/sources/pediplace.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/pelvic-floor-center.png b/frontend/src/assets/sources/pelvic-floor-center.png
new file mode 100644
index 00000000..d45dc9a3
Binary files /dev/null and b/frontend/src/assets/sources/pelvic-floor-center.png differ
diff --git a/frontend/src/assets/sources/pending-maternal-fetal-associates-mid.jpg b/frontend/src/assets/sources/pending-maternal-fetal-associates-mid.jpg
new file mode 100644
index 00000000..2ea75ce8
Binary files /dev/null and b/frontend/src/assets/sources/pending-maternal-fetal-associates-mid.jpg differ
diff --git a/frontend/src/assets/sources/pendurthi-surgical-associates.jpg b/frontend/src/assets/sources/pendurthi-surgical-associates.jpg
new file mode 100644
index 00000000..e88ccae4
Binary files /dev/null and b/frontend/src/assets/sources/pendurthi-surgical-associates.jpg differ
diff --git a/frontend/src/assets/sources/peninsula-orthopedic-associates-inc.png b/frontend/src/assets/sources/peninsula-orthopedic-associates-inc.png
new file mode 100644
index 00000000..87a6bac5
Binary files /dev/null and b/frontend/src/assets/sources/peninsula-orthopedic-associates-inc.png differ
diff --git a/frontend/src/assets/sources/peninsula-vascular-center-pc.jpg b/frontend/src/assets/sources/peninsula-vascular-center-pc.jpg
new file mode 100644
index 00000000..521d518b
Binary files /dev/null and b/frontend/src/assets/sources/peninsula-vascular-center-pc.jpg differ
diff --git a/frontend/src/assets/sources/penn-highlands-dubois.svg b/frontend/src/assets/sources/penn-highlands-dubois.svg
new file mode 100644
index 00000000..76dee6dd
--- /dev/null
+++ b/frontend/src/assets/sources/penn-highlands-dubois.svg
@@ -0,0 +1,135 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/penn-state-health-care-partners.svg b/frontend/src/assets/sources/penn-state-health-care-partners.svg
new file mode 100644
index 00000000..1e3cffb7
--- /dev/null
+++ b/frontend/src/assets/sources/penn-state-health-care-partners.svg
@@ -0,0 +1,33 @@
+
+
+ Penn State Health Care Partners
+
+
+
+
+
+
+
+ Care Partners
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/penn-state-health.png b/frontend/src/assets/sources/penn-state-health.png
new file mode 100644
index 00000000..e480df07
Binary files /dev/null and b/frontend/src/assets/sources/penn-state-health.png differ
diff --git a/frontend/src/assets/sources/pensacola-asc.png b/frontend/src/assets/sources/pensacola-asc.png
new file mode 100644
index 00000000..4f3888eb
Binary files /dev/null and b/frontend/src/assets/sources/pensacola-asc.png differ
diff --git a/frontend/src/assets/sources/pensacola-foot-and-ankle-center.jpg b/frontend/src/assets/sources/pensacola-foot-and-ankle-center.jpg
new file mode 100644
index 00000000..cc1fd06d
Binary files /dev/null and b/frontend/src/assets/sources/pensacola-foot-and-ankle-center.jpg differ
diff --git a/frontend/src/assets/sources/pensacola-vascular.png b/frontend/src/assets/sources/pensacola-vascular.png
new file mode 100644
index 00000000..afaafd93
Binary files /dev/null and b/frontend/src/assets/sources/pensacola-vascular.png differ
diff --git a/frontend/src/assets/sources/peoples-bank.jpg b/frontend/src/assets/sources/peoples-bank.jpg
new file mode 100644
index 00000000..57131991
Binary files /dev/null and b/frontend/src/assets/sources/peoples-bank.jpg differ
diff --git a/frontend/src/assets/sources/peoples-community-clinic.png b/frontend/src/assets/sources/peoples-community-clinic.png
new file mode 100644
index 00000000..53a59c0d
Binary files /dev/null and b/frontend/src/assets/sources/peoples-community-clinic.png differ
diff --git a/frontend/src/assets/sources/permian-womens-center.png b/frontend/src/assets/sources/permian-womens-center.png
new file mode 100644
index 00000000..aa20c2ad
Binary files /dev/null and b/frontend/src/assets/sources/permian-womens-center.png differ
diff --git a/frontend/src/assets/sources/perry-county-family-practice.svg b/frontend/src/assets/sources/perry-county-family-practice.svg
new file mode 100644
index 00000000..e80fe4a5
--- /dev/null
+++ b/frontend/src/assets/sources/perry-county-family-practice.svg
@@ -0,0 +1,119 @@
+
+
+ 9B647E2E-45E7-4DEB-9932-9D427CB7C400
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/perry-county-memorial-hospital.png b/frontend/src/assets/sources/perry-county-memorial-hospital.png
new file mode 100644
index 00000000..0b99101f
Binary files /dev/null and b/frontend/src/assets/sources/perry-county-memorial-hospital.png differ
diff --git a/frontend/src/assets/sources/person-family-medical-center-inc.jpg b/frontend/src/assets/sources/person-family-medical-center-inc.jpg
new file mode 100644
index 00000000..68cbd435
Binary files /dev/null and b/frontend/src/assets/sources/person-family-medical-center-inc.jpg differ
diff --git a/frontend/src/assets/sources/personal-physicians.png b/frontend/src/assets/sources/personal-physicians.png
new file mode 100644
index 00000000..1ec70602
Binary files /dev/null and b/frontend/src/assets/sources/personal-physicians.png differ
diff --git a/frontend/src/assets/sources/personalized-primary-care-atlanta.jpg b/frontend/src/assets/sources/personalized-primary-care-atlanta.jpg
new file mode 100644
index 00000000..8957adcd
Binary files /dev/null and b/frontend/src/assets/sources/personalized-primary-care-atlanta.jpg differ
diff --git a/frontend/src/assets/sources/pervaiz-channah-md-and-associates.png b/frontend/src/assets/sources/pervaiz-channah-md-and-associates.png
new file mode 100644
index 00000000..97898583
Binary files /dev/null and b/frontend/src/assets/sources/pervaiz-channah-md-and-associates.png differ
diff --git a/frontend/src/assets/sources/peter-dangvu-md-inc.png b/frontend/src/assets/sources/peter-dangvu-md-inc.png
new file mode 100644
index 00000000..bf4605e2
Binary files /dev/null and b/frontend/src/assets/sources/peter-dangvu-md-inc.png differ
diff --git a/frontend/src/assets/sources/petersburg-medical-center.jpg b/frontend/src/assets/sources/petersburg-medical-center.jpg
new file mode 100644
index 00000000..9b62c668
Binary files /dev/null and b/frontend/src/assets/sources/petersburg-medical-center.jpg differ
diff --git a/frontend/src/assets/sources/peterson-dermatology-pc.jpg b/frontend/src/assets/sources/peterson-dermatology-pc.jpg
new file mode 100644
index 00000000..1254a1f9
Binary files /dev/null and b/frontend/src/assets/sources/peterson-dermatology-pc.jpg differ
diff --git a/frontend/src/assets/sources/pha-irvine.png b/frontend/src/assets/sources/pha-irvine.png
new file mode 100644
index 00000000..a922c47d
Binary files /dev/null and b/frontend/src/assets/sources/pha-irvine.png differ
diff --git a/frontend/src/assets/sources/pha-post-acute-care.png b/frontend/src/assets/sources/pha-post-acute-care.png
new file mode 100644
index 00000000..32cf7d12
Binary files /dev/null and b/frontend/src/assets/sources/pha-post-acute-care.png differ
diff --git a/frontend/src/assets/sources/phila-college-of-osteopathic-medicine.png b/frontend/src/assets/sources/phila-college-of-osteopathic-medicine.png
new file mode 100644
index 00000000..a0d7eb74
Binary files /dev/null and b/frontend/src/assets/sources/phila-college-of-osteopathic-medicine.png differ
diff --git a/frontend/src/assets/sources/philip-gachassin-md-apmc.png b/frontend/src/assets/sources/philip-gachassin-md-apmc.png
new file mode 100644
index 00000000..d65ee668
Binary files /dev/null and b/frontend/src/assets/sources/philip-gachassin-md-apmc.png differ
diff --git a/frontend/src/assets/sources/phillips-county-hospital.png b/frontend/src/assets/sources/phillips-county-hospital.png
new file mode 100644
index 00000000..a855e0c0
Binary files /dev/null and b/frontend/src/assets/sources/phillips-county-hospital.png differ
diff --git a/frontend/src/assets/sources/phoebe-corp-and-community-based-services.png b/frontend/src/assets/sources/phoebe-corp-and-community-based-services.png
new file mode 100644
index 00000000..129f3f9d
Binary files /dev/null and b/frontend/src/assets/sources/phoebe-corp-and-community-based-services.png differ
diff --git a/frontend/src/assets/sources/phoenix-perinatal-associates.jpg b/frontend/src/assets/sources/phoenix-perinatal-associates.jpg
new file mode 100644
index 00000000..46d340d3
Binary files /dev/null and b/frontend/src/assets/sources/phoenix-perinatal-associates.jpg differ
diff --git a/frontend/src/assets/sources/phoenix-rising-bhr-inc.png b/frontend/src/assets/sources/phoenix-rising-bhr-inc.png
new file mode 100644
index 00000000..af712798
Binary files /dev/null and b/frontend/src/assets/sources/phoenix-rising-bhr-inc.png differ
diff --git a/frontend/src/assets/sources/physical-medicine-associates.png b/frontend/src/assets/sources/physical-medicine-associates.png
new file mode 100644
index 00000000..f8a91cdc
Binary files /dev/null and b/frontend/src/assets/sources/physical-medicine-associates.png differ
diff --git a/frontend/src/assets/sources/physical-occup-therapy-at-bridgewater.svg b/frontend/src/assets/sources/physical-occup-therapy-at-bridgewater.svg
new file mode 100644
index 00000000..1c6f1c47
--- /dev/null
+++ b/frontend/src/assets/sources/physical-occup-therapy-at-bridgewater.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/physician-surgery-center.png b/frontend/src/assets/sources/physician-surgery-center.png
new file mode 100644
index 00000000..8404f6ce
Binary files /dev/null and b/frontend/src/assets/sources/physician-surgery-center.png differ
diff --git a/frontend/src/assets/sources/physicians-building-group-llp.png b/frontend/src/assets/sources/physicians-building-group-llp.png
new file mode 100644
index 00000000..b55d647f
Binary files /dev/null and b/frontend/src/assets/sources/physicians-building-group-llp.png differ
diff --git a/frontend/src/assets/sources/physicians-eye-center-of-owensboro.svg b/frontend/src/assets/sources/physicians-eye-center-of-owensboro.svg
new file mode 100644
index 00000000..2f499b24
--- /dev/null
+++ b/frontend/src/assets/sources/physicians-eye-center-of-owensboro.svg
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/physicians-eye-surgery-center.png b/frontend/src/assets/sources/physicians-eye-surgery-center.png
new file mode 100644
index 00000000..124ab96f
Binary files /dev/null and b/frontend/src/assets/sources/physicians-eye-surgery-center.png differ
diff --git a/frontend/src/assets/sources/physicians-hearing-services.png b/frontend/src/assets/sources/physicians-hearing-services.png
new file mode 100644
index 00000000..d8edf099
Binary files /dev/null and b/frontend/src/assets/sources/physicians-hearing-services.png differ
diff --git a/frontend/src/assets/sources/physicians-to-children-inc.png b/frontend/src/assets/sources/physicians-to-children-inc.png
new file mode 100644
index 00000000..98b733af
Binary files /dev/null and b/frontend/src/assets/sources/physicians-to-children-inc.png differ
diff --git a/frontend/src/assets/sources/piedmont-family-practice-plc.png b/frontend/src/assets/sources/piedmont-family-practice-plc.png
new file mode 100644
index 00000000..b8464e8d
Binary files /dev/null and b/frontend/src/assets/sources/piedmont-family-practice-plc.png differ
diff --git a/frontend/src/assets/sources/piedmont-neurosurgery-and-spine-pa.jpg b/frontend/src/assets/sources/piedmont-neurosurgery-and-spine-pa.jpg
new file mode 100644
index 00000000..73e56eed
Binary files /dev/null and b/frontend/src/assets/sources/piedmont-neurosurgery-and-spine-pa.jpg differ
diff --git a/frontend/src/assets/sources/piedmont-pediatrics-p-l-c.jpg b/frontend/src/assets/sources/piedmont-pediatrics-p-l-c.jpg
new file mode 100644
index 00000000..69bb6d81
Binary files /dev/null and b/frontend/src/assets/sources/piedmont-pediatrics-p-l-c.jpg differ
diff --git a/frontend/src/assets/sources/pike-county-memorial-hospital.jpeg b/frontend/src/assets/sources/pike-county-memorial-hospital.jpeg
new file mode 100644
index 00000000..6b944486
Binary files /dev/null and b/frontend/src/assets/sources/pike-county-memorial-hospital.jpeg differ
diff --git a/frontend/src/assets/sources/pine-street-podiatry.png b/frontend/src/assets/sources/pine-street-podiatry.png
new file mode 100644
index 00000000..b367ea94
Binary files /dev/null and b/frontend/src/assets/sources/pine-street-podiatry.png differ
diff --git a/frontend/src/assets/sources/pinellas-county-health-program.svg b/frontend/src/assets/sources/pinellas-county-health-program.svg
new file mode 100644
index 00000000..b3e97c63
--- /dev/null
+++ b/frontend/src/assets/sources/pinellas-county-health-program.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/pioneer-heart-institute.png b/frontend/src/assets/sources/pioneer-heart-institute.png
new file mode 100644
index 00000000..23447a88
Binary files /dev/null and b/frontend/src/assets/sources/pioneer-heart-institute.png differ
diff --git a/frontend/src/assets/sources/pivac-asc.png b/frontend/src/assets/sources/pivac-asc.png
new file mode 100644
index 00000000..773b77ee
Binary files /dev/null and b/frontend/src/assets/sources/pivac-asc.png differ
diff --git a/frontend/src/assets/sources/pivac.png b/frontend/src/assets/sources/pivac.png
new file mode 100644
index 00000000..e0825de8
Binary files /dev/null and b/frontend/src/assets/sources/pivac.png differ
diff --git a/frontend/src/assets/sources/planned-parenthood-keystone.jpg b/frontend/src/assets/sources/planned-parenthood-keystone.jpg
new file mode 100644
index 00000000..a771c295
Binary files /dev/null and b/frontend/src/assets/sources/planned-parenthood-keystone.jpg differ
diff --git a/frontend/src/assets/sources/planned-parenthood-los-angeles.jpg b/frontend/src/assets/sources/planned-parenthood-los-angeles.jpg
new file mode 100644
index 00000000..e5570a2e
Binary files /dev/null and b/frontend/src/assets/sources/planned-parenthood-los-angeles.jpg differ
diff --git a/frontend/src/assets/sources/planned-parenthood-mar-monte.jpg b/frontend/src/assets/sources/planned-parenthood-mar-monte.jpg
new file mode 100644
index 00000000..658b60ff
Binary files /dev/null and b/frontend/src/assets/sources/planned-parenthood-mar-monte.jpg differ
diff --git a/frontend/src/assets/sources/planned-parenthood-of-central-nc.svg b/frontend/src/assets/sources/planned-parenthood-of-central-nc.svg
new file mode 100644
index 00000000..d8a0f60d
--- /dev/null
+++ b/frontend/src/assets/sources/planned-parenthood-of-central-nc.svg
@@ -0,0 +1,36 @@
+planned-parenthood-logo-horizontal
+
+
+
+
+
+ planned-parenthood-logo-horizontal
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/planned-parenthood-of-central-pa.svg b/frontend/src/assets/sources/planned-parenthood-of-central-pa.svg
new file mode 100644
index 00000000..d8a0f60d
--- /dev/null
+++ b/frontend/src/assets/sources/planned-parenthood-of-central-pa.svg
@@ -0,0 +1,36 @@
+planned-parenthood-logo-horizontal
+
+
+
+
+
+ planned-parenthood-logo-horizontal
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/planned-parenthood-of-delaware.svg b/frontend/src/assets/sources/planned-parenthood-of-delaware.svg
new file mode 100644
index 00000000..d8a0f60d
--- /dev/null
+++ b/frontend/src/assets/sources/planned-parenthood-of-delaware.svg
@@ -0,0 +1,36 @@
+planned-parenthood-logo-horizontal
+
+
+
+
+
+ planned-parenthood-logo-horizontal
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/planned-parenthood-of-greater-new-york.png b/frontend/src/assets/sources/planned-parenthood-of-greater-new-york.png
new file mode 100644
index 00000000..b6ec5aa8
Binary files /dev/null and b/frontend/src/assets/sources/planned-parenthood-of-greater-new-york.png differ
diff --git a/frontend/src/assets/sources/planned-parenthood-of-greater-texas.png b/frontend/src/assets/sources/planned-parenthood-of-greater-texas.png
new file mode 100644
index 00000000..1ec9be08
Binary files /dev/null and b/frontend/src/assets/sources/planned-parenthood-of-greater-texas.png differ
diff --git a/frontend/src/assets/sources/planned-parenthood-of-wisconsin.png b/frontend/src/assets/sources/planned-parenthood-of-wisconsin.png
new file mode 100644
index 00000000..fd33f308
Binary files /dev/null and b/frontend/src/assets/sources/planned-parenthood-of-wisconsin.png differ
diff --git a/frontend/src/assets/sources/planned-parenthood-pacific-southwest.png b/frontend/src/assets/sources/planned-parenthood-pacific-southwest.png
new file mode 100644
index 00000000..06b563a8
Binary files /dev/null and b/frontend/src/assets/sources/planned-parenthood-pacific-southwest.png differ
diff --git a/frontend/src/assets/sources/planned-parenthood-pasadena-inc.png b/frontend/src/assets/sources/planned-parenthood-pasadena-inc.png
new file mode 100644
index 00000000..50810e04
Binary files /dev/null and b/frontend/src/assets/sources/planned-parenthood-pasadena-inc.png differ
diff --git a/frontend/src/assets/sources/planned-parenthood-south-atlantic.png b/frontend/src/assets/sources/planned-parenthood-south-atlantic.png
new file mode 100644
index 00000000..d7feaf22
Binary files /dev/null and b/frontend/src/assets/sources/planned-parenthood-south-atlantic.png differ
diff --git a/frontend/src/assets/sources/planned-parenthood-southeastern-pa.jpg b/frontend/src/assets/sources/planned-parenthood-southeastern-pa.jpg
new file mode 100644
index 00000000..118a3402
Binary files /dev/null and b/frontend/src/assets/sources/planned-parenthood-southeastern-pa.jpg differ
diff --git a/frontend/src/assets/sources/plantation-asc.png b/frontend/src/assets/sources/plantation-asc.png
new file mode 100644
index 00000000..72b68fe5
Binary files /dev/null and b/frontend/src/assets/sources/plantation-asc.png differ
diff --git a/frontend/src/assets/sources/plastic-and-reconstructive-surgeons.svg b/frontend/src/assets/sources/plastic-and-reconstructive-surgeons.svg
new file mode 100644
index 00000000..d92cafbc
--- /dev/null
+++ b/frontend/src/assets/sources/plastic-and-reconstructive-surgeons.svg
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/platte-county-health-department-platte-city.png b/frontend/src/assets/sources/platte-county-health-department-platte-city.png
new file mode 100644
index 00000000..0e53d031
Binary files /dev/null and b/frontend/src/assets/sources/platte-county-health-department-platte-city.png differ
diff --git a/frontend/src/assets/sources/plumas-district-hospital.svg b/frontend/src/assets/sources/plumas-district-hospital.svg
new file mode 100644
index 00000000..855ac3e8
--- /dev/null
+++ b/frontend/src/assets/sources/plumas-district-hospital.svg
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/pmr-neuroscience-specialists-pc.jpg b/frontend/src/assets/sources/pmr-neuroscience-specialists-pc.jpg
new file mode 100644
index 00000000..4e23b322
Binary files /dev/null and b/frontend/src/assets/sources/pmr-neuroscience-specialists-pc.jpg differ
diff --git a/frontend/src/assets/sources/pnc-financial-services-group.png b/frontend/src/assets/sources/pnc-financial-services-group.png
new file mode 100644
index 00000000..bbb1ae70
Binary files /dev/null and b/frontend/src/assets/sources/pnc-financial-services-group.png differ
diff --git a/frontend/src/assets/sources/poarch-band-of-creek-indians.jpg b/frontend/src/assets/sources/poarch-band-of-creek-indians.jpg
new file mode 100644
index 00000000..28423ad5
Binary files /dev/null and b/frontend/src/assets/sources/poarch-band-of-creek-indians.jpg differ
diff --git a/frontend/src/assets/sources/podiatry-associates-of-erie-inc.png b/frontend/src/assets/sources/podiatry-associates-of-erie-inc.png
new file mode 100644
index 00000000..2ef81550
Binary files /dev/null and b/frontend/src/assets/sources/podiatry-associates-of-erie-inc.png differ
diff --git a/frontend/src/assets/sources/podiatry-center.png b/frontend/src/assets/sources/podiatry-center.png
new file mode 100644
index 00000000..3751bcff
Binary files /dev/null and b/frontend/src/assets/sources/podiatry-center.png differ
diff --git a/frontend/src/assets/sources/pomona-community-health-center.png b/frontend/src/assets/sources/pomona-community-health-center.png
new file mode 100644
index 00000000..eb1d86c0
Binary files /dev/null and b/frontend/src/assets/sources/pomona-community-health-center.png differ
diff --git a/frontend/src/assets/sources/pomona-valley-hospital-medical-center.jpg b/frontend/src/assets/sources/pomona-valley-hospital-medical-center.jpg
new file mode 100644
index 00000000..3a24fc56
Binary files /dev/null and b/frontend/src/assets/sources/pomona-valley-hospital-medical-center.jpg differ
diff --git a/frontend/src/assets/sources/port-gamble-sklallam-health-center.png b/frontend/src/assets/sources/port-gamble-sklallam-health-center.png
new file mode 100644
index 00000000..92eaeb43
Binary files /dev/null and b/frontend/src/assets/sources/port-gamble-sklallam-health-center.png differ
diff --git a/frontend/src/assets/sources/port-huron-eye-institute.jpg b/frontend/src/assets/sources/port-huron-eye-institute.jpg
new file mode 100644
index 00000000..499aa417
Binary files /dev/null and b/frontend/src/assets/sources/port-huron-eye-institute.jpg differ
diff --git a/frontend/src/assets/sources/port-huron-internal-medicine-assoc-pc.png b/frontend/src/assets/sources/port-huron-internal-medicine-assoc-pc.png
new file mode 100644
index 00000000..f255c2f0
Binary files /dev/null and b/frontend/src/assets/sources/port-huron-internal-medicine-assoc-pc.png differ
diff --git a/frontend/src/assets/sources/port-st-lucie-anesthesia-llc.png b/frontend/src/assets/sources/port-st-lucie-anesthesia-llc.png
new file mode 100644
index 00000000..5a5723e0
Binary files /dev/null and b/frontend/src/assets/sources/port-st-lucie-anesthesia-llc.png differ
diff --git a/frontend/src/assets/sources/post-falls-family-medicine-pa.png b/frontend/src/assets/sources/post-falls-family-medicine-pa.png
new file mode 100644
index 00000000..6ae088df
Binary files /dev/null and b/frontend/src/assets/sources/post-falls-family-medicine-pa.png differ
diff --git a/frontend/src/assets/sources/pp-northern-central-and-southern-nj.png b/frontend/src/assets/sources/pp-northern-central-and-southern-nj.png
new file mode 100644
index 00000000..5e6afd85
Binary files /dev/null and b/frontend/src/assets/sources/pp-northern-central-and-southern-nj.png differ
diff --git a/frontend/src/assets/sources/pp-of-metropolitan-washington-dc.svg b/frontend/src/assets/sources/pp-of-metropolitan-washington-dc.svg
new file mode 100644
index 00000000..d8a0f60d
--- /dev/null
+++ b/frontend/src/assets/sources/pp-of-metropolitan-washington-dc.svg
@@ -0,0 +1,36 @@
+planned-parenthood-logo-horizontal
+
+
+
+
+
+ planned-parenthood-logo-horizontal
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/pp-of-northern-central-and-southern-nj.jpg b/frontend/src/assets/sources/pp-of-northern-central-and-southern-nj.jpg
new file mode 100644
index 00000000..d1c3dac0
Binary files /dev/null and b/frontend/src/assets/sources/pp-of-northern-central-and-southern-nj.jpg differ
diff --git a/frontend/src/assets/sources/ppcalifornia-central-coast.png b/frontend/src/assets/sources/ppcalifornia-central-coast.png
new file mode 100644
index 00000000..74c5a571
Binary files /dev/null and b/frontend/src/assets/sources/ppcalifornia-central-coast.png differ
diff --git a/frontend/src/assets/sources/ppgt-surgical-health-services.jpg b/frontend/src/assets/sources/ppgt-surgical-health-services.jpg
new file mode 100644
index 00000000..f5226e05
Binary files /dev/null and b/frontend/src/assets/sources/ppgt-surgical-health-services.jpg differ
diff --git a/frontend/src/assets/sources/pph-activcentre.png b/frontend/src/assets/sources/pph-activcentre.png
new file mode 100644
index 00000000..28df4b34
Binary files /dev/null and b/frontend/src/assets/sources/pph-activcentre.png differ
diff --git a/frontend/src/assets/sources/ppmd.png b/frontend/src/assets/sources/ppmd.png
new file mode 100644
index 00000000..3bd095d2
Binary files /dev/null and b/frontend/src/assets/sources/ppmd.png differ
diff --git a/frontend/src/assets/sources/ppmns.png b/frontend/src/assets/sources/ppmns.png
new file mode 100644
index 00000000..cfa55a74
Binary files /dev/null and b/frontend/src/assets/sources/ppmns.png differ
diff --git a/frontend/src/assets/sources/ppmt.png b/frontend/src/assets/sources/ppmt.png
new file mode 100644
index 00000000..43665b63
Binary files /dev/null and b/frontend/src/assets/sources/ppmt.png differ
diff --git a/frontend/src/assets/sources/pprm.svg b/frontend/src/assets/sources/pprm.svg
new file mode 100644
index 00000000..f849bd79
--- /dev/null
+++ b/frontend/src/assets/sources/pprm.svg
@@ -0,0 +1,36 @@
+planned-parenthood-logo-horizontal
+
+
+
+
+
+ planned-parenthood-logo-horizontal
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/prairie-clinic-sc.jpg b/frontend/src/assets/sources/prairie-clinic-sc.jpg
new file mode 100644
index 00000000..2809e6f0
Binary files /dev/null and b/frontend/src/assets/sources/prairie-clinic-sc.jpg differ
diff --git a/frontend/src/assets/sources/prairie-family-medicine-and-obstetrics.jpg b/frontend/src/assets/sources/prairie-family-medicine-and-obstetrics.jpg
new file mode 100644
index 00000000..eb44846a
Binary files /dev/null and b/frontend/src/assets/sources/prairie-family-medicine-and-obstetrics.jpg differ
diff --git a/frontend/src/assets/sources/prairie-ridge-integrated-behavioral-healthcare.jpg b/frontend/src/assets/sources/prairie-ridge-integrated-behavioral-healthcare.jpg
new file mode 100644
index 00000000..8f427343
Binary files /dev/null and b/frontend/src/assets/sources/prairie-ridge-integrated-behavioral-healthcare.jpg differ
diff --git a/frontend/src/assets/sources/precision-spine-care.png b/frontend/src/assets/sources/precision-spine-care.png
new file mode 100644
index 00000000..519de657
Binary files /dev/null and b/frontend/src/assets/sources/precision-spine-care.png differ
diff --git a/frontend/src/assets/sources/precision-surgery-center.png b/frontend/src/assets/sources/precision-surgery-center.png
new file mode 100644
index 00000000..553e7402
Binary files /dev/null and b/frontend/src/assets/sources/precision-surgery-center.png differ
diff --git a/frontend/src/assets/sources/precision-surgical-specialists-of-lowell.png b/frontend/src/assets/sources/precision-surgical-specialists-of-lowell.png
new file mode 100644
index 00000000..bc697713
Binary files /dev/null and b/frontend/src/assets/sources/precision-surgical-specialists-of-lowell.png differ
diff --git a/frontend/src/assets/sources/preemie-place-s.png b/frontend/src/assets/sources/preemie-place-s.png
new file mode 100644
index 00000000..b6227341
Binary files /dev/null and b/frontend/src/assets/sources/preemie-place-s.png differ
diff --git a/frontend/src/assets/sources/preferred-family-healthcare.png b/frontend/src/assets/sources/preferred-family-healthcare.png
new file mode 100644
index 00000000..54a9b055
Binary files /dev/null and b/frontend/src/assets/sources/preferred-family-healthcare.png differ
diff --git a/frontend/src/assets/sources/premier-endoscopy-llc.png b/frontend/src/assets/sources/premier-endoscopy-llc.png
new file mode 100644
index 00000000..f3bfdac1
Binary files /dev/null and b/frontend/src/assets/sources/premier-endoscopy-llc.png differ
diff --git a/frontend/src/assets/sources/premier-family-healthcare.jpg b/frontend/src/assets/sources/premier-family-healthcare.jpg
new file mode 100644
index 00000000..d645510e
Binary files /dev/null and b/frontend/src/assets/sources/premier-family-healthcare.jpg differ
diff --git a/frontend/src/assets/sources/premier-family-medicine-pa.png b/frontend/src/assets/sources/premier-family-medicine-pa.png
new file mode 100644
index 00000000..8b74c310
Binary files /dev/null and b/frontend/src/assets/sources/premier-family-medicine-pa.png differ
diff --git a/frontend/src/assets/sources/premier-medical-group.png b/frontend/src/assets/sources/premier-medical-group.png
new file mode 100644
index 00000000..4c59a80f
Binary files /dev/null and b/frontend/src/assets/sources/premier-medical-group.png differ
diff --git a/frontend/src/assets/sources/premier-ob-gyn.png b/frontend/src/assets/sources/premier-ob-gyn.png
new file mode 100644
index 00000000..1d25140f
Binary files /dev/null and b/frontend/src/assets/sources/premier-ob-gyn.png differ
diff --git a/frontend/src/assets/sources/premier-obstetrics-and-gynecology.png b/frontend/src/assets/sources/premier-obstetrics-and-gynecology.png
new file mode 100644
index 00000000..6acb9fd3
Binary files /dev/null and b/frontend/src/assets/sources/premier-obstetrics-and-gynecology.png differ
diff --git a/frontend/src/assets/sources/premier-suburban-medical-group.svg b/frontend/src/assets/sources/premier-suburban-medical-group.svg
new file mode 100644
index 00000000..4422f048
--- /dev/null
+++ b/frontend/src/assets/sources/premier-suburban-medical-group.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/presbyterian-medical-services.png b/frontend/src/assets/sources/presbyterian-medical-services.png
new file mode 100644
index 00000000..f214bd73
Binary files /dev/null and b/frontend/src/assets/sources/presbyterian-medical-services.png differ
diff --git a/frontend/src/assets/sources/primaria-medical-clinic.png b/frontend/src/assets/sources/primaria-medical-clinic.png
new file mode 100644
index 00000000..61a95d86
Binary files /dev/null and b/frontend/src/assets/sources/primaria-medical-clinic.png differ
diff --git a/frontend/src/assets/sources/primary-care-physicians.png b/frontend/src/assets/sources/primary-care-physicians.png
new file mode 100644
index 00000000..cdb048e8
Binary files /dev/null and b/frontend/src/assets/sources/primary-care-physicians.png differ
diff --git a/frontend/src/assets/sources/primary-care-west-pc.jpg b/frontend/src/assets/sources/primary-care-west-pc.jpg
new file mode 100644
index 00000000..63e28163
Binary files /dev/null and b/frontend/src/assets/sources/primary-care-west-pc.jpg differ
diff --git a/frontend/src/assets/sources/primary-pediatrics.jpg b/frontend/src/assets/sources/primary-pediatrics.jpg
new file mode 100644
index 00000000..0d338655
Binary files /dev/null and b/frontend/src/assets/sources/primary-pediatrics.jpg differ
diff --git a/frontend/src/assets/sources/princeton-medical-group-pa.png b/frontend/src/assets/sources/princeton-medical-group-pa.png
new file mode 100644
index 00000000..22a4e2ed
--- /dev/null
+++ b/frontend/src/assets/sources/princeton-medical-group-pa.png
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/priority-health-care.png b/frontend/src/assets/sources/priority-health-care.png
new file mode 100644
index 00000000..5b57c4c0
Binary files /dev/null and b/frontend/src/assets/sources/priority-health-care.png differ
diff --git a/frontend/src/assets/sources/proactive-heart-and-vascular-pllc.png b/frontend/src/assets/sources/proactive-heart-and-vascular-pllc.png
new file mode 100644
index 00000000..5650b788
Binary files /dev/null and b/frontend/src/assets/sources/proactive-heart-and-vascular-pllc.png differ
diff --git a/frontend/src/assets/sources/prodtest.png b/frontend/src/assets/sources/prodtest.png
new file mode 100644
index 00000000..e4187569
Binary files /dev/null and b/frontend/src/assets/sources/prodtest.png differ
diff --git a/frontend/src/assets/sources/professional-anesthesia-services-pllc.jpg b/frontend/src/assets/sources/professional-anesthesia-services-pllc.jpg
new file mode 100644
index 00000000..d5c29ad1
Binary files /dev/null and b/frontend/src/assets/sources/professional-anesthesia-services-pllc.jpg differ
diff --git a/frontend/src/assets/sources/progressive-neurology-sleep-medicine.jpg b/frontend/src/assets/sources/progressive-neurology-sleep-medicine.jpg
new file mode 100644
index 00000000..265496d7
Binary files /dev/null and b/frontend/src/assets/sources/progressive-neurology-sleep-medicine.jpg differ
diff --git a/frontend/src/assets/sources/proliance-eastside-ent.png b/frontend/src/assets/sources/proliance-eastside-ent.png
new file mode 100644
index 00000000..a35f5220
Binary files /dev/null and b/frontend/src/assets/sources/proliance-eastside-ent.png differ
diff --git a/frontend/src/assets/sources/proliance-eastside-mri.jpg b/frontend/src/assets/sources/proliance-eastside-mri.jpg
new file mode 100644
index 00000000..1ea6a477
Binary files /dev/null and b/frontend/src/assets/sources/proliance-eastside-mri.jpg differ
diff --git a/frontend/src/assets/sources/proliance-eastside-mri.png b/frontend/src/assets/sources/proliance-eastside-mri.png
new file mode 100644
index 00000000..295dc58a
Binary files /dev/null and b/frontend/src/assets/sources/proliance-eastside-mri.png differ
diff --git a/frontend/src/assets/sources/proliance-eastside-physical-therapy.png b/frontend/src/assets/sources/proliance-eastside-physical-therapy.png
new file mode 100644
index 00000000..a2453fba
Binary files /dev/null and b/frontend/src/assets/sources/proliance-eastside-physical-therapy.png differ
diff --git a/frontend/src/assets/sources/proliance-eastside-surgeons.jpg b/frontend/src/assets/sources/proliance-eastside-surgeons.jpg
new file mode 100644
index 00000000..040cdd45
Binary files /dev/null and b/frontend/src/assets/sources/proliance-eastside-surgeons.jpg differ
diff --git a/frontend/src/assets/sources/proliance-eastside-surgical-specialists.jpg b/frontend/src/assets/sources/proliance-eastside-surgical-specialists.jpg
new file mode 100644
index 00000000..040cdd45
Binary files /dev/null and b/frontend/src/assets/sources/proliance-eastside-surgical-specialists.jpg differ
diff --git a/frontend/src/assets/sources/proliance-hand-wrist-and-elbow-physicians.jpg b/frontend/src/assets/sources/proliance-hand-wrist-and-elbow-physicians.jpg
new file mode 100644
index 00000000..dc4cc653
Binary files /dev/null and b/frontend/src/assets/sources/proliance-hand-wrist-and-elbow-physicians.jpg differ
diff --git a/frontend/src/assets/sources/proliance-imaging-center-at-first-hill.png b/frontend/src/assets/sources/proliance-imaging-center-at-first-hill.png
new file mode 100644
index 00000000..70509152
Binary files /dev/null and b/frontend/src/assets/sources/proliance-imaging-center-at-first-hill.png differ
diff --git a/frontend/src/assets/sources/proliance-orthopaedic-sports-medicine.svg b/frontend/src/assets/sources/proliance-orthopaedic-sports-medicine.svg
new file mode 100644
index 00000000..ad43f58a
--- /dev/null
+++ b/frontend/src/assets/sources/proliance-orthopaedic-sports-medicine.svg
@@ -0,0 +1 @@
+ Proliance_OrthoSportsMedicine-Location_color-rgb
\ No newline at end of file
diff --git a/frontend/src/assets/sources/proliance-orthopedic-associates.jpg b/frontend/src/assets/sources/proliance-orthopedic-associates.jpg
new file mode 100644
index 00000000..fa20793a
Binary files /dev/null and b/frontend/src/assets/sources/proliance-orthopedic-associates.jpg differ
diff --git a/frontend/src/assets/sources/proliance-pacific-rim-orthopaedic-surg.jpg b/frontend/src/assets/sources/proliance-pacific-rim-orthopaedic-surg.jpg
new file mode 100644
index 00000000..49c287f8
Binary files /dev/null and b/frontend/src/assets/sources/proliance-pacific-rim-orthopaedic-surg.jpg differ
diff --git a/frontend/src/assets/sources/proliance-retina.png b/frontend/src/assets/sources/proliance-retina.png
new file mode 100644
index 00000000..70509152
Binary files /dev/null and b/frontend/src/assets/sources/proliance-retina.png differ
diff --git a/frontend/src/assets/sources/proliance-south-seattle-otolaryngology.png b/frontend/src/assets/sources/proliance-south-seattle-otolaryngology.png
new file mode 100644
index 00000000..70509152
Binary files /dev/null and b/frontend/src/assets/sources/proliance-south-seattle-otolaryngology.png differ
diff --git a/frontend/src/assets/sources/proliance-southwest-seattle-orthopedics.jpg b/frontend/src/assets/sources/proliance-southwest-seattle-orthopedics.jpg
new file mode 100644
index 00000000..5d8ae514
Binary files /dev/null and b/frontend/src/assets/sources/proliance-southwest-seattle-orthopedics.jpg differ
diff --git a/frontend/src/assets/sources/proliance-sports-therapy-of-bellevue.png b/frontend/src/assets/sources/proliance-sports-therapy-of-bellevue.png
new file mode 100644
index 00000000..ab75b693
Binary files /dev/null and b/frontend/src/assets/sources/proliance-sports-therapy-of-bellevue.png differ
diff --git a/frontend/src/assets/sources/proliance-surgical-specialists-edmonds.png b/frontend/src/assets/sources/proliance-surgical-specialists-edmonds.png
new file mode 100644
index 00000000..70509152
Binary files /dev/null and b/frontend/src/assets/sources/proliance-surgical-specialists-edmonds.png differ
diff --git a/frontend/src/assets/sources/proliance-surgical-specialists-overlake.jpg b/frontend/src/assets/sources/proliance-surgical-specialists-overlake.jpg
new file mode 100644
index 00000000..c1eb823b
Binary files /dev/null and b/frontend/src/assets/sources/proliance-surgical-specialists-overlake.jpg differ
diff --git a/frontend/src/assets/sources/promesa-inc.png b/frontend/src/assets/sources/promesa-inc.png
new file mode 100644
index 00000000..9c0fb7e7
Binary files /dev/null and b/frontend/src/assets/sources/promesa-inc.png differ
diff --git a/frontend/src/assets/sources/promise-healthcare.jpg b/frontend/src/assets/sources/promise-healthcare.jpg
new file mode 100644
index 00000000..49e8e712
Binary files /dev/null and b/frontend/src/assets/sources/promise-healthcare.jpg differ
diff --git a/frontend/src/assets/sources/proortho.png b/frontend/src/assets/sources/proortho.png
new file mode 100644
index 00000000..295dc58a
Binary files /dev/null and b/frontend/src/assets/sources/proortho.png differ
diff --git a/frontend/src/assets/sources/providence-asc.png b/frontend/src/assets/sources/providence-asc.png
new file mode 100644
index 00000000..7dce6406
Binary files /dev/null and b/frontend/src/assets/sources/providence-asc.png differ
diff --git a/frontend/src/assets/sources/providence-health-and-services-oregon.png b/frontend/src/assets/sources/providence-health-and-services-oregon.png
new file mode 100644
index 00000000..e228ca24
Binary files /dev/null and b/frontend/src/assets/sources/providence-health-and-services-oregon.png differ
diff --git a/frontend/src/assets/sources/providence-medical-center.png b/frontend/src/assets/sources/providence-medical-center.png
new file mode 100644
index 00000000..45852e81
Binary files /dev/null and b/frontend/src/assets/sources/providence-medical-center.png differ
diff --git a/frontend/src/assets/sources/providence-urgent-care.png b/frontend/src/assets/sources/providence-urgent-care.png
new file mode 100644
index 00000000..c040bb01
Binary files /dev/null and b/frontend/src/assets/sources/providence-urgent-care.png differ
diff --git a/frontend/src/assets/sources/psychiatric-centers-at-san-diego.png b/frontend/src/assets/sources/psychiatric-centers-at-san-diego.png
new file mode 100644
index 00000000..930bf2dc
Binary files /dev/null and b/frontend/src/assets/sources/psychiatric-centers-at-san-diego.png differ
diff --git a/frontend/src/assets/sources/publix-deerfield-beach.png b/frontend/src/assets/sources/publix-deerfield-beach.png
new file mode 100644
index 00000000..0c52053e
Binary files /dev/null and b/frontend/src/assets/sources/publix-deerfield-beach.png differ
diff --git a/frontend/src/assets/sources/pueblo-community-health-center-inc.png b/frontend/src/assets/sources/pueblo-community-health-center-inc.png
new file mode 100644
index 00000000..ee130e6c
Binary files /dev/null and b/frontend/src/assets/sources/pueblo-community-health-center-inc.png differ
diff --git a/frontend/src/assets/sources/puget-sound-orthopaedics.png b/frontend/src/assets/sources/puget-sound-orthopaedics.png
new file mode 100644
index 00000000..8f4c22c2
Binary files /dev/null and b/frontend/src/assets/sources/puget-sound-orthopaedics.png differ
diff --git a/frontend/src/assets/sources/puget-sound-surgical-clinic.png b/frontend/src/assets/sources/puget-sound-surgical-clinic.png
new file mode 100644
index 00000000..70509152
Binary files /dev/null and b/frontend/src/assets/sources/puget-sound-surgical-clinic.png differ
diff --git a/frontend/src/assets/sources/pulmonary-and-sleep-assoc-of-hunterdon.png b/frontend/src/assets/sources/pulmonary-and-sleep-assoc-of-hunterdon.png
new file mode 100644
index 00000000..680270be
Binary files /dev/null and b/frontend/src/assets/sources/pulmonary-and-sleep-assoc-of-hunterdon.png differ
diff --git a/frontend/src/assets/sources/pulmonary-disease-specialists-pa.png b/frontend/src/assets/sources/pulmonary-disease-specialists-pa.png
new file mode 100644
index 00000000..45324433
Binary files /dev/null and b/frontend/src/assets/sources/pulmonary-disease-specialists-pa.png differ
diff --git a/frontend/src/assets/sources/pulmonary-practice-associates.png b/frontend/src/assets/sources/pulmonary-practice-associates.png
new file mode 100644
index 00000000..d7097ca7
Binary files /dev/null and b/frontend/src/assets/sources/pulmonary-practice-associates.png differ
diff --git a/frontend/src/assets/sources/puyallup-surgical-consultants.png b/frontend/src/assets/sources/puyallup-surgical-consultants.png
new file mode 100644
index 00000000..1d9d13e4
Binary files /dev/null and b/frontend/src/assets/sources/puyallup-surgical-consultants.png differ
diff --git a/frontend/src/assets/sources/puyallup-tribal-health-authority.jpg b/frontend/src/assets/sources/puyallup-tribal-health-authority.jpg
new file mode 100644
index 00000000..fb4a412d
Binary files /dev/null and b/frontend/src/assets/sources/puyallup-tribal-health-authority.jpg differ
diff --git a/frontend/src/assets/sources/quorum-health-group-inc.png b/frontend/src/assets/sources/quorum-health-group-inc.png
new file mode 100644
index 00000000..ab247390
Binary files /dev/null and b/frontend/src/assets/sources/quorum-health-group-inc.png differ
diff --git a/frontend/src/assets/sources/rafic-jarrah-md.svg b/frontend/src/assets/sources/rafic-jarrah-md.svg
new file mode 100644
index 00000000..a1af01aa
--- /dev/null
+++ b/frontend/src/assets/sources/rafic-jarrah-md.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/rainier-orthopedic-institute.jpg b/frontend/src/assets/sources/rainier-orthopedic-institute.jpg
new file mode 100644
index 00000000..94d368b7
Binary files /dev/null and b/frontend/src/assets/sources/rainier-orthopedic-institute.jpg differ
diff --git a/frontend/src/assets/sources/rajesh-b-vrushab-md-pllc.png b/frontend/src/assets/sources/rajesh-b-vrushab-md-pllc.png
new file mode 100644
index 00000000..24f1467e
Binary files /dev/null and b/frontend/src/assets/sources/rajesh-b-vrushab-md-pllc.png differ
diff --git a/frontend/src/assets/sources/ralph-zagha-md-pa.png b/frontend/src/assets/sources/ralph-zagha-md-pa.png
new file mode 100644
index 00000000..948019bf
Binary files /dev/null and b/frontend/src/assets/sources/ralph-zagha-md-pa.png differ
diff --git a/frontend/src/assets/sources/ramsey-county-social-services.jpg b/frontend/src/assets/sources/ramsey-county-social-services.jpg
new file mode 100644
index 00000000..fa72b5b8
Binary files /dev/null and b/frontend/src/assets/sources/ramsey-county-social-services.jpg differ
diff --git a/frontend/src/assets/sources/raso-and-cohen-gastroenterology.png b/frontend/src/assets/sources/raso-and-cohen-gastroenterology.png
new file mode 100644
index 00000000..725f0016
Binary files /dev/null and b/frontend/src/assets/sources/raso-and-cohen-gastroenterology.png differ
diff --git a/frontend/src/assets/sources/ratul-chatterjee-md.png b/frontend/src/assets/sources/ratul-chatterjee-md.png
new file mode 100644
index 00000000..6c2a3048
Binary files /dev/null and b/frontend/src/assets/sources/ratul-chatterjee-md.png differ
diff --git a/frontend/src/assets/sources/redding-rancheria-tribal-health-ctr.png b/frontend/src/assets/sources/redding-rancheria-tribal-health-ctr.png
new file mode 100644
index 00000000..892d9d8f
Binary files /dev/null and b/frontend/src/assets/sources/redding-rancheria-tribal-health-ctr.png differ
diff --git a/frontend/src/assets/sources/redman-and-gelinas-sc.png b/frontend/src/assets/sources/redman-and-gelinas-sc.png
new file mode 100644
index 00000000..538f7c4c
Binary files /dev/null and b/frontend/src/assets/sources/redman-and-gelinas-sc.png differ
diff --git a/frontend/src/assets/sources/redwood-coast-medical-services.png b/frontend/src/assets/sources/redwood-coast-medical-services.png
new file mode 100644
index 00000000..69cd0f21
Binary files /dev/null and b/frontend/src/assets/sources/redwood-coast-medical-services.png differ
diff --git a/frontend/src/assets/sources/redwoods-rural-health-center.png b/frontend/src/assets/sources/redwoods-rural-health-center.png
new file mode 100644
index 00000000..cb30ed71
Binary files /dev/null and b/frontend/src/assets/sources/redwoods-rural-health-center.png differ
diff --git a/frontend/src/assets/sources/reeves-eye-surgery-center.png b/frontend/src/assets/sources/reeves-eye-surgery-center.png
new file mode 100644
index 00000000..d4eebc7f
Binary files /dev/null and b/frontend/src/assets/sources/reeves-eye-surgery-center.png differ
diff --git a/frontend/src/assets/sources/reeves-regional-health.png b/frontend/src/assets/sources/reeves-regional-health.png
new file mode 100644
index 00000000..e832fa16
Binary files /dev/null and b/frontend/src/assets/sources/reeves-regional-health.png differ
diff --git a/frontend/src/assets/sources/refugio-county-memorial-hospital-district.png b/frontend/src/assets/sources/refugio-county-memorial-hospital-district.png
new file mode 100644
index 00000000..b4af01f4
Binary files /dev/null and b/frontend/src/assets/sources/refugio-county-memorial-hospital-district.png differ
diff --git a/frontend/src/assets/sources/regional-arthritis-and-rheumatology-assoc.png b/frontend/src/assets/sources/regional-arthritis-and-rheumatology-assoc.png
new file mode 100644
index 00000000..8d24cd1c
Binary files /dev/null and b/frontend/src/assets/sources/regional-arthritis-and-rheumatology-assoc.png differ
diff --git a/frontend/src/assets/sources/regional-eye-optical.png b/frontend/src/assets/sources/regional-eye-optical.png
new file mode 100644
index 00000000..0c243c92
Binary files /dev/null and b/frontend/src/assets/sources/regional-eye-optical.png differ
diff --git a/frontend/src/assets/sources/regional-eye-specialists-pa.png b/frontend/src/assets/sources/regional-eye-specialists-pa.png
new file mode 100644
index 00000000..0c243c92
Binary files /dev/null and b/frontend/src/assets/sources/regional-eye-specialists-pa.png differ
diff --git a/frontend/src/assets/sources/regional-eye-surgery-center.png b/frontend/src/assets/sources/regional-eye-surgery-center.png
new file mode 100644
index 00000000..2ebb6d58
Binary files /dev/null and b/frontend/src/assets/sources/regional-eye-surgery-center.png differ
diff --git a/frontend/src/assets/sources/regional-hand-surgery-associates.jpg b/frontend/src/assets/sources/regional-hand-surgery-associates.jpg
new file mode 100644
index 00000000..7298e732
Binary files /dev/null and b/frontend/src/assets/sources/regional-hand-surgery-associates.jpg differ
diff --git a/frontend/src/assets/sources/regional-health.png b/frontend/src/assets/sources/regional-health.png
new file mode 100644
index 00000000..9fa7e770
Binary files /dev/null and b/frontend/src/assets/sources/regional-health.png differ
diff --git a/frontend/src/assets/sources/regional-obstetric-consultants.png b/frontend/src/assets/sources/regional-obstetric-consultants.png
new file mode 100644
index 00000000..a97ad379
Binary files /dev/null and b/frontend/src/assets/sources/regional-obstetric-consultants.png differ
diff --git a/frontend/src/assets/sources/regional-primary-care-inc.png b/frontend/src/assets/sources/regional-primary-care-inc.png
new file mode 100644
index 00000000..630ee442
Binary files /dev/null and b/frontend/src/assets/sources/regional-primary-care-inc.png differ
diff --git a/frontend/src/assets/sources/regional-west-medical-center.png b/frontend/src/assets/sources/regional-west-medical-center.png
new file mode 100644
index 00000000..36e928c2
Binary files /dev/null and b/frontend/src/assets/sources/regional-west-medical-center.png differ
diff --git a/frontend/src/assets/sources/rehabilitation-hospital-of-the-pacific.svg b/frontend/src/assets/sources/rehabilitation-hospital-of-the-pacific.svg
new file mode 100644
index 00000000..b67ab19f
--- /dev/null
+++ b/frontend/src/assets/sources/rehabilitation-hospital-of-the-pacific.svg
@@ -0,0 +1,10 @@
+
+
+
+ RHP Horiz LOGO Color vector_no tag
+ Created with Sketch.
+
+
+
+
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/rejan-mccaskill-md-inc.png b/frontend/src/assets/sources/rejan-mccaskill-md-inc.png
new file mode 100644
index 00000000..9f2d20c9
Binary files /dev/null and b/frontend/src/assets/sources/rejan-mccaskill-md-inc.png differ
diff --git a/frontend/src/assets/sources/reliant-psychiatric-services-llc.jpg b/frontend/src/assets/sources/reliant-psychiatric-services-llc.jpg
new file mode 100644
index 00000000..976dffe0
Binary files /dev/null and b/frontend/src/assets/sources/reliant-psychiatric-services-llc.jpg differ
diff --git a/frontend/src/assets/sources/renal-associates-of-lagrange.png b/frontend/src/assets/sources/renal-associates-of-lagrange.png
new file mode 100644
index 00000000..b429dc1b
Binary files /dev/null and b/frontend/src/assets/sources/renal-associates-of-lagrange.png differ
diff --git a/frontend/src/assets/sources/renal-consultants-of-ventura-county-inc.jpg b/frontend/src/assets/sources/renal-consultants-of-ventura-county-inc.jpg
new file mode 100644
index 00000000..32574cb7
Binary files /dev/null and b/frontend/src/assets/sources/renal-consultants-of-ventura-county-inc.jpg differ
diff --git a/frontend/src/assets/sources/renalus-vascular-care.png b/frontend/src/assets/sources/renalus-vascular-care.png
new file mode 100644
index 00000000..4f3888eb
Binary files /dev/null and b/frontend/src/assets/sources/renalus-vascular-care.png differ
diff --git a/frontend/src/assets/sources/reno-sparks-tribal-health-center.png b/frontend/src/assets/sources/reno-sparks-tribal-health-center.png
new file mode 100644
index 00000000..6e29a566
Binary files /dev/null and b/frontend/src/assets/sources/reno-sparks-tribal-health-center.png differ
diff --git a/frontend/src/assets/sources/renuka-h-bhatt-md.jpg b/frontend/src/assets/sources/renuka-h-bhatt-md.jpg
new file mode 100644
index 00000000..ab1ed472
Binary files /dev/null and b/frontend/src/assets/sources/renuka-h-bhatt-md.jpg differ
diff --git a/frontend/src/assets/sources/reproductive-care-of-indiana.png b/frontend/src/assets/sources/reproductive-care-of-indiana.png
new file mode 100644
index 00000000..c6bec17a
Binary files /dev/null and b/frontend/src/assets/sources/reproductive-care-of-indiana.png differ
diff --git a/frontend/src/assets/sources/republic-county-hospital.jpg b/frontend/src/assets/sources/republic-county-hospital.jpg
new file mode 100644
index 00000000..3f70caa7
Binary files /dev/null and b/frontend/src/assets/sources/republic-county-hospital.jpg differ
diff --git a/frontend/src/assets/sources/restoration-plastic-surgery-p-c.png b/frontend/src/assets/sources/restoration-plastic-surgery-p-c.png
new file mode 100644
index 00000000..1835cfa7
Binary files /dev/null and b/frontend/src/assets/sources/restoration-plastic-surgery-p-c.png differ
diff --git a/frontend/src/assets/sources/retina-associates-of-kentucky.jpg b/frontend/src/assets/sources/retina-associates-of-kentucky.jpg
new file mode 100644
index 00000000..1d6d96a2
Binary files /dev/null and b/frontend/src/assets/sources/retina-associates-of-kentucky.jpg differ
diff --git a/frontend/src/assets/sources/retina-associates-of-southern-utah.jpg b/frontend/src/assets/sources/retina-associates-of-southern-utah.jpg
new file mode 100644
index 00000000..dea99dfd
Binary files /dev/null and b/frontend/src/assets/sources/retina-associates-of-southern-utah.jpg differ
diff --git a/frontend/src/assets/sources/retina-center-of-texas.svg b/frontend/src/assets/sources/retina-center-of-texas.svg
new file mode 100644
index 00000000..2696df70
--- /dev/null
+++ b/frontend/src/assets/sources/retina-center-of-texas.svg
@@ -0,0 +1,143 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+O
+
+
+
+T
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/retina-consultants-llc.png b/frontend/src/assets/sources/retina-consultants-llc.png
new file mode 100644
index 00000000..eea56330
Binary files /dev/null and b/frontend/src/assets/sources/retina-consultants-llc.png differ
diff --git a/frontend/src/assets/sources/retina-consultants-of-idaho.png b/frontend/src/assets/sources/retina-consultants-of-idaho.png
new file mode 100644
index 00000000..c411ccb0
Binary files /dev/null and b/frontend/src/assets/sources/retina-consultants-of-idaho.png differ
diff --git a/frontend/src/assets/sources/retina-consultants-of-nevada.png b/frontend/src/assets/sources/retina-consultants-of-nevada.png
new file mode 100644
index 00000000..05b0a53b
Binary files /dev/null and b/frontend/src/assets/sources/retina-consultants-of-nevada.png differ
diff --git a/frontend/src/assets/sources/retina-consultants-of-southern-utah.png b/frontend/src/assets/sources/retina-consultants-of-southern-utah.png
new file mode 100644
index 00000000..ffc781d1
Binary files /dev/null and b/frontend/src/assets/sources/retina-consultants-of-southern-utah.png differ
diff --git a/frontend/src/assets/sources/retina-consultants-of-utah.png b/frontend/src/assets/sources/retina-consultants-of-utah.png
new file mode 100644
index 00000000..05b0a53b
Binary files /dev/null and b/frontend/src/assets/sources/retina-consultants-of-utah.png differ
diff --git a/frontend/src/assets/sources/retina-northwest-pc.png b/frontend/src/assets/sources/retina-northwest-pc.png
new file mode 100644
index 00000000..1a867776
Binary files /dev/null and b/frontend/src/assets/sources/retina-northwest-pc.png differ
diff --git a/frontend/src/assets/sources/retina-specialists-of-idaho-partners.jpg b/frontend/src/assets/sources/retina-specialists-of-idaho-partners.jpg
new file mode 100644
index 00000000..adcfbbbc
Binary files /dev/null and b/frontend/src/assets/sources/retina-specialists-of-idaho-partners.jpg differ
diff --git a/frontend/src/assets/sources/retina-specialists-of-idaho.png b/frontend/src/assets/sources/retina-specialists-of-idaho.png
new file mode 100644
index 00000000..90c2832e
Binary files /dev/null and b/frontend/src/assets/sources/retina-specialists-of-idaho.png differ
diff --git a/frontend/src/assets/sources/retina-specialty-institute.svg b/frontend/src/assets/sources/retina-specialty-institute.svg
new file mode 100644
index 00000000..08bdd789
--- /dev/null
+++ b/frontend/src/assets/sources/retina-specialty-institute.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/retinal-consultants-of-arizona-ltd.png b/frontend/src/assets/sources/retinal-consultants-of-arizona-ltd.png
new file mode 100644
index 00000000..99d85de6
Binary files /dev/null and b/frontend/src/assets/sources/retinal-consultants-of-arizona-ltd.png differ
diff --git a/frontend/src/assets/sources/revask-surgery-center-llc.svg b/frontend/src/assets/sources/revask-surgery-center-llc.svg
new file mode 100644
index 00000000..e0ace725
--- /dev/null
+++ b/frontend/src/assets/sources/revask-surgery-center-llc.svg
@@ -0,0 +1 @@
+Generated with Avocode.
\ No newline at end of file
diff --git a/frontend/src/assets/sources/reynolds-and-anliker.png b/frontend/src/assets/sources/reynolds-and-anliker.png
new file mode 100644
index 00000000..6949e83f
Binary files /dev/null and b/frontend/src/assets/sources/reynolds-and-anliker.png differ
diff --git a/frontend/src/assets/sources/rheumatic-disease-associates-ltd.png b/frontend/src/assets/sources/rheumatic-disease-associates-ltd.png
new file mode 100644
index 00000000..3dabc68d
Binary files /dev/null and b/frontend/src/assets/sources/rheumatic-disease-associates-ltd.png differ
diff --git a/frontend/src/assets/sources/rheumatology-and-immunotherapy-center.png b/frontend/src/assets/sources/rheumatology-and-immunotherapy-center.png
new file mode 100644
index 00000000..edccc44c
Binary files /dev/null and b/frontend/src/assets/sources/rheumatology-and-immunotherapy-center.png differ
diff --git a/frontend/src/assets/sources/rheumatology-associates-central-florida.png b/frontend/src/assets/sources/rheumatology-associates-central-florida.png
new file mode 100644
index 00000000..4fbc6cea
Binary files /dev/null and b/frontend/src/assets/sources/rheumatology-associates-central-florida.png differ
diff --git a/frontend/src/assets/sources/rheumatology-associates-of-baltimore-llc.png b/frontend/src/assets/sources/rheumatology-associates-of-baltimore-llc.png
new file mode 100644
index 00000000..18dfeef3
Binary files /dev/null and b/frontend/src/assets/sources/rheumatology-associates-of-baltimore-llc.png differ
diff --git a/frontend/src/assets/sources/rheumatology-associates-of-long-island.png b/frontend/src/assets/sources/rheumatology-associates-of-long-island.png
new file mode 100644
index 00000000..0f0de47a
Binary files /dev/null and b/frontend/src/assets/sources/rheumatology-associates-of-long-island.png differ
diff --git a/frontend/src/assets/sources/rheumatology-associates-of-maui.jpg b/frontend/src/assets/sources/rheumatology-associates-of-maui.jpg
new file mode 100644
index 00000000..abbdec65
Binary files /dev/null and b/frontend/src/assets/sources/rheumatology-associates-of-maui.jpg differ
diff --git a/frontend/src/assets/sources/rheumatology-associates-p-c.png b/frontend/src/assets/sources/rheumatology-associates-p-c.png
new file mode 100644
index 00000000..4708ecce
Binary files /dev/null and b/frontend/src/assets/sources/rheumatology-associates-p-c.png differ
diff --git a/frontend/src/assets/sources/rheumatology-associates-pllc.png b/frontend/src/assets/sources/rheumatology-associates-pllc.png
new file mode 100644
index 00000000..e6d490b5
Binary files /dev/null and b/frontend/src/assets/sources/rheumatology-associates-pllc.png differ
diff --git a/frontend/src/assets/sources/rheumatology-consultants-llp.png b/frontend/src/assets/sources/rheumatology-consultants-llp.png
new file mode 100644
index 00000000..887e1cf6
Binary files /dev/null and b/frontend/src/assets/sources/rheumatology-consultants-llp.png differ
diff --git a/frontend/src/assets/sources/rice-medical-center.png b/frontend/src/assets/sources/rice-medical-center.png
new file mode 100644
index 00000000..f255c2f0
Binary files /dev/null and b/frontend/src/assets/sources/rice-medical-center.png differ
diff --git a/frontend/src/assets/sources/richard-j-solomon-md.png b/frontend/src/assets/sources/richard-j-solomon-md.png
new file mode 100644
index 00000000..ab12fd51
Binary files /dev/null and b/frontend/src/assets/sources/richard-j-solomon-md.png differ
diff --git a/frontend/src/assets/sources/richard-m-adams-dpm.jpg b/frontend/src/assets/sources/richard-m-adams-dpm.jpg
new file mode 100644
index 00000000..1d92cbf8
Binary files /dev/null and b/frontend/src/assets/sources/richard-m-adams-dpm.jpg differ
diff --git a/frontend/src/assets/sources/richard-m-sooy-dpm.png b/frontend/src/assets/sources/richard-m-sooy-dpm.png
new file mode 100644
index 00000000..c4dac14c
Binary files /dev/null and b/frontend/src/assets/sources/richard-m-sooy-dpm.png differ
diff --git a/frontend/src/assets/sources/richard-price-md.png b/frontend/src/assets/sources/richard-price-md.png
new file mode 100644
index 00000000..beb2ba5c
Binary files /dev/null and b/frontend/src/assets/sources/richard-price-md.png differ
diff --git a/frontend/src/assets/sources/richard-s-warner-md.jpg b/frontend/src/assets/sources/richard-s-warner-md.jpg
new file mode 100644
index 00000000..3e4890bb
Binary files /dev/null and b/frontend/src/assets/sources/richard-s-warner-md.jpg differ
diff --git a/frontend/src/assets/sources/richmond-asc.png b/frontend/src/assets/sources/richmond-asc.png
new file mode 100644
index 00000000..a743e084
Binary files /dev/null and b/frontend/src/assets/sources/richmond-asc.png differ
diff --git a/frontend/src/assets/sources/ridge-family-practice.jpg b/frontend/src/assets/sources/ridge-family-practice.jpg
new file mode 100644
index 00000000..dc0fb345
Binary files /dev/null and b/frontend/src/assets/sources/ridge-family-practice.jpg differ
diff --git a/frontend/src/assets/sources/ridgecrest-village.png b/frontend/src/assets/sources/ridgecrest-village.png
new file mode 100644
index 00000000..1bfd9238
Binary files /dev/null and b/frontend/src/assets/sources/ridgecrest-village.png differ
diff --git a/frontend/src/assets/sources/riggs-community-health-center-inc.png b/frontend/src/assets/sources/riggs-community-health-center-inc.png
new file mode 100644
index 00000000..bb18e078
Binary files /dev/null and b/frontend/src/assets/sources/riggs-community-health-center-inc.png differ
diff --git a/frontend/src/assets/sources/rio-grande-heart-specialists.png b/frontend/src/assets/sources/rio-grande-heart-specialists.png
new file mode 100644
index 00000000..6808c998
Binary files /dev/null and b/frontend/src/assets/sources/rio-grande-heart-specialists.png differ
diff --git a/frontend/src/assets/sources/rita-tenenbaum-md.svg b/frontend/src/assets/sources/rita-tenenbaum-md.svg
new file mode 100644
index 00000000..21a41b32
--- /dev/null
+++ b/frontend/src/assets/sources/rita-tenenbaum-md.svg
@@ -0,0 +1,144 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/river-drive-surgery-and-laser-center.png b/frontend/src/assets/sources/river-drive-surgery-and-laser-center.png
new file mode 100644
index 00000000..5099ed9d
Binary files /dev/null and b/frontend/src/assets/sources/river-drive-surgery-and-laser-center.png differ
diff --git a/frontend/src/assets/sources/river-oaks-endoscopy.png b/frontend/src/assets/sources/river-oaks-endoscopy.png
new file mode 100644
index 00000000..231d4d68
Binary files /dev/null and b/frontend/src/assets/sources/river-oaks-endoscopy.png differ
diff --git a/frontend/src/assets/sources/rivers-edge-pediatrics-inc.png b/frontend/src/assets/sources/rivers-edge-pediatrics-inc.png
new file mode 100644
index 00000000..4a4f25c2
Binary files /dev/null and b/frontend/src/assets/sources/rivers-edge-pediatrics-inc.png differ
diff --git a/frontend/src/assets/sources/riverside-endoscopy-center.png b/frontend/src/assets/sources/riverside-endoscopy-center.png
new file mode 100644
index 00000000..f0f60f46
Binary files /dev/null and b/frontend/src/assets/sources/riverside-endoscopy-center.png differ
diff --git a/frontend/src/assets/sources/riverside-san-bernardino-co-ihs-inc.png b/frontend/src/assets/sources/riverside-san-bernardino-co-ihs-inc.png
new file mode 100644
index 00000000..72b870ae
Binary files /dev/null and b/frontend/src/assets/sources/riverside-san-bernardino-co-ihs-inc.png differ
diff --git a/frontend/src/assets/sources/riverside-spine-and-pain-physicians.png b/frontend/src/assets/sources/riverside-spine-and-pain-physicians.png
new file mode 100644
index 00000000..ab07aa46
Binary files /dev/null and b/frontend/src/assets/sources/riverside-spine-and-pain-physicians.png differ
diff --git a/frontend/src/assets/sources/rkm-primary-care.png b/frontend/src/assets/sources/rkm-primary-care.png
new file mode 100644
index 00000000..b4d8ff88
Binary files /dev/null and b/frontend/src/assets/sources/rkm-primary-care.png differ
diff --git a/frontend/src/assets/sources/rms-healthcare-inc.jpg b/frontend/src/assets/sources/rms-healthcare-inc.jpg
new file mode 100644
index 00000000..7cef03c2
Binary files /dev/null and b/frontend/src/assets/sources/rms-healthcare-inc.jpg differ
diff --git a/frontend/src/assets/sources/rmvi-dba-american-vein-vascular-inst.jpg b/frontend/src/assets/sources/rmvi-dba-american-vein-vascular-inst.jpg
new file mode 100644
index 00000000..b1a907b1
Binary files /dev/null and b/frontend/src/assets/sources/rmvi-dba-american-vein-vascular-inst.jpg differ
diff --git a/frontend/src/assets/sources/roanoke-valley-center-for-sight.jpeg b/frontend/src/assets/sources/roanoke-valley-center-for-sight.jpeg
new file mode 100644
index 00000000..bd3e387c
Binary files /dev/null and b/frontend/src/assets/sources/roanoke-valley-center-for-sight.jpeg differ
diff --git a/frontend/src/assets/sources/robert-c-feldman-md-pa.png b/frontend/src/assets/sources/robert-c-feldman-md-pa.png
new file mode 100644
index 00000000..a18f208c
Binary files /dev/null and b/frontend/src/assets/sources/robert-c-feldman-md-pa.png differ
diff --git a/frontend/src/assets/sources/robert-j-bae-md-a-med-corp.png b/frontend/src/assets/sources/robert-j-bae-md-a-med-corp.png
new file mode 100644
index 00000000..6c2a3048
Binary files /dev/null and b/frontend/src/assets/sources/robert-j-bae-md-a-med-corp.png differ
diff --git a/frontend/src/assets/sources/robert-k-brateman-md-pc.svg b/frontend/src/assets/sources/robert-k-brateman-md-pc.svg
new file mode 100644
index 00000000..a1af01aa
--- /dev/null
+++ b/frontend/src/assets/sources/robert-k-brateman-md-pc.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/robert-k-moffatt-md.svg b/frontend/src/assets/sources/robert-k-moffatt-md.svg
new file mode 100644
index 00000000..25e5316b
--- /dev/null
+++ b/frontend/src/assets/sources/robert-k-moffatt-md.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/rochester-rehabilitation-center.jpg b/frontend/src/assets/sources/rochester-rehabilitation-center.jpg
new file mode 100644
index 00000000..a68ac049
Binary files /dev/null and b/frontend/src/assets/sources/rochester-rehabilitation-center.jpg differ
diff --git a/frontend/src/assets/sources/rock-regional-hospital.jpg b/frontend/src/assets/sources/rock-regional-hospital.jpg
new file mode 100644
index 00000000..8c6e4d26
Binary files /dev/null and b/frontend/src/assets/sources/rock-regional-hospital.jpg differ
diff --git a/frontend/src/assets/sources/rock-regional-hospital.png b/frontend/src/assets/sources/rock-regional-hospital.png
new file mode 100644
index 00000000..bbec38f4
Binary files /dev/null and b/frontend/src/assets/sources/rock-regional-hospital.png differ
diff --git a/frontend/src/assets/sources/rockford-gastroenterology-associates.png b/frontend/src/assets/sources/rockford-gastroenterology-associates.png
new file mode 100644
index 00000000..32a49324
Binary files /dev/null and b/frontend/src/assets/sources/rockford-gastroenterology-associates.png differ
diff --git a/frontend/src/assets/sources/rocking-horse-center.svg b/frontend/src/assets/sources/rocking-horse-center.svg
new file mode 100644
index 00000000..5889de5f
--- /dev/null
+++ b/frontend/src/assets/sources/rocking-horse-center.svg
@@ -0,0 +1 @@
+ Rocking Horse Icon
\ No newline at end of file
diff --git a/frontend/src/assets/sources/rockland-eye-physicians-and-surgeons.svg b/frontend/src/assets/sources/rockland-eye-physicians-and-surgeons.svg
new file mode 100644
index 00000000..ad1baf4e
--- /dev/null
+++ b/frontend/src/assets/sources/rockland-eye-physicians-and-surgeons.svg
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/rockland-thoracic-associates.png b/frontend/src/assets/sources/rockland-thoracic-associates.png
new file mode 100644
index 00000000..28836c9d
Binary files /dev/null and b/frontend/src/assets/sources/rockland-thoracic-associates.png differ
diff --git a/frontend/src/assets/sources/rocky-mount-eye.png b/frontend/src/assets/sources/rocky-mount-eye.png
new file mode 100644
index 00000000..4e173ed7
Binary files /dev/null and b/frontend/src/assets/sources/rocky-mount-eye.png differ
diff --git a/frontend/src/assets/sources/rocky-mountain-eye-center-inc.png b/frontend/src/assets/sources/rocky-mountain-eye-center-inc.png
new file mode 100644
index 00000000..f73777e6
Binary files /dev/null and b/frontend/src/assets/sources/rocky-mountain-eye-center-inc.png differ
diff --git a/frontend/src/assets/sources/rocky-mountain-family-physicians-pc.jpg b/frontend/src/assets/sources/rocky-mountain-family-physicians-pc.jpg
new file mode 100644
index 00000000..27815857
Binary files /dev/null and b/frontend/src/assets/sources/rocky-mountain-family-physicians-pc.jpg differ
diff --git a/frontend/src/assets/sources/rocky-mountain-family-physicians-west.png b/frontend/src/assets/sources/rocky-mountain-family-physicians-west.png
new file mode 100644
index 00000000..173c3d3f
Binary files /dev/null and b/frontend/src/assets/sources/rocky-mountain-family-physicians-west.png differ
diff --git a/frontend/src/assets/sources/rocky-mountain-pediatric-cardiology.png b/frontend/src/assets/sources/rocky-mountain-pediatric-cardiology.png
new file mode 100644
index 00000000..a8e0f145
Binary files /dev/null and b/frontend/src/assets/sources/rocky-mountain-pediatric-cardiology.png differ
diff --git a/frontend/src/assets/sources/roger-j-epstein-md-llc.png b/frontend/src/assets/sources/roger-j-epstein-md-llc.png
new file mode 100644
index 00000000..c2189b05
Binary files /dev/null and b/frontend/src/assets/sources/roger-j-epstein-md-llc.png differ
diff --git a/frontend/src/assets/sources/rogers-memorial-hospital-inc.png b/frontend/src/assets/sources/rogers-memorial-hospital-inc.png
new file mode 100644
index 00000000..8cd5c1e7
Binary files /dev/null and b/frontend/src/assets/sources/rogers-memorial-hospital-inc.png differ
diff --git a/frontend/src/assets/sources/rogue-valley-physicians-pc.png b/frontend/src/assets/sources/rogue-valley-physicians-pc.png
new file mode 100644
index 00000000..88cd64f4
Binary files /dev/null and b/frontend/src/assets/sources/rogue-valley-physicians-pc.png differ
diff --git a/frontend/src/assets/sources/ronald-teed-md.jpg b/frontend/src/assets/sources/ronald-teed-md.jpg
new file mode 100644
index 00000000..3b83826f
Binary files /dev/null and b/frontend/src/assets/sources/ronald-teed-md.jpg differ
diff --git a/frontend/src/assets/sources/rural-health-care-inc-dba-aza-health.png b/frontend/src/assets/sources/rural-health-care-inc-dba-aza-health.png
new file mode 100644
index 00000000..386bdd73
Binary files /dev/null and b/frontend/src/assets/sources/rural-health-care-inc-dba-aza-health.png differ
diff --git a/frontend/src/assets/sources/rural-health-center.jpg b/frontend/src/assets/sources/rural-health-center.jpg
new file mode 100644
index 00000000..c992519b
Binary files /dev/null and b/frontend/src/assets/sources/rural-health-center.jpg differ
diff --git a/frontend/src/assets/sources/rush-memorial-hospital.png b/frontend/src/assets/sources/rush-memorial-hospital.png
new file mode 100644
index 00000000..6093b0bd
Binary files /dev/null and b/frontend/src/assets/sources/rush-memorial-hospital.png differ
diff --git a/frontend/src/assets/sources/ryan-white-clinic.png b/frontend/src/assets/sources/ryan-white-clinic.png
new file mode 100644
index 00000000..6585190c
Binary files /dev/null and b/frontend/src/assets/sources/ryan-white-clinic.png differ
diff --git a/frontend/src/assets/sources/s-e-e-k-arizona-llc.jpg b/frontend/src/assets/sources/s-e-e-k-arizona-llc.jpg
new file mode 100644
index 00000000..bac6621b
Binary files /dev/null and b/frontend/src/assets/sources/s-e-e-k-arizona-llc.jpg differ
diff --git a/frontend/src/assets/sources/s-p-associates-d-o-p-c.jpg b/frontend/src/assets/sources/s-p-associates-d-o-p-c.jpg
new file mode 100644
index 00000000..880a109a
Binary files /dev/null and b/frontend/src/assets/sources/s-p-associates-d-o-p-c.jpg differ
diff --git a/frontend/src/assets/sources/s-philadelphia-asc.png b/frontend/src/assets/sources/s-philadelphia-asc.png
new file mode 100644
index 00000000..f44ee72c
Binary files /dev/null and b/frontend/src/assets/sources/s-philadelphia-asc.png differ
diff --git a/frontend/src/assets/sources/s-philadelphia-vascular.png b/frontend/src/assets/sources/s-philadelphia-vascular.png
new file mode 100644
index 00000000..f44ee72c
Binary files /dev/null and b/frontend/src/assets/sources/s-philadelphia-vascular.png differ
diff --git a/frontend/src/assets/sources/sabetha-community-hospital.png b/frontend/src/assets/sources/sabetha-community-hospital.png
new file mode 100644
index 00000000..cb8b740f
Binary files /dev/null and b/frontend/src/assets/sources/sabetha-community-hospital.png differ
diff --git a/frontend/src/assets/sources/sacopee-valley-health-center.jpg b/frontend/src/assets/sources/sacopee-valley-health-center.jpg
new file mode 100644
index 00000000..b1040fd8
Binary files /dev/null and b/frontend/src/assets/sources/sacopee-valley-health-center.jpg differ
diff --git a/frontend/src/assets/sources/sacopee-valley-health-center.png b/frontend/src/assets/sources/sacopee-valley-health-center.png
new file mode 100644
index 00000000..3aa5810e
Binary files /dev/null and b/frontend/src/assets/sources/sacopee-valley-health-center.png differ
diff --git a/frontend/src/assets/sources/sacramento-native-american-health-center.png b/frontend/src/assets/sources/sacramento-native-american-health-center.png
new file mode 100644
index 00000000..720d07bf
Binary files /dev/null and b/frontend/src/assets/sources/sacramento-native-american-health-center.png differ
diff --git a/frontend/src/assets/sources/saddleback-eye-medical-assoc.png b/frontend/src/assets/sources/saddleback-eye-medical-assoc.png
new file mode 100644
index 00000000..7155c5c1
Binary files /dev/null and b/frontend/src/assets/sources/saddleback-eye-medical-assoc.png differ
diff --git a/frontend/src/assets/sources/saddleback-family-urgent-care.svg b/frontend/src/assets/sources/saddleback-family-urgent-care.svg
new file mode 100644
index 00000000..9464f458
--- /dev/null
+++ b/frontend/src/assets/sources/saddleback-family-urgent-care.svg
@@ -0,0 +1 @@
+Saddleback-Family-and-Urgent-Care-logo
\ No newline at end of file
diff --git a/frontend/src/assets/sources/saddleback-medical-group-inc.png b/frontend/src/assets/sources/saddleback-medical-group-inc.png
new file mode 100644
index 00000000..0b4043a8
Binary files /dev/null and b/frontend/src/assets/sources/saddleback-medical-group-inc.png differ
diff --git a/frontend/src/assets/sources/saddleback-resp-medical-group.png b/frontend/src/assets/sources/saddleback-resp-medical-group.png
new file mode 100644
index 00000000..1df78f1d
Binary files /dev/null and b/frontend/src/assets/sources/saddleback-resp-medical-group.png differ
diff --git a/frontend/src/assets/sources/saint-moscati-community-health-care.jpg b/frontend/src/assets/sources/saint-moscati-community-health-care.jpg
new file mode 100644
index 00000000..d1580b24
Binary files /dev/null and b/frontend/src/assets/sources/saint-moscati-community-health-care.jpg differ
diff --git a/frontend/src/assets/sources/saint-thomas-health.png b/frontend/src/assets/sources/saint-thomas-health.png
new file mode 100644
index 00000000..3a28e587
Binary files /dev/null and b/frontend/src/assets/sources/saint-thomas-health.png differ
diff --git a/frontend/src/assets/sources/saint-youstina-community-clinic.png b/frontend/src/assets/sources/saint-youstina-community-clinic.png
new file mode 100644
index 00000000..fbe3aa4d
Binary files /dev/null and b/frontend/src/assets/sources/saint-youstina-community-clinic.png differ
diff --git a/frontend/src/assets/sources/sakdc-surgical-center.png b/frontend/src/assets/sources/sakdc-surgical-center.png
new file mode 100644
index 00000000..2e44059d
Binary files /dev/null and b/frontend/src/assets/sources/sakdc-surgical-center.png differ
diff --git a/frontend/src/assets/sources/salem-memorial-district-hospital.png b/frontend/src/assets/sources/salem-memorial-district-hospital.png
new file mode 100644
index 00000000..af5e1bfe
Binary files /dev/null and b/frontend/src/assets/sources/salem-memorial-district-hospital.png differ
diff --git a/frontend/src/assets/sources/salem-pain-and-spine-specialists-pc.jpg b/frontend/src/assets/sources/salem-pain-and-spine-specialists-pc.jpg
new file mode 100644
index 00000000..23196122
Binary files /dev/null and b/frontend/src/assets/sources/salem-pain-and-spine-specialists-pc.jpg differ
diff --git a/frontend/src/assets/sources/salem-pediatric-clinic-llp.jpg b/frontend/src/assets/sources/salem-pediatric-clinic-llp.jpg
new file mode 100644
index 00000000..987c106e
Binary files /dev/null and b/frontend/src/assets/sources/salem-pediatric-clinic-llp.jpg differ
diff --git a/frontend/src/assets/sources/salem-pulmonary-associates-pc.jpg b/frontend/src/assets/sources/salem-pulmonary-associates-pc.jpg
new file mode 100644
index 00000000..8fb1a0c1
Binary files /dev/null and b/frontend/src/assets/sources/salem-pulmonary-associates-pc.jpg differ
diff --git a/frontend/src/assets/sources/salem-rehab-associates-inc.png b/frontend/src/assets/sources/salem-rehab-associates-inc.png
new file mode 100644
index 00000000..f3037f27
Binary files /dev/null and b/frontend/src/assets/sources/salem-rehab-associates-inc.png differ
diff --git a/frontend/src/assets/sources/salem-sleep-medicine-pc.png b/frontend/src/assets/sources/salem-sleep-medicine-pc.png
new file mode 100644
index 00000000..1b18b994
Binary files /dev/null and b/frontend/src/assets/sources/salem-sleep-medicine-pc.png differ
diff --git a/frontend/src/assets/sources/salus-university.png b/frontend/src/assets/sources/salus-university.png
new file mode 100644
index 00000000..450310dc
Binary files /dev/null and b/frontend/src/assets/sources/salus-university.png differ
diff --git a/frontend/src/assets/sources/samuel-u-rodgers-health-center.png b/frontend/src/assets/sources/samuel-u-rodgers-health-center.png
new file mode 100644
index 00000000..add9ad36
Binary files /dev/null and b/frontend/src/assets/sources/samuel-u-rodgers-health-center.png differ
diff --git a/frontend/src/assets/sources/san-antonio-care-center.png b/frontend/src/assets/sources/san-antonio-care-center.png
new file mode 100644
index 00000000..f04cf893
Binary files /dev/null and b/frontend/src/assets/sources/san-antonio-care-center.png differ
diff --git a/frontend/src/assets/sources/san-antonio-eye-center-p-a.svg b/frontend/src/assets/sources/san-antonio-eye-center-p-a.svg
new file mode 100644
index 00000000..491da112
--- /dev/null
+++ b/frontend/src/assets/sources/san-antonio-eye-center-p-a.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/san-antonio-kidney-disease.jpg b/frontend/src/assets/sources/san-antonio-kidney-disease.jpg
new file mode 100644
index 00000000..3eaad28b
Binary files /dev/null and b/frontend/src/assets/sources/san-antonio-kidney-disease.jpg differ
diff --git a/frontend/src/assets/sources/san-antonio-urgent-care-sierra.png b/frontend/src/assets/sources/san-antonio-urgent-care-sierra.png
new file mode 100644
index 00000000..4c5e00bd
Binary files /dev/null and b/frontend/src/assets/sources/san-antonio-urgent-care-sierra.png differ
diff --git a/frontend/src/assets/sources/san-diego-asc.png b/frontend/src/assets/sources/san-diego-asc.png
new file mode 100644
index 00000000..bbe87553
Binary files /dev/null and b/frontend/src/assets/sources/san-diego-asc.png differ
diff --git a/frontend/src/assets/sources/san-francisco-foot-and-ankle-center.png b/frontend/src/assets/sources/san-francisco-foot-and-ankle-center.png
new file mode 100644
index 00000000..f6d6cac2
Binary files /dev/null and b/frontend/src/assets/sources/san-francisco-foot-and-ankle-center.png differ
diff --git a/frontend/src/assets/sources/san-joaquin-general-hospital.png b/frontend/src/assets/sources/san-joaquin-general-hospital.png
new file mode 100644
index 00000000..464dc713
Binary files /dev/null and b/frontend/src/assets/sources/san-joaquin-general-hospital.png differ
diff --git a/frontend/src/assets/sources/san-juan-hospital.png b/frontend/src/assets/sources/san-juan-hospital.png
new file mode 100644
index 00000000..4c56d9c2
Binary files /dev/null and b/frontend/src/assets/sources/san-juan-hospital.png differ
diff --git a/frontend/src/assets/sources/san-juan-regional-medical-center.png b/frontend/src/assets/sources/san-juan-regional-medical-center.png
new file mode 100644
index 00000000..4c56d9c2
Binary files /dev/null and b/frontend/src/assets/sources/san-juan-regional-medical-center.png differ
diff --git a/frontend/src/assets/sources/san-ysidro-health-center.png b/frontend/src/assets/sources/san-ysidro-health-center.png
new file mode 100644
index 00000000..30ecec55
Binary files /dev/null and b/frontend/src/assets/sources/san-ysidro-health-center.png differ
diff --git a/frontend/src/assets/sources/santa-monica-dermatology.png b/frontend/src/assets/sources/santa-monica-dermatology.png
new file mode 100644
index 00000000..6f4ba883
Binary files /dev/null and b/frontend/src/assets/sources/santa-monica-dermatology.png differ
diff --git a/frontend/src/assets/sources/sapphire-community-health-inc.jpg b/frontend/src/assets/sources/sapphire-community-health-inc.jpg
new file mode 100644
index 00000000..321011c0
Binary files /dev/null and b/frontend/src/assets/sources/sapphire-community-health-inc.jpg differ
diff --git a/frontend/src/assets/sources/sarah-bush-lincoln-health-system.png b/frontend/src/assets/sources/sarah-bush-lincoln-health-system.png
new file mode 100644
index 00000000..83b0edeb
Binary files /dev/null and b/frontend/src/assets/sources/sarah-bush-lincoln-health-system.png differ
diff --git a/frontend/src/assets/sources/sarasota-ophthalmology-associates.png b/frontend/src/assets/sources/sarasota-ophthalmology-associates.png
new file mode 100644
index 00000000..dad223b3
Binary files /dev/null and b/frontend/src/assets/sources/sarasota-ophthalmology-associates.png differ
diff --git a/frontend/src/assets/sources/sarasota-physicians-surgical-center.png b/frontend/src/assets/sources/sarasota-physicians-surgical-center.png
new file mode 100644
index 00000000..e3527b3f
Binary files /dev/null and b/frontend/src/assets/sources/sarasota-physicians-surgical-center.png differ
diff --git a/frontend/src/assets/sources/satya-dandamudi-md-facp.png b/frontend/src/assets/sources/satya-dandamudi-md-facp.png
new file mode 100644
index 00000000..7fd8cfc6
Binary files /dev/null and b/frontend/src/assets/sources/satya-dandamudi-md-facp.png differ
diff --git a/frontend/src/assets/sources/saunders-medical-center.png b/frontend/src/assets/sources/saunders-medical-center.png
new file mode 100644
index 00000000..948c8347
Binary files /dev/null and b/frontend/src/assets/sources/saunders-medical-center.png differ
diff --git a/frontend/src/assets/sources/savannah-vascular-institute.png b/frontend/src/assets/sources/savannah-vascular-institute.png
new file mode 100644
index 00000000..e8feb09d
Binary files /dev/null and b/frontend/src/assets/sources/savannah-vascular-institute.png differ
diff --git a/frontend/src/assets/sources/savitri-k-rambhatla-md.png b/frontend/src/assets/sources/savitri-k-rambhatla-md.png
new file mode 100644
index 00000000..78ff06df
Binary files /dev/null and b/frontend/src/assets/sources/savitri-k-rambhatla-md.png differ
diff --git a/frontend/src/assets/sources/scars-management-services.png b/frontend/src/assets/sources/scars-management-services.png
new file mode 100644
index 00000000..c87b6e0f
Binary files /dev/null and b/frontend/src/assets/sources/scars-management-services.png differ
diff --git a/frontend/src/assets/sources/schc-dental-clinic.png b/frontend/src/assets/sources/schc-dental-clinic.png
new file mode 100644
index 00000000..97319c5b
Binary files /dev/null and b/frontend/src/assets/sources/schc-dental-clinic.png differ
diff --git a/frontend/src/assets/sources/schuylkill-endoscopy-center.jpg b/frontend/src/assets/sources/schuylkill-endoscopy-center.jpg
new file mode 100644
index 00000000..ff55008d
Binary files /dev/null and b/frontend/src/assets/sources/schuylkill-endoscopy-center.jpg differ
diff --git a/frontend/src/assets/sources/scihp-employee.jpg b/frontend/src/assets/sources/scihp-employee.jpg
new file mode 100644
index 00000000..41439aeb
Binary files /dev/null and b/frontend/src/assets/sources/scihp-employee.jpg differ
diff --git a/frontend/src/assets/sources/scituate-podiatry-group-inc.png b/frontend/src/assets/sources/scituate-podiatry-group-inc.png
new file mode 100644
index 00000000..12466296
Binary files /dev/null and b/frontend/src/assets/sources/scituate-podiatry-group-inc.png differ
diff --git a/frontend/src/assets/sources/scotland-memorial-hospital.jpg b/frontend/src/assets/sources/scotland-memorial-hospital.jpg
new file mode 100644
index 00000000..3ee592d2
Binary files /dev/null and b/frontend/src/assets/sources/scotland-memorial-hospital.jpg differ
diff --git a/frontend/src/assets/sources/scott-and-nathan-rickoff-dpms.png b/frontend/src/assets/sources/scott-and-nathan-rickoff-dpms.png
new file mode 100644
index 00000000..f925fd4f
Binary files /dev/null and b/frontend/src/assets/sources/scott-and-nathan-rickoff-dpms.png differ
diff --git a/frontend/src/assets/sources/sea-view-pediatric-medical-assoc.jpg b/frontend/src/assets/sources/sea-view-pediatric-medical-assoc.jpg
new file mode 100644
index 00000000..b3ad905e
Binary files /dev/null and b/frontend/src/assets/sources/sea-view-pediatric-medical-assoc.jpg differ
diff --git a/frontend/src/assets/sources/seacoast-ortho-andsports-med-llc.jpg b/frontend/src/assets/sources/seacoast-ortho-andsports-med-llc.jpg
new file mode 100644
index 00000000..93840019
Binary files /dev/null and b/frontend/src/assets/sources/seacoast-ortho-andsports-med-llc.jpg differ
diff --git a/frontend/src/assets/sources/seacoast-ortho-assoc-and-sports-med-llc.jpg b/frontend/src/assets/sources/seacoast-ortho-assoc-and-sports-med-llc.jpg
new file mode 100644
index 00000000..93840019
Binary files /dev/null and b/frontend/src/assets/sources/seacoast-ortho-assoc-and-sports-med-llc.jpg differ
diff --git a/frontend/src/assets/sources/seacoast-orthopedic-associates.png b/frontend/src/assets/sources/seacoast-orthopedic-associates.png
new file mode 100644
index 00000000..ae021061
Binary files /dev/null and b/frontend/src/assets/sources/seacoast-orthopedic-associates.png differ
diff --git a/frontend/src/assets/sources/seasons-center-for-community-mental-health.png b/frontend/src/assets/sources/seasons-center-for-community-mental-health.png
new file mode 100644
index 00000000..6f6a4762
Binary files /dev/null and b/frontend/src/assets/sources/seasons-center-for-community-mental-health.png differ
diff --git a/frontend/src/assets/sources/seattle-obstetrics-and-gynecology.jpg b/frontend/src/assets/sources/seattle-obstetrics-and-gynecology.jpg
new file mode 100644
index 00000000..87da7a6b
Binary files /dev/null and b/frontend/src/assets/sources/seattle-obstetrics-and-gynecology.jpg differ
diff --git a/frontend/src/assets/sources/seattle-orthopaedic-and-fracture-clinic.png b/frontend/src/assets/sources/seattle-orthopaedic-and-fracture-clinic.png
new file mode 100644
index 00000000..492f4833
Binary files /dev/null and b/frontend/src/assets/sources/seattle-orthopaedic-and-fracture-clinic.png differ
diff --git a/frontend/src/assets/sources/seattle-orthopedic-center-pt.png b/frontend/src/assets/sources/seattle-orthopedic-center-pt.png
new file mode 100644
index 00000000..492f4833
Binary files /dev/null and b/frontend/src/assets/sources/seattle-orthopedic-center-pt.png differ
diff --git a/frontend/src/assets/sources/seiff-center-for-aesthetic-and-reconstructive-surgery.png b/frontend/src/assets/sources/seiff-center-for-aesthetic-and-reconstructive-surgery.png
new file mode 100644
index 00000000..b2cca431
Binary files /dev/null and b/frontend/src/assets/sources/seiff-center-for-aesthetic-and-reconstructive-surgery.png differ
diff --git a/frontend/src/assets/sources/semler-dermatology-inc.jpeg b/frontend/src/assets/sources/semler-dermatology-inc.jpeg
new file mode 100644
index 00000000..f031428a
Binary files /dev/null and b/frontend/src/assets/sources/semler-dermatology-inc.jpeg differ
diff --git a/frontend/src/assets/sources/senior-care-medical-assoc-inc.jpg b/frontend/src/assets/sources/senior-care-medical-assoc-inc.jpg
new file mode 100644
index 00000000..795880f3
Binary files /dev/null and b/frontend/src/assets/sources/senior-care-medical-assoc-inc.jpg differ
diff --git a/frontend/src/assets/sources/senior-clinic.png b/frontend/src/assets/sources/senior-clinic.png
new file mode 100644
index 00000000..8200cdc9
Binary files /dev/null and b/frontend/src/assets/sources/senior-clinic.png differ
diff --git a/frontend/src/assets/sources/senta-clinic.jpeg b/frontend/src/assets/sources/senta-clinic.jpeg
new file mode 100644
index 00000000..de247d9d
Binary files /dev/null and b/frontend/src/assets/sources/senta-clinic.jpeg differ
diff --git a/frontend/src/assets/sources/seven-hills-surgery-center-llc.png b/frontend/src/assets/sources/seven-hills-surgery-center-llc.png
new file mode 100644
index 00000000..8dd108e1
Binary files /dev/null and b/frontend/src/assets/sources/seven-hills-surgery-center-llc.png differ
diff --git a/frontend/src/assets/sources/seven-star-endocrinology.png b/frontend/src/assets/sources/seven-star-endocrinology.png
new file mode 100644
index 00000000..c054bf49
Binary files /dev/null and b/frontend/src/assets/sources/seven-star-endocrinology.png differ
diff --git a/frontend/src/assets/sources/seven-star-family-care.png b/frontend/src/assets/sources/seven-star-family-care.png
new file mode 100644
index 00000000..c054bf49
Binary files /dev/null and b/frontend/src/assets/sources/seven-star-family-care.png differ
diff --git a/frontend/src/assets/sources/seven-star-ob-gyn.png b/frontend/src/assets/sources/seven-star-ob-gyn.png
new file mode 100644
index 00000000..c054bf49
Binary files /dev/null and b/frontend/src/assets/sources/seven-star-ob-gyn.png differ
diff --git a/frontend/src/assets/sources/shah-associates-md-llc.png b/frontend/src/assets/sources/shah-associates-md-llc.png
new file mode 100644
index 00000000..6bc69a8c
Binary files /dev/null and b/frontend/src/assets/sources/shah-associates-md-llc.png differ
diff --git a/frontend/src/assets/sources/sharon-regional-health-system.png b/frontend/src/assets/sources/sharon-regional-health-system.png
new file mode 100644
index 00000000..092bad3b
Binary files /dev/null and b/frontend/src/assets/sources/sharon-regional-health-system.png differ
diff --git a/frontend/src/assets/sources/sharpe-medical-consulting.png b/frontend/src/assets/sources/sharpe-medical-consulting.png
new file mode 100644
index 00000000..6346e25e
Binary files /dev/null and b/frontend/src/assets/sources/sharpe-medical-consulting.png differ
diff --git a/frontend/src/assets/sources/shasta-community-health-center.png b/frontend/src/assets/sources/shasta-community-health-center.png
new file mode 100644
index 00000000..97319c5b
Binary files /dev/null and b/frontend/src/assets/sources/shasta-community-health-center.png differ
diff --git a/frontend/src/assets/sources/shawnee-christian-healthcare-center.png b/frontend/src/assets/sources/shawnee-christian-healthcare-center.png
new file mode 100644
index 00000000..6b97f687
Binary files /dev/null and b/frontend/src/assets/sources/shawnee-christian-healthcare-center.png differ
diff --git a/frontend/src/assets/sources/sheboygan-medical-center.png b/frontend/src/assets/sources/sheboygan-medical-center.png
new file mode 100644
index 00000000..faaf9863
Binary files /dev/null and b/frontend/src/assets/sources/sheboygan-medical-center.png differ
diff --git a/frontend/src/assets/sources/shepard-eye-center-asc.jpg b/frontend/src/assets/sources/shepard-eye-center-asc.jpg
new file mode 100644
index 00000000..2f01c82a
Binary files /dev/null and b/frontend/src/assets/sources/shepard-eye-center-asc.jpg differ
diff --git a/frontend/src/assets/sources/shepherd-eye-center.jpg b/frontend/src/assets/sources/shepherd-eye-center.jpg
new file mode 100644
index 00000000..2f01c82a
Binary files /dev/null and b/frontend/src/assets/sources/shepherd-eye-center.jpg differ
diff --git a/frontend/src/assets/sources/shepherd-eye-surgicenter.jpg b/frontend/src/assets/sources/shepherd-eye-surgicenter.jpg
new file mode 100644
index 00000000..2f01c82a
Binary files /dev/null and b/frontend/src/assets/sources/shepherd-eye-surgicenter.jpg differ
diff --git a/frontend/src/assets/sources/shepherds-hope.png b/frontend/src/assets/sources/shepherds-hope.png
new file mode 100644
index 00000000..f08db17d
Binary files /dev/null and b/frontend/src/assets/sources/shepherds-hope.png differ
diff --git a/frontend/src/assets/sources/shirley-ryan-abilitylab.png b/frontend/src/assets/sources/shirley-ryan-abilitylab.png
new file mode 100644
index 00000000..db2d555f
Binary files /dev/null and b/frontend/src/assets/sources/shirley-ryan-abilitylab.png differ
diff --git a/frontend/src/assets/sources/shohet-ear-associates-medical-group-inc.png b/frontend/src/assets/sources/shohet-ear-associates-medical-group-inc.png
new file mode 100644
index 00000000..6f8e2840
Binary files /dev/null and b/frontend/src/assets/sources/shohet-ear-associates-medical-group-inc.png differ
diff --git a/frontend/src/assets/sources/shore-medical-center.png b/frontend/src/assets/sources/shore-medical-center.png
new file mode 100644
index 00000000..9aab98c1
Binary files /dev/null and b/frontend/src/assets/sources/shore-medical-center.png differ
diff --git a/frontend/src/assets/sources/shreveport-internal-medicine.png b/frontend/src/assets/sources/shreveport-internal-medicine.png
new file mode 100644
index 00000000..d4ab507d
Binary files /dev/null and b/frontend/src/assets/sources/shreveport-internal-medicine.png differ
diff --git a/frontend/src/assets/sources/shriners-hospitals-for-children.png b/frontend/src/assets/sources/shriners-hospitals-for-children.png
new file mode 100644
index 00000000..60a6e2f0
Binary files /dev/null and b/frontend/src/assets/sources/shriners-hospitals-for-children.png differ
diff --git a/frontend/src/assets/sources/sicher-foot-center.png b/frontend/src/assets/sources/sicher-foot-center.png
new file mode 100644
index 00000000..3e303a62
Binary files /dev/null and b/frontend/src/assets/sources/sicher-foot-center.png differ
diff --git a/frontend/src/assets/sources/sierra-madre-community-medical-group.png b/frontend/src/assets/sources/sierra-madre-community-medical-group.png
new file mode 100644
index 00000000..6aae33c4
Binary files /dev/null and b/frontend/src/assets/sources/sierra-madre-community-medical-group.png differ
diff --git a/frontend/src/assets/sources/sierra-medical-group.png b/frontend/src/assets/sources/sierra-medical-group.png
new file mode 100644
index 00000000..105c743c
Binary files /dev/null and b/frontend/src/assets/sources/sierra-medical-group.png differ
diff --git a/frontend/src/assets/sources/sight-eye-clinic-p-c.png b/frontend/src/assets/sources/sight-eye-clinic-p-c.png
new file mode 100644
index 00000000..8ba4e5f8
Binary files /dev/null and b/frontend/src/assets/sources/sight-eye-clinic-p-c.png differ
diff --git a/frontend/src/assets/sources/signature-dermatology-and-aesthetics.svg b/frontend/src/assets/sources/signature-dermatology-and-aesthetics.svg
new file mode 100644
index 00000000..66f76f75
--- /dev/null
+++ b/frontend/src/assets/sources/signature-dermatology-and-aesthetics.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/signature-medical-group-of-kc.png b/frontend/src/assets/sources/signature-medical-group-of-kc.png
new file mode 100644
index 00000000..f78e5d0f
Binary files /dev/null and b/frontend/src/assets/sources/signature-medical-group-of-kc.png differ
diff --git a/frontend/src/assets/sources/signature-orthopedics.jpg b/frontend/src/assets/sources/signature-orthopedics.jpg
new file mode 100644
index 00000000..edeb706f
Binary files /dev/null and b/frontend/src/assets/sources/signature-orthopedics.jpg differ
diff --git a/frontend/src/assets/sources/sihc-behavioral-health.png b/frontend/src/assets/sources/sihc-behavioral-health.png
new file mode 100644
index 00000000..ab016fff
Binary files /dev/null and b/frontend/src/assets/sources/sihc-behavioral-health.png differ
diff --git a/frontend/src/assets/sources/siletz-community-health-clinic.jpg b/frontend/src/assets/sources/siletz-community-health-clinic.jpg
new file mode 100644
index 00000000..4814a65f
Binary files /dev/null and b/frontend/src/assets/sources/siletz-community-health-clinic.jpg differ
diff --git a/frontend/src/assets/sources/silver-cross-hospital.svg b/frontend/src/assets/sources/silver-cross-hospital.svg
new file mode 100644
index 00000000..0418cf7b
--- /dev/null
+++ b/frontend/src/assets/sources/silver-cross-hospital.svg
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/simi-family-medical-group.jpg b/frontend/src/assets/sources/simi-family-medical-group.jpg
new file mode 100644
index 00000000..06f8bd5f
Binary files /dev/null and b/frontend/src/assets/sources/simi-family-medical-group.jpg differ
diff --git a/frontend/src/assets/sources/simi-medical-group-inc.jpg b/frontend/src/assets/sources/simi-medical-group-inc.jpg
new file mode 100644
index 00000000..06f8bd5f
Binary files /dev/null and b/frontend/src/assets/sources/simi-medical-group-inc.jpg differ
diff --git a/frontend/src/assets/sources/simi-obstetrics-and-gynecology.jpeg b/frontend/src/assets/sources/simi-obstetrics-and-gynecology.jpeg
new file mode 100644
index 00000000..c8b02d60
Binary files /dev/null and b/frontend/src/assets/sources/simi-obstetrics-and-gynecology.jpeg differ
diff --git a/frontend/src/assets/sources/simmons-care-clinic.png b/frontend/src/assets/sources/simmons-care-clinic.png
new file mode 100644
index 00000000..db83519a
Binary files /dev/null and b/frontend/src/assets/sources/simmons-care-clinic.png differ
diff --git a/frontend/src/assets/sources/singh-surgical-associates.svg b/frontend/src/assets/sources/singh-surgical-associates.svg
new file mode 100644
index 00000000..94811d51
--- /dev/null
+++ b/frontend/src/assets/sources/singh-surgical-associates.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/siskiyou-community-health-center.png b/frontend/src/assets/sources/siskiyou-community-health-center.png
new file mode 100644
index 00000000..6e6fc25e
Binary files /dev/null and b/frontend/src/assets/sources/siskiyou-community-health-center.png differ
diff --git a/frontend/src/assets/sources/skagit-northwest-orthopedics.png b/frontend/src/assets/sources/skagit-northwest-orthopedics.png
new file mode 100644
index 00000000..63069b85
Binary files /dev/null and b/frontend/src/assets/sources/skagit-northwest-orthopedics.png differ
diff --git a/frontend/src/assets/sources/skagit-northwest-pt-and-ot.png b/frontend/src/assets/sources/skagit-northwest-pt-and-ot.png
new file mode 100644
index 00000000..dd4e422c
Binary files /dev/null and b/frontend/src/assets/sources/skagit-northwest-pt-and-ot.png differ
diff --git a/frontend/src/assets/sources/skagit-valley-obh.png b/frontend/src/assets/sources/skagit-valley-obh.png
new file mode 100644
index 00000000..1af57eec
Binary files /dev/null and b/frontend/src/assets/sources/skagit-valley-obh.png differ
diff --git a/frontend/src/assets/sources/skinscience.png b/frontend/src/assets/sources/skinscience.png
new file mode 100644
index 00000000..bff0f2a4
Binary files /dev/null and b/frontend/src/assets/sources/skinscience.png differ
diff --git a/frontend/src/assets/sources/skyline-hospital.png b/frontend/src/assets/sources/skyline-hospital.png
new file mode 100644
index 00000000..0c9498e9
Binary files /dev/null and b/frontend/src/assets/sources/skyline-hospital.png differ
diff --git a/frontend/src/assets/sources/sleepmanatee.jpg b/frontend/src/assets/sources/sleepmanatee.jpg
new file mode 100644
index 00000000..0f588be9
Binary files /dev/null and b/frontend/src/assets/sources/sleepmanatee.jpg differ
diff --git a/frontend/src/assets/sources/slocum-asc.svg b/frontend/src/assets/sources/slocum-asc.svg
new file mode 100644
index 00000000..7980cd40
--- /dev/null
+++ b/frontend/src/assets/sources/slocum-asc.svg
@@ -0,0 +1,5305 @@
+
+
+
+
+
+
+
+
+
+
+]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/slocum-orthopedics-pc.svg b/frontend/src/assets/sources/slocum-orthopedics-pc.svg
new file mode 100644
index 00000000..7980cd40
--- /dev/null
+++ b/frontend/src/assets/sources/slocum-orthopedics-pc.svg
@@ -0,0 +1,5305 @@
+
+
+
+
+
+
+
+
+
+
+]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/smoky-mountain-foot-clinic.png b/frontend/src/assets/sources/smoky-mountain-foot-clinic.png
new file mode 100644
index 00000000..b320a379
Binary files /dev/null and b/frontend/src/assets/sources/smoky-mountain-foot-clinic.png differ
diff --git a/frontend/src/assets/sources/snapfinger-vascular-care.png b/frontend/src/assets/sources/snapfinger-vascular-care.png
new file mode 100644
index 00000000..632c67b9
Binary files /dev/null and b/frontend/src/assets/sources/snapfinger-vascular-care.png differ
diff --git a/frontend/src/assets/sources/so-ortho-assoc-ortho-inst-of-w-ky.jpg b/frontend/src/assets/sources/so-ortho-assoc-ortho-inst-of-w-ky.jpg
new file mode 100644
index 00000000..2d9c007b
Binary files /dev/null and b/frontend/src/assets/sources/so-ortho-assoc-ortho-inst-of-w-ky.jpg differ
diff --git a/frontend/src/assets/sources/solano-dermatology-associates.png b/frontend/src/assets/sources/solano-dermatology-associates.png
new file mode 100644
index 00000000..32545d3b
Binary files /dev/null and b/frontend/src/assets/sources/solano-dermatology-associates.png differ
diff --git a/frontend/src/assets/sources/solidaritus.png b/frontend/src/assets/sources/solidaritus.png
new file mode 100644
index 00000000..682e35a8
Binary files /dev/null and b/frontend/src/assets/sources/solidaritus.png differ
diff --git a/frontend/src/assets/sources/sonoma-county-indian-health-project.png b/frontend/src/assets/sources/sonoma-county-indian-health-project.png
new file mode 100644
index 00000000..f5467c1e
Binary files /dev/null and b/frontend/src/assets/sources/sonoma-county-indian-health-project.png differ
diff --git a/frontend/src/assets/sources/sonrise-pediatrics-and-wellness.png b/frontend/src/assets/sources/sonrise-pediatrics-and-wellness.png
new file mode 100644
index 00000000..5d1ea5a6
Binary files /dev/null and b/frontend/src/assets/sources/sonrise-pediatrics-and-wellness.png differ
diff --git a/frontend/src/assets/sources/sound-vascular-ps.png b/frontend/src/assets/sources/sound-vascular-ps.png
new file mode 100644
index 00000000..e763003d
Binary files /dev/null and b/frontend/src/assets/sources/sound-vascular-ps.png differ
diff --git a/frontend/src/assets/sources/south-bay-family-health-care.png b/frontend/src/assets/sources/south-bay-family-health-care.png
new file mode 100644
index 00000000..a14ae7ec
Binary files /dev/null and b/frontend/src/assets/sources/south-bay-family-health-care.png differ
diff --git a/frontend/src/assets/sources/south-central-family-health-center.png b/frontend/src/assets/sources/south-central-family-health-center.png
new file mode 100644
index 00000000..ae491b85
Binary files /dev/null and b/frontend/src/assets/sources/south-central-family-health-center.png differ
diff --git a/frontend/src/assets/sources/south-central-regional-medical-center.png b/frontend/src/assets/sources/south-central-regional-medical-center.png
new file mode 100644
index 00000000..ca06680f
Binary files /dev/null and b/frontend/src/assets/sources/south-central-regional-medical-center.png differ
diff --git a/frontend/src/assets/sources/south-east-eye-laser-and-surgery-center.png b/frontend/src/assets/sources/south-east-eye-laser-and-surgery-center.png
new file mode 100644
index 00000000..eaa068e2
Binary files /dev/null and b/frontend/src/assets/sources/south-east-eye-laser-and-surgery-center.png differ
diff --git a/frontend/src/assets/sources/south-east-eye.jpeg b/frontend/src/assets/sources/south-east-eye.jpeg
new file mode 100644
index 00000000..77c27f0f
Binary files /dev/null and b/frontend/src/assets/sources/south-east-eye.jpeg differ
diff --git a/frontend/src/assets/sources/south-florida-interventional-inc.jpg b/frontend/src/assets/sources/south-florida-interventional-inc.jpg
new file mode 100644
index 00000000..74d594bb
Binary files /dev/null and b/frontend/src/assets/sources/south-florida-interventional-inc.jpg differ
diff --git a/frontend/src/assets/sources/south-florida-laser-eye-center-llc.png b/frontend/src/assets/sources/south-florida-laser-eye-center-llc.png
new file mode 100644
index 00000000..95f98f23
Binary files /dev/null and b/frontend/src/assets/sources/south-florida-laser-eye-center-llc.png differ
diff --git a/frontend/src/assets/sources/south-jersey-eye-physicians-pa.jpg b/frontend/src/assets/sources/south-jersey-eye-physicians-pa.jpg
new file mode 100644
index 00000000..90156c0b
Binary files /dev/null and b/frontend/src/assets/sources/south-jersey-eye-physicians-pa.jpg differ
diff --git a/frontend/src/assets/sources/south-shore-neurologic-associates.png b/frontend/src/assets/sources/south-shore-neurologic-associates.png
new file mode 100644
index 00000000..f8c321ea
Binary files /dev/null and b/frontend/src/assets/sources/south-shore-neurologic-associates.png differ
diff --git a/frontend/src/assets/sources/south-texas-childrens-health-center.png b/frontend/src/assets/sources/south-texas-childrens-health-center.png
new file mode 100644
index 00000000..e74fe8d1
Binary files /dev/null and b/frontend/src/assets/sources/south-texas-childrens-health-center.png differ
diff --git a/frontend/src/assets/sources/south-texas-eye-consultants-pllc.png b/frontend/src/assets/sources/south-texas-eye-consultants-pllc.png
new file mode 100644
index 00000000..cbb42591
Binary files /dev/null and b/frontend/src/assets/sources/south-texas-eye-consultants-pllc.png differ
diff --git a/frontend/src/assets/sources/south-texas-infectious-diseases-consultants-pa.jpg b/frontend/src/assets/sources/south-texas-infectious-diseases-consultants-pa.jpg
new file mode 100644
index 00000000..972bb558
Binary files /dev/null and b/frontend/src/assets/sources/south-texas-infectious-diseases-consultants-pa.jpg differ
diff --git a/frontend/src/assets/sources/south-texas-rural-health-services-inc.png b/frontend/src/assets/sources/south-texas-rural-health-services-inc.png
new file mode 100644
index 00000000..cc4e41cf
Binary files /dev/null and b/frontend/src/assets/sources/south-texas-rural-health-services-inc.png differ
diff --git a/frontend/src/assets/sources/south-zanesville-family-medical-center.svg b/frontend/src/assets/sources/south-zanesville-family-medical-center.svg
new file mode 100644
index 00000000..e80fe4a5
--- /dev/null
+++ b/frontend/src/assets/sources/south-zanesville-family-medical-center.svg
@@ -0,0 +1,119 @@
+
+
+ 9B647E2E-45E7-4DEB-9932-9D427CB7C400
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/southampton-hospital.png b/frontend/src/assets/sources/southampton-hospital.png
new file mode 100644
index 00000000..a27759a1
Binary files /dev/null and b/frontend/src/assets/sources/southampton-hospital.png differ
diff --git a/frontend/src/assets/sources/southdale-pediatrics-assoc-ltd.svg b/frontend/src/assets/sources/southdale-pediatrics-assoc-ltd.svg
new file mode 100644
index 00000000..c70a5ffa
--- /dev/null
+++ b/frontend/src/assets/sources/southdale-pediatrics-assoc-ltd.svg
@@ -0,0 +1,208 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/southeast-georgia-health-system.png b/frontend/src/assets/sources/southeast-georgia-health-system.png
new file mode 100644
index 00000000..ec904b00
Binary files /dev/null and b/frontend/src/assets/sources/southeast-georgia-health-system.png differ
diff --git a/frontend/src/assets/sources/southeast-inc.svg b/frontend/src/assets/sources/southeast-inc.svg
new file mode 100644
index 00000000..431bfdfd
--- /dev/null
+++ b/frontend/src/assets/sources/southeast-inc.svg
@@ -0,0 +1,174 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/southern-alabama-surgery-llc.png b/frontend/src/assets/sources/southern-alabama-surgery-llc.png
new file mode 100644
index 00000000..b8867ed7
Binary files /dev/null and b/frontend/src/assets/sources/southern-alabama-surgery-llc.png differ
diff --git a/frontend/src/assets/sources/southern-california-medical-center-inc.png b/frontend/src/assets/sources/southern-california-medical-center-inc.png
new file mode 100644
index 00000000..cbbe0e39
Binary files /dev/null and b/frontend/src/assets/sources/southern-california-medical-center-inc.png differ
diff --git a/frontend/src/assets/sources/southern-illinois-dermatology.png b/frontend/src/assets/sources/southern-illinois-dermatology.png
new file mode 100644
index 00000000..09549253
Binary files /dev/null and b/frontend/src/assets/sources/southern-illinois-dermatology.png differ
diff --git a/frontend/src/assets/sources/southern-indian-health-council-inc.png b/frontend/src/assets/sources/southern-indian-health-council-inc.png
new file mode 100644
index 00000000..fe8d8e3e
Binary files /dev/null and b/frontend/src/assets/sources/southern-indian-health-council-inc.png differ
diff --git a/frontend/src/assets/sources/southern-maryland-electric-coop-inc.svg b/frontend/src/assets/sources/southern-maryland-electric-coop-inc.svg
new file mode 100644
index 00000000..2286ce98
--- /dev/null
+++ b/frontend/src/assets/sources/southern-maryland-electric-coop-inc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/southern-orthopaedics-and-sports-med-asso.png b/frontend/src/assets/sources/southern-orthopaedics-and-sports-med-asso.png
new file mode 100644
index 00000000..930bf2dc
Binary files /dev/null and b/frontend/src/assets/sources/southern-orthopaedics-and-sports-med-asso.png differ
diff --git a/frontend/src/assets/sources/southern-surgery-center-llc.jpeg b/frontend/src/assets/sources/southern-surgery-center-llc.jpeg
new file mode 100644
index 00000000..fb0d8923
Binary files /dev/null and b/frontend/src/assets/sources/southern-surgery-center-llc.jpeg differ
diff --git a/frontend/src/assets/sources/southern-vitreoretinal-associates-pl.png b/frontend/src/assets/sources/southern-vitreoretinal-associates-pl.png
new file mode 100644
index 00000000..25cc95e0
Binary files /dev/null and b/frontend/src/assets/sources/southern-vitreoretinal-associates-pl.png differ
diff --git a/frontend/src/assets/sources/southfield-surgery-center-llc.jpg b/frontend/src/assets/sources/southfield-surgery-center-llc.jpg
new file mode 100644
index 00000000..7e104f21
Binary files /dev/null and b/frontend/src/assets/sources/southfield-surgery-center-llc.jpg differ
diff --git a/frontend/src/assets/sources/southside-family-practice.png b/frontend/src/assets/sources/southside-family-practice.png
new file mode 100644
index 00000000..97050b3b
Binary files /dev/null and b/frontend/src/assets/sources/southside-family-practice.png differ
diff --git a/frontend/src/assets/sources/southwest-eye-institute.png b/frontend/src/assets/sources/southwest-eye-institute.png
new file mode 100644
index 00000000..0da92017
Binary files /dev/null and b/frontend/src/assets/sources/southwest-eye-institute.png differ
diff --git a/frontend/src/assets/sources/southwest-foot-and-ankle-center-plc.png b/frontend/src/assets/sources/southwest-foot-and-ankle-center-plc.png
new file mode 100644
index 00000000..aa11e62f
Binary files /dev/null and b/frontend/src/assets/sources/southwest-foot-and-ankle-center-plc.png differ
diff --git a/frontend/src/assets/sources/southwest-general-health-center.png b/frontend/src/assets/sources/southwest-general-health-center.png
new file mode 100644
index 00000000..029087f8
Binary files /dev/null and b/frontend/src/assets/sources/southwest-general-health-center.png differ
diff --git a/frontend/src/assets/sources/southwest-memorial-hospital.jpg b/frontend/src/assets/sources/southwest-memorial-hospital.jpg
new file mode 100644
index 00000000..cea230dc
Binary files /dev/null and b/frontend/src/assets/sources/southwest-memorial-hospital.jpg differ
diff --git a/frontend/src/assets/sources/southwest-pulmonary-associates-llp.jpeg b/frontend/src/assets/sources/southwest-pulmonary-associates-llp.jpeg
new file mode 100644
index 00000000..710c3b61
Binary files /dev/null and b/frontend/src/assets/sources/southwest-pulmonary-associates-llp.jpeg differ
diff --git a/frontend/src/assets/sources/southwestern-eye-center.jpg b/frontend/src/assets/sources/southwestern-eye-center.jpg
new file mode 100644
index 00000000..668e8b40
Binary files /dev/null and b/frontend/src/assets/sources/southwestern-eye-center.jpg differ
diff --git a/frontend/src/assets/sources/space-coast-endoscopy-center.png b/frontend/src/assets/sources/space-coast-endoscopy-center.png
new file mode 100644
index 00000000..df7ee0af
Binary files /dev/null and b/frontend/src/assets/sources/space-coast-endoscopy-center.png differ
diff --git a/frontend/src/assets/sources/specialists-in-gastroenterology.png b/frontend/src/assets/sources/specialists-in-gastroenterology.png
new file mode 100644
index 00000000..326c6637
Binary files /dev/null and b/frontend/src/assets/sources/specialists-in-gastroenterology.png differ
diff --git a/frontend/src/assets/sources/specialists-in-spine-surgery.png b/frontend/src/assets/sources/specialists-in-spine-surgery.png
new file mode 100644
index 00000000..40ed078a
Binary files /dev/null and b/frontend/src/assets/sources/specialists-in-spine-surgery.png differ
diff --git a/frontend/src/assets/sources/specialty-clinics.png b/frontend/src/assets/sources/specialty-clinics.png
new file mode 100644
index 00000000..df6e17b0
Binary files /dev/null and b/frontend/src/assets/sources/specialty-clinics.png differ
diff --git a/frontend/src/assets/sources/specialty-surgical-ctr-of-n-brunswick.png b/frontend/src/assets/sources/specialty-surgical-ctr-of-n-brunswick.png
new file mode 100644
index 00000000..d3fc4130
Binary files /dev/null and b/frontend/src/assets/sources/specialty-surgical-ctr-of-n-brunswick.png differ
diff --git a/frontend/src/assets/sources/spectrum-human-services.png b/frontend/src/assets/sources/spectrum-human-services.png
new file mode 100644
index 00000000..56b5facb
Binary files /dev/null and b/frontend/src/assets/sources/spectrum-human-services.png differ
diff --git a/frontend/src/assets/sources/spine-and-scoliosis-specialists.jpg b/frontend/src/assets/sources/spine-and-scoliosis-specialists.jpg
new file mode 100644
index 00000000..61697882
Binary files /dev/null and b/frontend/src/assets/sources/spine-and-scoliosis-specialists.jpg differ
diff --git a/frontend/src/assets/sources/spiritrust-lutheran-life.png b/frontend/src/assets/sources/spiritrust-lutheran-life.png
new file mode 100644
index 00000000..1be36f17
Binary files /dev/null and b/frontend/src/assets/sources/spiritrust-lutheran-life.png differ
diff --git a/frontend/src/assets/sources/spokane-eye-clinic.jpeg b/frontend/src/assets/sources/spokane-eye-clinic.jpeg
new file mode 100644
index 00000000..4611d22c
Binary files /dev/null and b/frontend/src/assets/sources/spokane-eye-clinic.jpeg differ
diff --git a/frontend/src/assets/sources/spokane-eye-surgery-center.svg b/frontend/src/assets/sources/spokane-eye-surgery-center.svg
new file mode 100644
index 00000000..b23b043a
--- /dev/null
+++ b/frontend/src/assets/sources/spokane-eye-surgery-center.svg
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/spokane-optical.svg b/frontend/src/assets/sources/spokane-optical.svg
new file mode 100644
index 00000000..b23b043a
--- /dev/null
+++ b/frontend/src/assets/sources/spokane-optical.svg
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/sports-orthopedics-and-spine.png b/frontend/src/assets/sources/sports-orthopedics-and-spine.png
new file mode 100644
index 00000000..aa3dfd18
Binary files /dev/null and b/frontend/src/assets/sources/sports-orthopedics-and-spine.png differ
diff --git a/frontend/src/assets/sources/spring-ent-llc.png b/frontend/src/assets/sources/spring-ent-llc.png
new file mode 100644
index 00000000..fbd456f9
Binary files /dev/null and b/frontend/src/assets/sources/spring-ent-llc.png differ
diff --git a/frontend/src/assets/sources/spring-park-surgery-center.png b/frontend/src/assets/sources/spring-park-surgery-center.png
new file mode 100644
index 00000000..897f5ed1
Binary files /dev/null and b/frontend/src/assets/sources/spring-park-surgery-center.png differ
diff --git a/frontend/src/assets/sources/spring-street-dermatology.svg b/frontend/src/assets/sources/spring-street-dermatology.svg
new file mode 100644
index 00000000..a759ccf6
--- /dev/null
+++ b/frontend/src/assets/sources/spring-street-dermatology.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/springfield-cardiology.png b/frontend/src/assets/sources/springfield-cardiology.png
new file mode 100644
index 00000000..486a2489
Binary files /dev/null and b/frontend/src/assets/sources/springfield-cardiology.png differ
diff --git a/frontend/src/assets/sources/squaw-peak-surgical-facility.png b/frontend/src/assets/sources/squaw-peak-surgical-facility.png
new file mode 100644
index 00000000..0f96bfd8
Binary files /dev/null and b/frontend/src/assets/sources/squaw-peak-surgical-facility.png differ
diff --git a/frontend/src/assets/sources/squirrel-hill-health-center.jpg b/frontend/src/assets/sources/squirrel-hill-health-center.jpg
new file mode 100644
index 00000000..4938b770
Binary files /dev/null and b/frontend/src/assets/sources/squirrel-hill-health-center.jpg differ
diff --git a/frontend/src/assets/sources/st-augustine-anesthesia-partners-llc.png b/frontend/src/assets/sources/st-augustine-anesthesia-partners-llc.png
new file mode 100644
index 00000000..0ab6e166
Binary files /dev/null and b/frontend/src/assets/sources/st-augustine-anesthesia-partners-llc.png differ
diff --git a/frontend/src/assets/sources/st-clair-pulmonary-and-critical-care-pc.png b/frontend/src/assets/sources/st-clair-pulmonary-and-critical-care-pc.png
new file mode 100644
index 00000000..65facb19
Binary files /dev/null and b/frontend/src/assets/sources/st-clair-pulmonary-and-critical-care-pc.png differ
diff --git a/frontend/src/assets/sources/st-george-endoscopy.png b/frontend/src/assets/sources/st-george-endoscopy.png
new file mode 100644
index 00000000..8f811892
Binary files /dev/null and b/frontend/src/assets/sources/st-george-endoscopy.png differ
diff --git a/frontend/src/assets/sources/st-james-parish-hospital.png b/frontend/src/assets/sources/st-james-parish-hospital.png
new file mode 100644
index 00000000..9dac8694
Binary files /dev/null and b/frontend/src/assets/sources/st-james-parish-hospital.png differ
diff --git a/frontend/src/assets/sources/st-john-health-system-inc.png b/frontend/src/assets/sources/st-john-health-system-inc.png
new file mode 100644
index 00000000..80abae06
Binary files /dev/null and b/frontend/src/assets/sources/st-john-health-system-inc.png differ
diff --git a/frontend/src/assets/sources/st-john-medical-center.svg b/frontend/src/assets/sources/st-john-medical-center.svg
new file mode 100644
index 00000000..a1af01aa
--- /dev/null
+++ b/frontend/src/assets/sources/st-john-medical-center.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/st-johns-medical-center.png b/frontend/src/assets/sources/st-johns-medical-center.png
new file mode 100644
index 00000000..00140cb7
Binary files /dev/null and b/frontend/src/assets/sources/st-johns-medical-center.png differ
diff --git a/frontend/src/assets/sources/st-josephs-ear-nose-throat-clinic-pllc.png b/frontend/src/assets/sources/st-josephs-ear-nose-throat-clinic-pllc.png
new file mode 100644
index 00000000..54e66049
Binary files /dev/null and b/frontend/src/assets/sources/st-josephs-ear-nose-throat-clinic-pllc.png differ
diff --git a/frontend/src/assets/sources/st-josephs-regional-medical-center.png b/frontend/src/assets/sources/st-josephs-regional-medical-center.png
new file mode 100644
index 00000000..3a1c8678
Binary files /dev/null and b/frontend/src/assets/sources/st-josephs-regional-medical-center.png differ
diff --git a/frontend/src/assets/sources/st-jude-childrens-research-hospital-inc.jpeg b/frontend/src/assets/sources/st-jude-childrens-research-hospital-inc.jpeg
new file mode 100644
index 00000000..5a1f1a1a
Binary files /dev/null and b/frontend/src/assets/sources/st-jude-childrens-research-hospital-inc.jpeg differ
diff --git a/frontend/src/assets/sources/st-louis-asc.png b/frontend/src/assets/sources/st-louis-asc.png
new file mode 100644
index 00000000..956c24c0
Binary files /dev/null and b/frontend/src/assets/sources/st-louis-asc.png differ
diff --git a/frontend/src/assets/sources/st-louis-kansas-city-carpenters-regional-council.png b/frontend/src/assets/sources/st-louis-kansas-city-carpenters-regional-council.png
new file mode 100644
index 00000000..c338cb56
Binary files /dev/null and b/frontend/src/assets/sources/st-louis-kansas-city-carpenters-regional-council.png differ
diff --git a/frontend/src/assets/sources/st-lukes-at-the-villages.png b/frontend/src/assets/sources/st-lukes-at-the-villages.png
new file mode 100644
index 00000000..c481dee7
Binary files /dev/null and b/frontend/src/assets/sources/st-lukes-at-the-villages.png differ
diff --git a/frontend/src/assets/sources/st-lukes-hospital.png b/frontend/src/assets/sources/st-lukes-hospital.png
new file mode 100644
index 00000000..0f9a73af
Binary files /dev/null and b/frontend/src/assets/sources/st-lukes-hospital.png differ
diff --git a/frontend/src/assets/sources/st-lukes-surg-facility-at-the-villages.png b/frontend/src/assets/sources/st-lukes-surg-facility-at-the-villages.png
new file mode 100644
index 00000000..59953177
Binary files /dev/null and b/frontend/src/assets/sources/st-lukes-surg-facility-at-the-villages.png differ
diff --git a/frontend/src/assets/sources/st-lukes.png b/frontend/src/assets/sources/st-lukes.png
new file mode 100644
index 00000000..1130aaa7
Binary files /dev/null and b/frontend/src/assets/sources/st-lukes.png differ
diff --git a/frontend/src/assets/sources/st-mary-medical-center-care-clinic.jpg b/frontend/src/assets/sources/st-mary-medical-center-care-clinic.jpg
new file mode 100644
index 00000000..eea71859
Binary files /dev/null and b/frontend/src/assets/sources/st-mary-medical-center-care-clinic.jpg differ
diff --git a/frontend/src/assets/sources/st-marys-hospital.jpg b/frontend/src/assets/sources/st-marys-hospital.jpg
new file mode 100644
index 00000000..7c5ba480
Binary files /dev/null and b/frontend/src/assets/sources/st-marys-hospital.jpg differ
diff --git a/frontend/src/assets/sources/st-marys-medical-center.png b/frontend/src/assets/sources/st-marys-medical-center.png
new file mode 100644
index 00000000..37d9c6b5
Binary files /dev/null and b/frontend/src/assets/sources/st-marys-medical-center.png differ
diff --git a/frontend/src/assets/sources/st-paul-allergy-and-asthma-pa.png b/frontend/src/assets/sources/st-paul-allergy-and-asthma-pa.png
new file mode 100644
index 00000000..928bbfdb
Binary files /dev/null and b/frontend/src/assets/sources/st-paul-allergy-and-asthma-pa.png differ
diff --git a/frontend/src/assets/sources/st-paul-ramsey-county-public-health.png b/frontend/src/assets/sources/st-paul-ramsey-county-public-health.png
new file mode 100644
index 00000000..2168b134
Binary files /dev/null and b/frontend/src/assets/sources/st-paul-ramsey-county-public-health.png differ
diff --git a/frontend/src/assets/sources/st-vincents-hospital.svg b/frontend/src/assets/sources/st-vincents-hospital.svg
new file mode 100644
index 00000000..7918c5aa
--- /dev/null
+++ b/frontend/src/assets/sources/st-vincents-hospital.svg
@@ -0,0 +1,106 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/st-vincents-medical-center.svg b/frontend/src/assets/sources/st-vincents-medical-center.svg
new file mode 100644
index 00000000..a1af01aa
--- /dev/null
+++ b/frontend/src/assets/sources/st-vincents-medical-center.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/stafford-district-hospital.png b/frontend/src/assets/sources/stafford-district-hospital.png
new file mode 100644
index 00000000..cc8d6056
Binary files /dev/null and b/frontend/src/assets/sources/stafford-district-hospital.png differ
diff --git a/frontend/src/assets/sources/star-asc.png b/frontend/src/assets/sources/star-asc.png
new file mode 100644
index 00000000..ab563945
Binary files /dev/null and b/frontend/src/assets/sources/star-asc.png differ
diff --git a/frontend/src/assets/sources/star-cardiology-care-pc.png b/frontend/src/assets/sources/star-cardiology-care-pc.png
new file mode 100644
index 00000000..e9d8ee93
Binary files /dev/null and b/frontend/src/assets/sources/star-cardiology-care-pc.png differ
diff --git a/frontend/src/assets/sources/star-therapy.png b/frontend/src/assets/sources/star-therapy.png
new file mode 100644
index 00000000..a09139d7
Binary files /dev/null and b/frontend/src/assets/sources/star-therapy.png differ
diff --git a/frontend/src/assets/sources/star-vascular-access-center.png b/frontend/src/assets/sources/star-vascular-access-center.png
new file mode 100644
index 00000000..ab563945
Binary files /dev/null and b/frontend/src/assets/sources/star-vascular-access-center.png differ
diff --git a/frontend/src/assets/sources/stark-ambulatory-surgery-center-llc.png b/frontend/src/assets/sources/stark-ambulatory-surgery-center-llc.png
new file mode 100644
index 00000000..da0d6812
Binary files /dev/null and b/frontend/src/assets/sources/stark-ambulatory-surgery-center-llc.png differ
diff --git a/frontend/src/assets/sources/stark-medical-specialties.png b/frontend/src/assets/sources/stark-medical-specialties.png
new file mode 100644
index 00000000..993a3c5d
Binary files /dev/null and b/frontend/src/assets/sources/stark-medical-specialties.png differ
diff --git a/frontend/src/assets/sources/statcare-outpatient.png b/frontend/src/assets/sources/statcare-outpatient.png
new file mode 100644
index 00000000..3b12b4bd
Binary files /dev/null and b/frontend/src/assets/sources/statcare-outpatient.png differ
diff --git a/frontend/src/assets/sources/state-of-delaware-health-and-social-services.png b/frontend/src/assets/sources/state-of-delaware-health-and-social-services.png
new file mode 100644
index 00000000..7f8a9ade
Binary files /dev/null and b/frontend/src/assets/sources/state-of-delaware-health-and-social-services.png differ
diff --git a/frontend/src/assets/sources/state-of-kansas.png b/frontend/src/assets/sources/state-of-kansas.png
new file mode 100644
index 00000000..3f36e6d1
Binary files /dev/null and b/frontend/src/assets/sources/state-of-kansas.png differ
diff --git a/frontend/src/assets/sources/state-of-new-mexico.png b/frontend/src/assets/sources/state-of-new-mexico.png
new file mode 100644
index 00000000..30c08037
Binary files /dev/null and b/frontend/src/assets/sources/state-of-new-mexico.png differ
diff --git a/frontend/src/assets/sources/stephen-c-spain-md.jpeg b/frontend/src/assets/sources/stephen-c-spain-md.jpeg
new file mode 100644
index 00000000..575adae0
Binary files /dev/null and b/frontend/src/assets/sources/stephen-c-spain-md.jpeg differ
diff --git a/frontend/src/assets/sources/stephen-j-ramey-md.jpg b/frontend/src/assets/sources/stephen-j-ramey-md.jpg
new file mode 100644
index 00000000..3575ab14
Binary files /dev/null and b/frontend/src/assets/sources/stephen-j-ramey-md.jpg differ
diff --git a/frontend/src/assets/sources/stephen-vile-m-d.png b/frontend/src/assets/sources/stephen-vile-m-d.png
new file mode 100644
index 00000000..ad4728a2
Binary files /dev/null and b/frontend/src/assets/sources/stephen-vile-m-d.png differ
diff --git a/frontend/src/assets/sources/stephenville-medical-and-surgical-clinic.jpg b/frontend/src/assets/sources/stephenville-medical-and-surgical-clinic.jpg
new file mode 100644
index 00000000..017b5b6b
Binary files /dev/null and b/frontend/src/assets/sources/stephenville-medical-and-surgical-clinic.jpg differ
diff --git a/frontend/src/assets/sources/sterling-area-health-center.png b/frontend/src/assets/sources/sterling-area-health-center.png
new file mode 100644
index 00000000..cf7b95b2
Binary files /dev/null and b/frontend/src/assets/sources/sterling-area-health-center.png differ
diff --git a/frontend/src/assets/sources/steven-delmaestro-m-d.png b/frontend/src/assets/sources/steven-delmaestro-m-d.png
new file mode 100644
index 00000000..ab12fd51
Binary files /dev/null and b/frontend/src/assets/sources/steven-delmaestro-m-d.png differ
diff --git a/frontend/src/assets/sources/stevens-county-hospital.jpg b/frontend/src/assets/sources/stevens-county-hospital.jpg
new file mode 100644
index 00000000..a80a319b
Binary files /dev/null and b/frontend/src/assets/sources/stevens-county-hospital.jpg differ
diff --git a/frontend/src/assets/sources/steward-health-care-system.jpg b/frontend/src/assets/sources/steward-health-care-system.jpg
new file mode 100644
index 00000000..7c92ea73
Binary files /dev/null and b/frontend/src/assets/sources/steward-health-care-system.jpg differ
diff --git a/frontend/src/assets/sources/stewart-john-a-md-pc.png b/frontend/src/assets/sources/stewart-john-a-md-pc.png
new file mode 100644
index 00000000..db97fd0c
Binary files /dev/null and b/frontend/src/assets/sources/stewart-john-a-md-pc.png differ
diff --git a/frontend/src/assets/sources/sth-orange-cty-out-patient-surgery-ctr.png b/frontend/src/assets/sources/sth-orange-cty-out-patient-surgery-ctr.png
new file mode 100644
index 00000000..281d0a18
Binary files /dev/null and b/frontend/src/assets/sources/sth-orange-cty-out-patient-surgery-ctr.png differ
diff --git a/frontend/src/assets/sources/stillwater-eyecare-center.png b/frontend/src/assets/sources/stillwater-eyecare-center.png
new file mode 100644
index 00000000..98c3f3fc
Binary files /dev/null and b/frontend/src/assets/sources/stillwater-eyecare-center.png differ
diff --git a/frontend/src/assets/sources/stillwater-medical-center-practice.png b/frontend/src/assets/sources/stillwater-medical-center-practice.png
new file mode 100644
index 00000000..98c3f3fc
Binary files /dev/null and b/frontend/src/assets/sources/stillwater-medical-center-practice.png differ
diff --git a/frontend/src/assets/sources/stonecrest-family-medicine.png b/frontend/src/assets/sources/stonecrest-family-medicine.png
new file mode 100644
index 00000000..1c47f185
Binary files /dev/null and b/frontend/src/assets/sources/stonecrest-family-medicine.png differ
diff --git a/frontend/src/assets/sources/stonewall-jackson-memorial-hospital.png b/frontend/src/assets/sources/stonewall-jackson-memorial-hospital.png
new file mode 100644
index 00000000..a278aa6d
Binary files /dev/null and b/frontend/src/assets/sources/stonewall-jackson-memorial-hospital.png differ
diff --git a/frontend/src/assets/sources/stony-brook-business-ventures-llc.png b/frontend/src/assets/sources/stony-brook-business-ventures-llc.png
new file mode 100644
index 00000000..3e06d25c
Binary files /dev/null and b/frontend/src/assets/sources/stony-brook-business-ventures-llc.png differ
diff --git a/frontend/src/assets/sources/stony-brook-university-hospital.png b/frontend/src/assets/sources/stony-brook-university-hospital.png
new file mode 100644
index 00000000..3e06d25c
Binary files /dev/null and b/frontend/src/assets/sources/stony-brook-university-hospital.png differ
diff --git a/frontend/src/assets/sources/sturdy-memorial-hospital.svg b/frontend/src/assets/sources/sturdy-memorial-hospital.svg
new file mode 100644
index 00000000..4456bab1
--- /dev/null
+++ b/frontend/src/assets/sources/sturdy-memorial-hospital.svg
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/su-and-chang-dermatology-associates-apmc.png b/frontend/src/assets/sources/su-and-chang-dermatology-associates-apmc.png
new file mode 100644
index 00000000..6bc2c64e
Binary files /dev/null and b/frontend/src/assets/sources/su-and-chang-dermatology-associates-apmc.png differ
diff --git a/frontend/src/assets/sources/suburban-foot-physicians.png b/frontend/src/assets/sources/suburban-foot-physicians.png
new file mode 100644
index 00000000..312b0c43
Binary files /dev/null and b/frontend/src/assets/sources/suburban-foot-physicians.png differ
diff --git a/frontend/src/assets/sources/suburban-medical-group-llc.png b/frontend/src/assets/sources/suburban-medical-group-llc.png
new file mode 100644
index 00000000..ff6ca850
Binary files /dev/null and b/frontend/src/assets/sources/suburban-medical-group-llc.png differ
diff --git a/frontend/src/assets/sources/success-tms.png b/frontend/src/assets/sources/success-tms.png
new file mode 100644
index 00000000..3456bb86
Binary files /dev/null and b/frontend/src/assets/sources/success-tms.png differ
diff --git a/frontend/src/assets/sources/sudan-medical-clinic-llc.png b/frontend/src/assets/sources/sudan-medical-clinic-llc.png
new file mode 100644
index 00000000..ceb3be9a
Binary files /dev/null and b/frontend/src/assets/sources/sudan-medical-clinic-llc.png differ
diff --git a/frontend/src/assets/sources/summit-eye-care-pa.jpg b/frontend/src/assets/sources/summit-eye-care-pa.jpg
new file mode 100644
index 00000000..9f10682a
Binary files /dev/null and b/frontend/src/assets/sources/summit-eye-care-pa.jpg differ
diff --git a/frontend/src/assets/sources/summit-orthopedics.jpg b/frontend/src/assets/sources/summit-orthopedics.jpg
new file mode 100644
index 00000000..9c7a33a0
Binary files /dev/null and b/frontend/src/assets/sources/summit-orthopedics.jpg differ
diff --git a/frontend/src/assets/sources/sumner-regional-medical-center.png b/frontend/src/assets/sources/sumner-regional-medical-center.png
new file mode 100644
index 00000000..925ffff6
Binary files /dev/null and b/frontend/src/assets/sources/sumner-regional-medical-center.png differ
diff --git a/frontend/src/assets/sources/sundance-medical-center.png b/frontend/src/assets/sources/sundance-medical-center.png
new file mode 100644
index 00000000..3676c018
Binary files /dev/null and b/frontend/src/assets/sources/sundance-medical-center.png differ
diff --git a/frontend/src/assets/sources/sunlife-medical-group.jpg b/frontend/src/assets/sources/sunlife-medical-group.jpg
new file mode 100644
index 00000000..3a439061
Binary files /dev/null and b/frontend/src/assets/sources/sunlife-medical-group.jpg differ
diff --git a/frontend/src/assets/sources/sunrise-treatment-center.png b/frontend/src/assets/sources/sunrise-treatment-center.png
new file mode 100644
index 00000000..8c56c2d4
Binary files /dev/null and b/frontend/src/assets/sources/sunrise-treatment-center.png differ
diff --git a/frontend/src/assets/sources/sunset-community-health-center.svg b/frontend/src/assets/sources/sunset-community-health-center.svg
new file mode 100644
index 00000000..0d0de23e
--- /dev/null
+++ b/frontend/src/assets/sources/sunset-community-health-center.svg
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/suny-college-of-optometry.svg b/frontend/src/assets/sources/suny-college-of-optometry.svg
new file mode 100644
index 00000000..1455d401
--- /dev/null
+++ b/frontend/src/assets/sources/suny-college-of-optometry.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/surgery-associates.png b/frontend/src/assets/sources/surgery-associates.png
new file mode 100644
index 00000000..d95aa9c5
Binary files /dev/null and b/frontend/src/assets/sources/surgery-associates.png differ
diff --git a/frontend/src/assets/sources/surgery-center.jpg b/frontend/src/assets/sources/surgery-center.jpg
new file mode 100644
index 00000000..191345ae
Binary files /dev/null and b/frontend/src/assets/sources/surgery-center.jpg differ
diff --git a/frontend/src/assets/sources/surgery-partners-nashville.jpg b/frontend/src/assets/sources/surgery-partners-nashville.jpg
new file mode 100644
index 00000000..60d11abb
Binary files /dev/null and b/frontend/src/assets/sources/surgery-partners-nashville.jpg differ
diff --git a/frontend/src/assets/sources/surgical-arts.jpg b/frontend/src/assets/sources/surgical-arts.jpg
new file mode 100644
index 00000000..e72bdc25
Binary files /dev/null and b/frontend/src/assets/sources/surgical-arts.jpg differ
diff --git a/frontend/src/assets/sources/surgical-associates-of-atlanta-p-c.png b/frontend/src/assets/sources/surgical-associates-of-atlanta-p-c.png
new file mode 100644
index 00000000..3c8eab19
Binary files /dev/null and b/frontend/src/assets/sources/surgical-associates-of-atlanta-p-c.png differ
diff --git a/frontend/src/assets/sources/surgical-care-center-of-michigan.png b/frontend/src/assets/sources/surgical-care-center-of-michigan.png
new file mode 100644
index 00000000..edf531a6
Binary files /dev/null and b/frontend/src/assets/sources/surgical-care-center-of-michigan.png differ
diff --git a/frontend/src/assets/sources/surgical-management-inc.svg b/frontend/src/assets/sources/surgical-management-inc.svg
new file mode 100644
index 00000000..ef53c2f9
--- /dev/null
+++ b/frontend/src/assets/sources/surgical-management-inc.svg
@@ -0,0 +1 @@
+THR LogoTexas Health Resources logo
\ No newline at end of file
diff --git a/frontend/src/assets/sources/surgical-multispecialties-medical-group.png b/frontend/src/assets/sources/surgical-multispecialties-medical-group.png
new file mode 100644
index 00000000..1679b076
Binary files /dev/null and b/frontend/src/assets/sources/surgical-multispecialties-medical-group.png differ
diff --git a/frontend/src/assets/sources/sw-community-service.jpg b/frontend/src/assets/sources/sw-community-service.jpg
new file mode 100644
index 00000000..0bfde2e5
Binary files /dev/null and b/frontend/src/assets/sources/sw-community-service.jpg differ
diff --git a/frontend/src/assets/sources/swan-urogynecology-pc.png b/frontend/src/assets/sources/swan-urogynecology-pc.png
new file mode 100644
index 00000000..1a27c85a
Binary files /dev/null and b/frontend/src/assets/sources/swan-urogynecology-pc.png differ
diff --git a/frontend/src/assets/sources/sweeny-community-hospital.jpeg b/frontend/src/assets/sources/sweeny-community-hospital.jpeg
new file mode 100644
index 00000000..893ba6d2
Binary files /dev/null and b/frontend/src/assets/sources/sweeny-community-hospital.jpeg differ
diff --git a/frontend/src/assets/sources/swisher-memorial-hospital.png b/frontend/src/assets/sources/swisher-memorial-hospital.png
new file mode 100644
index 00000000..89e06e60
Binary files /dev/null and b/frontend/src/assets/sources/swisher-memorial-hospital.png differ
diff --git a/frontend/src/assets/sources/switchback-medical-center-pc.png b/frontend/src/assets/sources/switchback-medical-center-pc.png
new file mode 100644
index 00000000..969aa2bb
Binary files /dev/null and b/frontend/src/assets/sources/switchback-medical-center-pc.png differ
diff --git a/frontend/src/assets/sources/sycuan-medical-dental-center.png b/frontend/src/assets/sources/sycuan-medical-dental-center.png
new file mode 100644
index 00000000..987d8d46
Binary files /dev/null and b/frontend/src/assets/sources/sycuan-medical-dental-center.png differ
diff --git a/frontend/src/assets/sources/sylvia-gisi-md.png b/frontend/src/assets/sources/sylvia-gisi-md.png
new file mode 100644
index 00000000..798fcc72
Binary files /dev/null and b/frontend/src/assets/sources/sylvia-gisi-md.png differ
diff --git a/frontend/src/assets/sources/synergy-health-group.svg b/frontend/src/assets/sources/synergy-health-group.svg
new file mode 100644
index 00000000..f9f9e2b2
--- /dev/null
+++ b/frontend/src/assets/sources/synergy-health-group.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/syracuse-area-health.png b/frontend/src/assets/sources/syracuse-area-health.png
new file mode 100644
index 00000000..83a84289
Binary files /dev/null and b/frontend/src/assets/sources/syracuse-area-health.png differ
diff --git a/frontend/src/assets/sources/syracuse-community-health-center-inc.png b/frontend/src/assets/sources/syracuse-community-health-center-inc.png
new file mode 100644
index 00000000..463f006d
Binary files /dev/null and b/frontend/src/assets/sources/syracuse-community-health-center-inc.png differ
diff --git a/frontend/src/assets/sources/syringa-hospital-and-clinics.png b/frontend/src/assets/sources/syringa-hospital-and-clinics.png
new file mode 100644
index 00000000..6e7018db
Binary files /dev/null and b/frontend/src/assets/sources/syringa-hospital-and-clinics.png differ
diff --git a/frontend/src/assets/sources/t-j-regional-health.png b/frontend/src/assets/sources/t-j-regional-health.png
new file mode 100644
index 00000000..3ebaf0ad
Binary files /dev/null and b/frontend/src/assets/sources/t-j-regional-health.png differ
diff --git a/frontend/src/assets/sources/t-sri-m-d.png b/frontend/src/assets/sources/t-sri-m-d.png
new file mode 100644
index 00000000..c583037a
Binary files /dev/null and b/frontend/src/assets/sources/t-sri-m-d.png differ
diff --git a/frontend/src/assets/sources/taguchi-womens-clinic.png b/frontend/src/assets/sources/taguchi-womens-clinic.png
new file mode 100644
index 00000000..10a1264d
Binary files /dev/null and b/frontend/src/assets/sources/taguchi-womens-clinic.png differ
diff --git a/frontend/src/assets/sources/takle-eye-group-locustgrove.png b/frontend/src/assets/sources/takle-eye-group-locustgrove.png
new file mode 100644
index 00000000..cb7430c6
Binary files /dev/null and b/frontend/src/assets/sources/takle-eye-group-locustgrove.png differ
diff --git a/frontend/src/assets/sources/takle-eye-group.png b/frontend/src/assets/sources/takle-eye-group.png
new file mode 100644
index 00000000..cb7430c6
Binary files /dev/null and b/frontend/src/assets/sources/takle-eye-group.png differ
diff --git a/frontend/src/assets/sources/takle-eye-surgery-center-llc.png b/frontend/src/assets/sources/takle-eye-surgery-center-llc.png
new file mode 100644
index 00000000..cb7430c6
Binary files /dev/null and b/frontend/src/assets/sources/takle-eye-surgery-center-llc.png differ
diff --git a/frontend/src/assets/sources/tallahassee-memorial-healthcare.svg b/frontend/src/assets/sources/tallahassee-memorial-healthcare.svg
new file mode 100644
index 00000000..950bd429
--- /dev/null
+++ b/frontend/src/assets/sources/tallahassee-memorial-healthcare.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/tallahassee-podiatry-associates.png b/frontend/src/assets/sources/tallahassee-podiatry-associates.png
new file mode 100644
index 00000000..3985e529
Binary files /dev/null and b/frontend/src/assets/sources/tallahassee-podiatry-associates.png differ
diff --git a/frontend/src/assets/sources/tampa-asc.png b/frontend/src/assets/sources/tampa-asc.png
new file mode 100644
index 00000000..55197181
Binary files /dev/null and b/frontend/src/assets/sources/tampa-asc.png differ
diff --git a/frontend/src/assets/sources/tampa-bay-radiation-oncology-and-urology.png b/frontend/src/assets/sources/tampa-bay-radiation-oncology-and-urology.png
new file mode 100644
index 00000000..d84ed405
Binary files /dev/null and b/frontend/src/assets/sources/tampa-bay-radiation-oncology-and-urology.png differ
diff --git a/frontend/src/assets/sources/tampa-eye-clinic-and-associates-pa.png b/frontend/src/assets/sources/tampa-eye-clinic-and-associates-pa.png
new file mode 100644
index 00000000..35ba6b13
Binary files /dev/null and b/frontend/src/assets/sources/tampa-eye-clinic-and-associates-pa.png differ
diff --git a/frontend/src/assets/sources/tandigm-care-services.svg b/frontend/src/assets/sources/tandigm-care-services.svg
new file mode 100644
index 00000000..36865f10
--- /dev/null
+++ b/frontend/src/assets/sources/tandigm-care-services.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/tanveer-ahmad-md.png b/frontend/src/assets/sources/tanveer-ahmad-md.png
new file mode 100644
index 00000000..f848021e
Binary files /dev/null and b/frontend/src/assets/sources/tanveer-ahmad-md.png differ
diff --git a/frontend/src/assets/sources/tarboro-eye-associates.jpg b/frontend/src/assets/sources/tarboro-eye-associates.jpg
new file mode 100644
index 00000000..242c52d7
Binary files /dev/null and b/frontend/src/assets/sources/tarboro-eye-associates.jpg differ
diff --git a/frontend/src/assets/sources/tayani-institute.png b/frontend/src/assets/sources/tayani-institute.png
new file mode 100644
index 00000000..85c6ea62
Binary files /dev/null and b/frontend/src/assets/sources/tayani-institute.png differ
diff --git a/frontend/src/assets/sources/taylor-pediatrics-inc.jpg b/frontend/src/assets/sources/taylor-pediatrics-inc.jpg
new file mode 100644
index 00000000..7bdba72d
Binary files /dev/null and b/frontend/src/assets/sources/taylor-pediatrics-inc.jpg differ
diff --git a/frontend/src/assets/sources/taylorsville-instacare.png b/frontend/src/assets/sources/taylorsville-instacare.png
new file mode 100644
index 00000000..81d4978c
Binary files /dev/null and b/frontend/src/assets/sources/taylorsville-instacare.png differ
diff --git a/frontend/src/assets/sources/tejas-health-care.jpg b/frontend/src/assets/sources/tejas-health-care.jpg
new file mode 100644
index 00000000..42d25fe1
Binary files /dev/null and b/frontend/src/assets/sources/tejas-health-care.jpg differ
diff --git a/frontend/src/assets/sources/tender-care-pediatrics.jpg b/frontend/src/assets/sources/tender-care-pediatrics.jpg
new file mode 100644
index 00000000..ba198a46
Binary files /dev/null and b/frontend/src/assets/sources/tender-care-pediatrics.jpg differ
diff --git a/frontend/src/assets/sources/tennessee-orthopaedic-alliance.png b/frontend/src/assets/sources/tennessee-orthopaedic-alliance.png
new file mode 100644
index 00000000..a4e00aee
Binary files /dev/null and b/frontend/src/assets/sources/tennessee-orthopaedic-alliance.png differ
diff --git a/frontend/src/assets/sources/terros-health.jpg b/frontend/src/assets/sources/terros-health.jpg
new file mode 100644
index 00000000..e8dd38a9
Binary files /dev/null and b/frontend/src/assets/sources/terros-health.jpg differ
diff --git a/frontend/src/assets/sources/texan-eye-pa.png b/frontend/src/assets/sources/texan-eye-pa.png
new file mode 100644
index 00000000..e65eae06
Binary files /dev/null and b/frontend/src/assets/sources/texan-eye-pa.png differ
diff --git a/frontend/src/assets/sources/texas-arthritis-and-rheumatology.png b/frontend/src/assets/sources/texas-arthritis-and-rheumatology.png
new file mode 100644
index 00000000..e76eb049
Binary files /dev/null and b/frontend/src/assets/sources/texas-arthritis-and-rheumatology.png differ
diff --git a/frontend/src/assets/sources/texas-gi-endoscopy-center.jpg b/frontend/src/assets/sources/texas-gi-endoscopy-center.jpg
new file mode 100644
index 00000000..9a484c8a
Binary files /dev/null and b/frontend/src/assets/sources/texas-gi-endoscopy-center.jpg differ
diff --git a/frontend/src/assets/sources/texas-health-ft-worth-obh.png b/frontend/src/assets/sources/texas-health-ft-worth-obh.png
new file mode 100644
index 00000000..cda578b6
Binary files /dev/null and b/frontend/src/assets/sources/texas-health-ft-worth-obh.png differ
diff --git a/frontend/src/assets/sources/texas-oculoplastic-consultants.png b/frontend/src/assets/sources/texas-oculoplastic-consultants.png
new file mode 100644
index 00000000..cbb97acb
Binary files /dev/null and b/frontend/src/assets/sources/texas-oculoplastic-consultants.png differ
diff --git a/frontend/src/assets/sources/texas-regional-eye-center.png b/frontend/src/assets/sources/texas-regional-eye-center.png
new file mode 100644
index 00000000..d9aba9d4
Binary files /dev/null and b/frontend/src/assets/sources/texas-regional-eye-center.png differ
diff --git a/frontend/src/assets/sources/texas-spine-and-neurosurgery-center.png b/frontend/src/assets/sources/texas-spine-and-neurosurgery-center.png
new file mode 100644
index 00000000..9685dfa9
Binary files /dev/null and b/frontend/src/assets/sources/texas-spine-and-neurosurgery-center.png differ
diff --git a/frontend/src/assets/sources/texas-surgical-associates-llp.png b/frontend/src/assets/sources/texas-surgical-associates-llp.png
new file mode 100644
index 00000000..5068034f
Binary files /dev/null and b/frontend/src/assets/sources/texas-surgical-associates-llp.png differ
diff --git a/frontend/src/assets/sources/texas-tech-health-sciences-center-permian-basin.png b/frontend/src/assets/sources/texas-tech-health-sciences-center-permian-basin.png
new file mode 100644
index 00000000..3dd7eb02
Binary files /dev/null and b/frontend/src/assets/sources/texas-tech-health-sciences-center-permian-basin.png differ
diff --git a/frontend/src/assets/sources/texas-tech-university-health-sciences-center-at-el-paso.png b/frontend/src/assets/sources/texas-tech-university-health-sciences-center-at-el-paso.png
new file mode 100644
index 00000000..c2616dfb
Binary files /dev/null and b/frontend/src/assets/sources/texas-tech-university-health-sciences-center-at-el-paso.png differ
diff --git a/frontend/src/assets/sources/texas-vision-and-laser-center.jpg b/frontend/src/assets/sources/texas-vision-and-laser-center.jpg
new file mode 100644
index 00000000..4b18b112
Binary files /dev/null and b/frontend/src/assets/sources/texas-vision-and-laser-center.jpg differ
diff --git a/frontend/src/assets/sources/tey-womens-health-center.svg b/frontend/src/assets/sources/tey-womens-health-center.svg
new file mode 100644
index 00000000..80e0d7c8
--- /dev/null
+++ b/frontend/src/assets/sources/tey-womens-health-center.svg
@@ -0,0 +1 @@
+tey-logo-1
\ No newline at end of file
diff --git a/frontend/src/assets/sources/thambimuttu-jeyaranjan-md.png b/frontend/src/assets/sources/thambimuttu-jeyaranjan-md.png
new file mode 100644
index 00000000..a752b524
Binary files /dev/null and b/frontend/src/assets/sources/thambimuttu-jeyaranjan-md.png differ
diff --git a/frontend/src/assets/sources/thayer-county-memorial-hospital.jpg b/frontend/src/assets/sources/thayer-county-memorial-hospital.jpg
new file mode 100644
index 00000000..34c506ee
Binary files /dev/null and b/frontend/src/assets/sources/thayer-county-memorial-hospital.jpg differ
diff --git a/frontend/src/assets/sources/the-camilla-pediatric-center.png b/frontend/src/assets/sources/the-camilla-pediatric-center.png
new file mode 100644
index 00000000..a3eded0d
Binary files /dev/null and b/frontend/src/assets/sources/the-camilla-pediatric-center.png differ
diff --git a/frontend/src/assets/sources/the-center-for-pain-and-supportive-care.png b/frontend/src/assets/sources/the-center-for-pain-and-supportive-care.png
new file mode 100644
index 00000000..787db816
Binary files /dev/null and b/frontend/src/assets/sources/the-center-for-pain-and-supportive-care.png differ
diff --git a/frontend/src/assets/sources/the-center-for-reproductive-health.png b/frontend/src/assets/sources/the-center-for-reproductive-health.png
new file mode 100644
index 00000000..b7e921be
Binary files /dev/null and b/frontend/src/assets/sources/the-center-for-reproductive-health.png differ
diff --git a/frontend/src/assets/sources/the-center-for-rheumatology-llp.png b/frontend/src/assets/sources/the-center-for-rheumatology-llp.png
new file mode 100644
index 00000000..3e1aa7a9
Binary files /dev/null and b/frontend/src/assets/sources/the-center-for-rheumatology-llp.png differ
diff --git a/frontend/src/assets/sources/the-childrens-mercy-hospital.png b/frontend/src/assets/sources/the-childrens-mercy-hospital.png
new file mode 100644
index 00000000..78b4f6ea
Binary files /dev/null and b/frontend/src/assets/sources/the-childrens-mercy-hospital.png differ
diff --git a/frontend/src/assets/sources/the-community-health-clinic.png b/frontend/src/assets/sources/the-community-health-clinic.png
new file mode 100644
index 00000000..142fe215
Binary files /dev/null and b/frontend/src/assets/sources/the-community-health-clinic.png differ
diff --git a/frontend/src/assets/sources/the-cross-medical-clinic.jpg b/frontend/src/assets/sources/the-cross-medical-clinic.jpg
new file mode 100644
index 00000000..485fb135
Binary files /dev/null and b/frontend/src/assets/sources/the-cross-medical-clinic.jpg differ
diff --git a/frontend/src/assets/sources/the-dermatology-clinic.png b/frontend/src/assets/sources/the-dermatology-clinic.png
new file mode 100644
index 00000000..3f799319
Binary files /dev/null and b/frontend/src/assets/sources/the-dermatology-clinic.png differ
diff --git a/frontend/src/assets/sources/the-east-alabama-health-care-authority.png b/frontend/src/assets/sources/the-east-alabama-health-care-authority.png
new file mode 100644
index 00000000..6ab85822
Binary files /dev/null and b/frontend/src/assets/sources/the-east-alabama-health-care-authority.png differ
diff --git a/frontend/src/assets/sources/the-endocrine-office-inc.svg b/frontend/src/assets/sources/the-endocrine-office-inc.svg
new file mode 100644
index 00000000..d6d82abd
--- /dev/null
+++ b/frontend/src/assets/sources/the-endocrine-office-inc.svg
@@ -0,0 +1 @@
+LVHN_logo
\ No newline at end of file
diff --git a/frontend/src/assets/sources/the-eye-associates.png b/frontend/src/assets/sources/the-eye-associates.png
new file mode 100644
index 00000000..cdfd367e
Binary files /dev/null and b/frontend/src/assets/sources/the-eye-associates.png differ
diff --git a/frontend/src/assets/sources/the-fedeli-group.jpg b/frontend/src/assets/sources/the-fedeli-group.jpg
new file mode 100644
index 00000000..4754dfc6
Binary files /dev/null and b/frontend/src/assets/sources/the-fedeli-group.jpg differ
diff --git a/frontend/src/assets/sources/the-female-pelvic-health-center.png b/frontend/src/assets/sources/the-female-pelvic-health-center.png
new file mode 100644
index 00000000..340be5ba
Binary files /dev/null and b/frontend/src/assets/sources/the-female-pelvic-health-center.png differ
diff --git a/frontend/src/assets/sources/the-foot-and-leg-specialty-center.png b/frontend/src/assets/sources/the-foot-and-leg-specialty-center.png
new file mode 100644
index 00000000..2a1219ac
Binary files /dev/null and b/frontend/src/assets/sources/the-foot-and-leg-specialty-center.png differ
diff --git a/frontend/src/assets/sources/the-foot-care-group-pc.png b/frontend/src/assets/sources/the-foot-care-group-pc.png
new file mode 100644
index 00000000..f337c264
Binary files /dev/null and b/frontend/src/assets/sources/the-foot-care-group-pc.png differ
diff --git a/frontend/src/assets/sources/the-glen-endoscopy-center.jpeg b/frontend/src/assets/sources/the-glen-endoscopy-center.jpeg
new file mode 100644
index 00000000..9a06743b
Binary files /dev/null and b/frontend/src/assets/sources/the-glen-endoscopy-center.jpeg differ
diff --git a/frontend/src/assets/sources/the-guidance-center.png b/frontend/src/assets/sources/the-guidance-center.png
new file mode 100644
index 00000000..0b31692f
Binary files /dev/null and b/frontend/src/assets/sources/the-guidance-center.png differ
diff --git a/frontend/src/assets/sources/the-health-care-group-for-women.jpg b/frontend/src/assets/sources/the-health-care-group-for-women.jpg
new file mode 100644
index 00000000..9120c974
Binary files /dev/null and b/frontend/src/assets/sources/the-health-care-group-for-women.jpg differ
diff --git a/frontend/src/assets/sources/the-healthcare-connection.png b/frontend/src/assets/sources/the-healthcare-connection.png
new file mode 100644
index 00000000..0820f477
Binary files /dev/null and b/frontend/src/assets/sources/the-healthcare-connection.png differ
diff --git a/frontend/src/assets/sources/the-hirsh-center.png b/frontend/src/assets/sources/the-hirsh-center.png
new file mode 100644
index 00000000..9d22dd58
Binary files /dev/null and b/frontend/src/assets/sources/the-hirsh-center.png differ
diff --git a/frontend/src/assets/sources/the-hospital-of-central-connecticut.png b/frontend/src/assets/sources/the-hospital-of-central-connecticut.png
new file mode 100644
index 00000000..b6ec6ad5
Binary files /dev/null and b/frontend/src/assets/sources/the-hospital-of-central-connecticut.png differ
diff --git a/frontend/src/assets/sources/the-hypertension-clinic.jpg b/frontend/src/assets/sources/the-hypertension-clinic.jpg
new file mode 100644
index 00000000..5c11086e
Binary files /dev/null and b/frontend/src/assets/sources/the-hypertension-clinic.jpg differ
diff --git a/frontend/src/assets/sources/the-laser-center-of-coral-gables-llc.png b/frontend/src/assets/sources/the-laser-center-of-coral-gables-llc.png
new file mode 100644
index 00000000..56e9d6c5
Binary files /dev/null and b/frontend/src/assets/sources/the-laser-center-of-coral-gables-llc.png differ
diff --git a/frontend/src/assets/sources/the-laser-clinic.jpg b/frontend/src/assets/sources/the-laser-clinic.jpg
new file mode 100644
index 00000000..34a720b5
Binary files /dev/null and b/frontend/src/assets/sources/the-laser-clinic.jpg differ
diff --git a/frontend/src/assets/sources/the-liberty-clinic.png b/frontend/src/assets/sources/the-liberty-clinic.png
new file mode 100644
index 00000000..cf7acde0
Binary files /dev/null and b/frontend/src/assets/sources/the-liberty-clinic.png differ
diff --git a/frontend/src/assets/sources/the-menninger-clinic.svg b/frontend/src/assets/sources/the-menninger-clinic.svg
new file mode 100644
index 00000000..29bf27f3
--- /dev/null
+++ b/frontend/src/assets/sources/the-menninger-clinic.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/the-national-diabetes-and-obesity-research-institute.png b/frontend/src/assets/sources/the-national-diabetes-and-obesity-research-institute.png
new file mode 100644
index 00000000..dbb72e76
Binary files /dev/null and b/frontend/src/assets/sources/the-national-diabetes-and-obesity-research-institute.png differ
diff --git a/frontend/src/assets/sources/the-nebraska-neurosurgery-group.png b/frontend/src/assets/sources/the-nebraska-neurosurgery-group.png
new file mode 100644
index 00000000..5aaef7c0
Binary files /dev/null and b/frontend/src/assets/sources/the-nebraska-neurosurgery-group.png differ
diff --git a/frontend/src/assets/sources/the-new-york-gracie-square-hospital.png b/frontend/src/assets/sources/the-new-york-gracie-square-hospital.png
new file mode 100644
index 00000000..76ac371f
Binary files /dev/null and b/frontend/src/assets/sources/the-new-york-gracie-square-hospital.png differ
diff --git a/frontend/src/assets/sources/the-ocular-surgery-center.svg b/frontend/src/assets/sources/the-ocular-surgery-center.svg
new file mode 100644
index 00000000..cde50055
--- /dev/null
+++ b/frontend/src/assets/sources/the-ocular-surgery-center.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/frontend/src/assets/sources/the-pain-management-solution.jpg b/frontend/src/assets/sources/the-pain-management-solution.jpg
new file mode 100644
index 00000000..abbd10a0
Binary files /dev/null and b/frontend/src/assets/sources/the-pain-management-solution.jpg differ
diff --git a/frontend/src/assets/sources/the-palmetto-surgery-center.jpg b/frontend/src/assets/sources/the-palmetto-surgery-center.jpg
new file mode 100644
index 00000000..4d99d14a
Binary files /dev/null and b/frontend/src/assets/sources/the-palmetto-surgery-center.jpg differ
diff --git a/frontend/src/assets/sources/the-pediatric-center-of-frederick.jpeg b/frontend/src/assets/sources/the-pediatric-center-of-frederick.jpeg
new file mode 100644
index 00000000..3acd77fe
Binary files /dev/null and b/frontend/src/assets/sources/the-pediatric-center-of-frederick.jpeg differ
diff --git a/frontend/src/assets/sources/the-plattsburg-clinic.png b/frontend/src/assets/sources/the-plattsburg-clinic.png
new file mode 100644
index 00000000..dd1e92bd
Binary files /dev/null and b/frontend/src/assets/sources/the-plattsburg-clinic.png differ
diff --git a/frontend/src/assets/sources/the-project-of-the-quad-cities-inc.png b/frontend/src/assets/sources/the-project-of-the-quad-cities-inc.png
new file mode 100644
index 00000000..e0971ce2
Binary files /dev/null and b/frontend/src/assets/sources/the-project-of-the-quad-cities-inc.png differ
diff --git a/frontend/src/assets/sources/the-pulmonary-and-sleep-clinic.jpeg b/frontend/src/assets/sources/the-pulmonary-and-sleep-clinic.jpeg
new file mode 100644
index 00000000..2dbf8458
Binary files /dev/null and b/frontend/src/assets/sources/the-pulmonary-and-sleep-clinic.jpeg differ
diff --git a/frontend/src/assets/sources/the-radiology-group.png b/frontend/src/assets/sources/the-radiology-group.png
new file mode 100644
index 00000000..a95ee687
Binary files /dev/null and b/frontend/src/assets/sources/the-radiology-group.png differ
diff --git a/frontend/src/assets/sources/the-reeves-eye-institute.png b/frontend/src/assets/sources/the-reeves-eye-institute.png
new file mode 100644
index 00000000..331493e5
Binary files /dev/null and b/frontend/src/assets/sources/the-reeves-eye-institute.png differ
diff --git a/frontend/src/assets/sources/the-regional-eye-center.svg b/frontend/src/assets/sources/the-regional-eye-center.svg
new file mode 100644
index 00000000..9a7343ed
--- /dev/null
+++ b/frontend/src/assets/sources/the-regional-eye-center.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/the-regional-medical-center-of-orangeburg-and-calhoun-counties.jpg b/frontend/src/assets/sources/the-regional-medical-center-of-orangeburg-and-calhoun-counties.jpg
new file mode 100644
index 00000000..389d5c3c
Binary files /dev/null and b/frontend/src/assets/sources/the-regional-medical-center-of-orangeburg-and-calhoun-counties.jpg differ
diff --git a/frontend/src/assets/sources/the-retina-group-inc.jpeg b/frontend/src/assets/sources/the-retina-group-inc.jpeg
new file mode 100644
index 00000000..4c53c057
Binary files /dev/null and b/frontend/src/assets/sources/the-retina-group-inc.jpeg differ
diff --git a/frontend/src/assets/sources/the-rutland-hospital-inc-d-b-a-rutland-regional-medical-center.jpg b/frontend/src/assets/sources/the-rutland-hospital-inc-d-b-a-rutland-regional-medical-center.jpg
new file mode 100644
index 00000000..bfcdc609
Binary files /dev/null and b/frontend/src/assets/sources/the-rutland-hospital-inc-d-b-a-rutland-regional-medical-center.jpg differ
diff --git a/frontend/src/assets/sources/the-south-bend-clinic-llp.png b/frontend/src/assets/sources/the-south-bend-clinic-llp.png
new file mode 100644
index 00000000..aad61dc7
Binary files /dev/null and b/frontend/src/assets/sources/the-south-bend-clinic-llp.png differ
diff --git a/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-alaska-behavioral-health.png b/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-alaska-behavioral-health.png
new file mode 100644
index 00000000..f333ea61
Binary files /dev/null and b/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-alaska-behavioral-health.png differ
diff --git a/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-centerstone.jpeg b/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-centerstone.jpeg
new file mode 100644
index 00000000..67088617
Binary files /dev/null and b/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-centerstone.jpeg differ
diff --git a/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-endeavors.png b/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-endeavors.png
new file mode 100644
index 00000000..b014697a
Binary files /dev/null and b/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-endeavors.png differ
diff --git a/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-hope-for-the-warriors.png b/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-hope-for-the-warriors.png
new file mode 100644
index 00000000..04646d05
Binary files /dev/null and b/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-hope-for-the-warriors.png differ
diff --git a/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-metrocare.png b/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-metrocare.png
new file mode 100644
index 00000000..8e7c5c65
Binary files /dev/null and b/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-metrocare.png differ
diff --git a/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-red-rock.jpg b/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-red-rock.jpg
new file mode 100644
index 00000000..b96940eb
Binary files /dev/null and b/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-red-rock.jpg differ
diff --git a/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-the-university-of-pennsylvania.png b/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-the-university-of-pennsylvania.png
new file mode 100644
index 00000000..ed45ba1c
Binary files /dev/null and b/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-the-university-of-pennsylvania.png differ
diff --git a/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-the-up-center.jpeg b/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-the-up-center.jpeg
new file mode 100644
index 00000000..97cc9bfd
Binary files /dev/null and b/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-the-up-center.jpeg differ
diff --git a/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-valley-cities.jpg b/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-valley-cities.jpg
new file mode 100644
index 00000000..4647012e
Binary files /dev/null and b/frontend/src/assets/sources/the-steven-a-cohen-military-family-clinic-at-valley-cities.jpg differ
diff --git a/frontend/src/assets/sources/the-surgery-center-of-melbourne.png b/frontend/src/assets/sources/the-surgery-center-of-melbourne.png
new file mode 100644
index 00000000..b8912a20
Binary files /dev/null and b/frontend/src/assets/sources/the-surgery-center-of-melbourne.png differ
diff --git a/frontend/src/assets/sources/the-surgery-center.png b/frontend/src/assets/sources/the-surgery-center.png
new file mode 100644
index 00000000..437967f7
Binary files /dev/null and b/frontend/src/assets/sources/the-surgery-center.png differ
diff --git a/frontend/src/assets/sources/the-vision-surgical-center.png b/frontend/src/assets/sources/the-vision-surgical-center.png
new file mode 100644
index 00000000..f25ce95f
Binary files /dev/null and b/frontend/src/assets/sources/the-vision-surgical-center.png differ
diff --git a/frontend/src/assets/sources/the-womans-clinic-of-monroe.svg b/frontend/src/assets/sources/the-womans-clinic-of-monroe.svg
new file mode 100644
index 00000000..e91883c5
--- /dev/null
+++ b/frontend/src/assets/sources/the-womans-clinic-of-monroe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/the-womens-clinic-of-northern-colorado.png b/frontend/src/assets/sources/the-womens-clinic-of-northern-colorado.png
new file mode 100644
index 00000000..a2eb6b3b
Binary files /dev/null and b/frontend/src/assets/sources/the-womens-clinic-of-northern-colorado.png differ
diff --git a/frontend/src/assets/sources/thomas-j-melham-md.svg b/frontend/src/assets/sources/thomas-j-melham-md.svg
new file mode 100644
index 00000000..c90ae37a
--- /dev/null
+++ b/frontend/src/assets/sources/thomas-j-melham-md.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/thompson-healthcare-pllc.svg b/frontend/src/assets/sources/thompson-healthcare-pllc.svg
new file mode 100644
index 00000000..0f2838d6
--- /dev/null
+++ b/frontend/src/assets/sources/thompson-healthcare-pllc.svg
@@ -0,0 +1 @@
+thermalAsset 1
\ No newline at end of file
diff --git a/frontend/src/assets/sources/thornville-family-medical-center.png b/frontend/src/assets/sources/thornville-family-medical-center.png
new file mode 100644
index 00000000..4fbafe4d
Binary files /dev/null and b/frontend/src/assets/sources/thornville-family-medical-center.png differ
diff --git a/frontend/src/assets/sources/three-crosses-regional-hospital.png b/frontend/src/assets/sources/three-crosses-regional-hospital.png
new file mode 100644
index 00000000..9352abc3
Binary files /dev/null and b/frontend/src/assets/sources/three-crosses-regional-hospital.png differ
diff --git a/frontend/src/assets/sources/three-rivers-community-health-group.png b/frontend/src/assets/sources/three-rivers-community-health-group.png
new file mode 100644
index 00000000..03043732
Binary files /dev/null and b/frontend/src/assets/sources/three-rivers-community-health-group.png differ
diff --git a/frontend/src/assets/sources/thunderbird-endoscopy-center.png b/frontend/src/assets/sources/thunderbird-endoscopy-center.png
new file mode 100644
index 00000000..31bb965c
Binary files /dev/null and b/frontend/src/assets/sources/thunderbird-endoscopy-center.png differ
diff --git a/frontend/src/assets/sources/tmh-physician-partners.svg b/frontend/src/assets/sources/tmh-physician-partners.svg
new file mode 100644
index 00000000..950bd429
--- /dev/null
+++ b/frontend/src/assets/sources/tmh-physician-partners.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/tod-s-reed-dpm.png b/frontend/src/assets/sources/tod-s-reed-dpm.png
new file mode 100644
index 00000000..fd6571b3
Binary files /dev/null and b/frontend/src/assets/sources/tod-s-reed-dpm.png differ
diff --git a/frontend/src/assets/sources/tomeka-roberts-md-pc.jpeg b/frontend/src/assets/sources/tomeka-roberts-md-pc.jpeg
new file mode 100644
index 00000000..e75baf5d
Binary files /dev/null and b/frontend/src/assets/sources/tomeka-roberts-md-pc.jpeg differ
diff --git a/frontend/src/assets/sources/topton-family-practice-associates.png b/frontend/src/assets/sources/topton-family-practice-associates.png
new file mode 100644
index 00000000..fc1b141f
Binary files /dev/null and b/frontend/src/assets/sources/topton-family-practice-associates.png differ
diff --git a/frontend/src/assets/sources/torrance-memorial-medical-center.png b/frontend/src/assets/sources/torrance-memorial-medical-center.png
new file mode 100644
index 00000000..94e37263
Binary files /dev/null and b/frontend/src/assets/sources/torrance-memorial-medical-center.png differ
diff --git a/frontend/src/assets/sources/total-body-pain-institute-llc.png b/frontend/src/assets/sources/total-body-pain-institute-llc.png
new file mode 100644
index 00000000..0490ace0
Binary files /dev/null and b/frontend/src/assets/sources/total-body-pain-institute-llc.png differ
diff --git a/frontend/src/assets/sources/tots-clinic.svg b/frontend/src/assets/sources/tots-clinic.svg
new file mode 100644
index 00000000..93ca9e24
--- /dev/null
+++ b/frontend/src/assets/sources/tots-clinic.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/touro-university-medical-group.png b/frontend/src/assets/sources/touro-university-medical-group.png
new file mode 100644
index 00000000..c2db7611
Binary files /dev/null and b/frontend/src/assets/sources/touro-university-medical-group.png differ
diff --git a/frontend/src/assets/sources/town-center-foot-clinic.png b/frontend/src/assets/sources/town-center-foot-clinic.png
new file mode 100644
index 00000000..f79713d9
Binary files /dev/null and b/frontend/src/assets/sources/town-center-foot-clinic.png differ
diff --git a/frontend/src/assets/sources/toyota-industrial-equipment.jpg b/frontend/src/assets/sources/toyota-industrial-equipment.jpg
new file mode 100644
index 00000000..6ad3a95a
Binary files /dev/null and b/frontend/src/assets/sources/toyota-industrial-equipment.jpg differ
diff --git a/frontend/src/assets/sources/transitions-chronic-care-inc.png b/frontend/src/assets/sources/transitions-chronic-care-inc.png
new file mode 100644
index 00000000..6c05178f
Binary files /dev/null and b/frontend/src/assets/sources/transitions-chronic-care-inc.png differ
diff --git a/frontend/src/assets/sources/treasure-coast-podiatry.png b/frontend/src/assets/sources/treasure-coast-podiatry.png
new file mode 100644
index 00000000..112b594b
Binary files /dev/null and b/frontend/src/assets/sources/treasure-coast-podiatry.png differ
diff --git a/frontend/src/assets/sources/trego-county-lemke-memorial-hospital.png b/frontend/src/assets/sources/trego-county-lemke-memorial-hospital.png
new file mode 100644
index 00000000..c6ac3c9e
Binary files /dev/null and b/frontend/src/assets/sources/trego-county-lemke-memorial-hospital.png differ
diff --git a/frontend/src/assets/sources/tri-century-eye-care-pc.png b/frontend/src/assets/sources/tri-century-eye-care-pc.png
new file mode 100644
index 00000000..e2dfd0d6
Binary files /dev/null and b/frontend/src/assets/sources/tri-century-eye-care-pc.png differ
diff --git a/frontend/src/assets/sources/tri-city-medical-center.png b/frontend/src/assets/sources/tri-city-medical-center.png
new file mode 100644
index 00000000..2923869b
Binary files /dev/null and b/frontend/src/assets/sources/tri-city-medical-center.png differ
diff --git a/frontend/src/assets/sources/tri-city-mental-health-authority.png b/frontend/src/assets/sources/tri-city-mental-health-authority.png
new file mode 100644
index 00000000..8aa5adf2
Binary files /dev/null and b/frontend/src/assets/sources/tri-city-mental-health-authority.png differ
diff --git a/frontend/src/assets/sources/tri-city-primary-care-medical-group-inc.png b/frontend/src/assets/sources/tri-city-primary-care-medical-group-inc.png
new file mode 100644
index 00000000..3a4a6eb4
Binary files /dev/null and b/frontend/src/assets/sources/tri-city-primary-care-medical-group-inc.png differ
diff --git a/frontend/src/assets/sources/tri-city-pulmonary-medical-group.png b/frontend/src/assets/sources/tri-city-pulmonary-medical-group.png
new file mode 100644
index 00000000..2923869b
Binary files /dev/null and b/frontend/src/assets/sources/tri-city-pulmonary-medical-group.png differ
diff --git a/frontend/src/assets/sources/tri-county-community-action-agency.svg b/frontend/src/assets/sources/tri-county-community-action-agency.svg
new file mode 100644
index 00000000..71206dbe
--- /dev/null
+++ b/frontend/src/assets/sources/tri-county-community-action-agency.svg
@@ -0,0 +1,6265 @@
+
+
+
+
+
+
+
+
+
+
+]>
+
+
+
+
+
+
+
+
+
+ Tri-County
+
+ Empowered People Strengthen Communities
+
+ Community Action Agency
+
+
+ TCCAA
+
+ Tri-County Community Action Agency
+
+
+ Empowered People Strengthen Communities
+
+ Tri-County
+
+
+ Empowered People Strengthen Communities
+ Community Action Agency
+
+ Tri-County
+
+
+ Empowered People Strengthen Communities
+
+ Community Action Agency
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/tri-county-mental-health-services.jpg b/frontend/src/assets/sources/tri-county-mental-health-services.jpg
new file mode 100644
index 00000000..c5304e45
Binary files /dev/null and b/frontend/src/assets/sources/tri-county-mental-health-services.jpg differ
diff --git a/frontend/src/assets/sources/tri-county-pulmonary-and-sleep.svg b/frontend/src/assets/sources/tri-county-pulmonary-and-sleep.svg
new file mode 100644
index 00000000..32d4d9cd
--- /dev/null
+++ b/frontend/src/assets/sources/tri-county-pulmonary-and-sleep.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/tri-county-vascular-care-asc.png b/frontend/src/assets/sources/tri-county-vascular-care-asc.png
new file mode 100644
index 00000000..95df9e89
Binary files /dev/null and b/frontend/src/assets/sources/tri-county-vascular-care-asc.png differ
diff --git a/frontend/src/assets/sources/tri-county-vascular-care-office.png b/frontend/src/assets/sources/tri-county-vascular-care-office.png
new file mode 100644
index 00000000..e58ad3dc
Binary files /dev/null and b/frontend/src/assets/sources/tri-county-vascular-care-office.png differ
diff --git a/frontend/src/assets/sources/tri-county-vascular-care-pro.png b/frontend/src/assets/sources/tri-county-vascular-care-pro.png
new file mode 100644
index 00000000..a93486f6
Binary files /dev/null and b/frontend/src/assets/sources/tri-county-vascular-care-pro.png differ
diff --git a/frontend/src/assets/sources/tri-valley-oncology-hematology-associate.png b/frontend/src/assets/sources/tri-valley-oncology-hematology-associate.png
new file mode 100644
index 00000000..76537219
Binary files /dev/null and b/frontend/src/assets/sources/tri-valley-oncology-hematology-associate.png differ
diff --git a/frontend/src/assets/sources/triangle-arthritis-and-rheumatology-assc.png b/frontend/src/assets/sources/triangle-arthritis-and-rheumatology-assc.png
new file mode 100644
index 00000000..de786ff4
Binary files /dev/null and b/frontend/src/assets/sources/triangle-arthritis-and-rheumatology-assc.png differ
diff --git a/frontend/src/assets/sources/trinity-health-corporation.svg b/frontend/src/assets/sources/trinity-health-corporation.svg
new file mode 100644
index 00000000..49fb4173
--- /dev/null
+++ b/frontend/src/assets/sources/trinity-health-corporation.svg
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/trinity-womens-health.jpg b/frontend/src/assets/sources/trinity-womens-health.jpg
new file mode 100644
index 00000000..2f19c195
Binary files /dev/null and b/frontend/src/assets/sources/trinity-womens-health.jpg differ
diff --git a/frontend/src/assets/sources/tropical-texas-behavioral-health.jpg b/frontend/src/assets/sources/tropical-texas-behavioral-health.jpg
new file mode 100644
index 00000000..1a29b4a2
Binary files /dev/null and b/frontend/src/assets/sources/tropical-texas-behavioral-health.jpg differ
diff --git a/frontend/src/assets/sources/tuality-healthcare.png b/frontend/src/assets/sources/tuality-healthcare.png
new file mode 100644
index 00000000..2b58afb6
Binary files /dev/null and b/frontend/src/assets/sources/tuality-healthcare.png differ
diff --git a/frontend/src/assets/sources/tucson-eye-physicians-pllc.png b/frontend/src/assets/sources/tucson-eye-physicians-pllc.png
new file mode 100644
index 00000000..5953c80c
Binary files /dev/null and b/frontend/src/assets/sources/tucson-eye-physicians-pllc.png differ
diff --git a/frontend/src/assets/sources/tulsa-emergency-medical-center-inc.png b/frontend/src/assets/sources/tulsa-emergency-medical-center-inc.png
new file mode 100644
index 00000000..4d6a7acd
Binary files /dev/null and b/frontend/src/assets/sources/tulsa-emergency-medical-center-inc.png differ
diff --git a/frontend/src/assets/sources/tuolumne-me-wuk-indian-health-center.png b/frontend/src/assets/sources/tuolumne-me-wuk-indian-health-center.png
new file mode 100644
index 00000000..a80bd301
Binary files /dev/null and b/frontend/src/assets/sources/tuolumne-me-wuk-indian-health-center.png differ
diff --git a/frontend/src/assets/sources/turning-point-community-programs.png b/frontend/src/assets/sources/turning-point-community-programs.png
new file mode 100644
index 00000000..d4caad8f
Binary files /dev/null and b/frontend/src/assets/sources/turning-point-community-programs.png differ
diff --git a/frontend/src/assets/sources/twin-cities-anesthesia-pa.png b/frontend/src/assets/sources/twin-cities-anesthesia-pa.png
new file mode 100644
index 00000000..97591fa2
Binary files /dev/null and b/frontend/src/assets/sources/twin-cities-anesthesia-pa.png differ
diff --git a/frontend/src/assets/sources/twin-cities-pain-clinic.png b/frontend/src/assets/sources/twin-cities-pain-clinic.png
new file mode 100644
index 00000000..08d222f1
Binary files /dev/null and b/frontend/src/assets/sources/twin-cities-pain-clinic.png differ
diff --git a/frontend/src/assets/sources/twin-cities-surgery-center.png b/frontend/src/assets/sources/twin-cities-surgery-center.png
new file mode 100644
index 00000000..02218e15
Binary files /dev/null and b/frontend/src/assets/sources/twin-cities-surgery-center.png differ
diff --git a/frontend/src/assets/sources/tyler-holmes-memorial-hospital.png b/frontend/src/assets/sources/tyler-holmes-memorial-hospital.png
new file mode 100644
index 00000000..b1aa31e9
Binary files /dev/null and b/frontend/src/assets/sources/tyler-holmes-memorial-hospital.png differ
diff --git a/frontend/src/assets/sources/tyler-nephrology-associates.png b/frontend/src/assets/sources/tyler-nephrology-associates.png
new file mode 100644
index 00000000..d8ff37a8
Binary files /dev/null and b/frontend/src/assets/sources/tyler-nephrology-associates.png differ
diff --git a/frontend/src/assets/sources/u-of-l-physicians.jpg b/frontend/src/assets/sources/u-of-l-physicians.jpg
new file mode 100644
index 00000000..a2778f7f
Binary files /dev/null and b/frontend/src/assets/sources/u-of-l-physicians.jpg differ
diff --git a/frontend/src/assets/sources/ua-student-health-center.jpg b/frontend/src/assets/sources/ua-student-health-center.jpg
new file mode 100644
index 00000000..44d3dd26
Binary files /dev/null and b/frontend/src/assets/sources/ua-student-health-center.jpg differ
diff --git a/frontend/src/assets/sources/uab-callahan-eye-hospital-authority.png b/frontend/src/assets/sources/uab-callahan-eye-hospital-authority.png
new file mode 100644
index 00000000..6ef5b9b4
Binary files /dev/null and b/frontend/src/assets/sources/uab-callahan-eye-hospital-authority.png differ
diff --git a/frontend/src/assets/sources/uab-hospital.svg b/frontend/src/assets/sources/uab-hospital.svg
new file mode 100644
index 00000000..1a391927
--- /dev/null
+++ b/frontend/src/assets/sources/uab-hospital.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/uci-medical-affiliates-of-south-carolina-inc.png b/frontend/src/assets/sources/uci-medical-affiliates-of-south-carolina-inc.png
new file mode 100644
index 00000000..0f5b1532
Binary files /dev/null and b/frontend/src/assets/sources/uci-medical-affiliates-of-south-carolina-inc.png differ
diff --git a/frontend/src/assets/sources/uhs-of-delaware-inc.png b/frontend/src/assets/sources/uhs-of-delaware-inc.png
new file mode 100644
index 00000000..e373dd86
Binary files /dev/null and b/frontend/src/assets/sources/uhs-of-delaware-inc.png differ
diff --git a/frontend/src/assets/sources/uhs_ambulatory_east.png b/frontend/src/assets/sources/uhs_ambulatory_east.png
new file mode 100644
index 00000000..8b61c80a
Binary files /dev/null and b/frontend/src/assets/sources/uhs_ambulatory_east.png differ
diff --git a/frontend/src/assets/sources/uhs_ambulatory_west.png b/frontend/src/assets/sources/uhs_ambulatory_west.png
new file mode 100644
index 00000000..e373dd86
Binary files /dev/null and b/frontend/src/assets/sources/uhs_ambulatory_west.png differ
diff --git a/frontend/src/assets/sources/uintah-basin-medical-center.jpeg b/frontend/src/assets/sources/uintah-basin-medical-center.jpeg
new file mode 100644
index 00000000..6fd2526a
Binary files /dev/null and b/frontend/src/assets/sources/uintah-basin-medical-center.jpeg differ
diff --git a/frontend/src/assets/sources/unified-government-of-wyandotte-county.jpg b/frontend/src/assets/sources/unified-government-of-wyandotte-county.jpg
new file mode 100644
index 00000000..9cf29bc6
Binary files /dev/null and b/frontend/src/assets/sources/unified-government-of-wyandotte-county.jpg differ
diff --git a/frontend/src/assets/sources/unified-health-associates.jpg b/frontend/src/assets/sources/unified-health-associates.jpg
new file mode 100644
index 00000000..94e5e22d
Binary files /dev/null and b/frontend/src/assets/sources/unified-health-associates.jpg differ
diff --git a/frontend/src/assets/sources/union-bridge-family-practice.png b/frontend/src/assets/sources/union-bridge-family-practice.png
new file mode 100644
index 00000000..37eb54de
Binary files /dev/null and b/frontend/src/assets/sources/union-bridge-family-practice.png differ
diff --git a/frontend/src/assets/sources/union-general-hospital-inc.jpg b/frontend/src/assets/sources/union-general-hospital-inc.jpg
new file mode 100644
index 00000000..ee96b930
Binary files /dev/null and b/frontend/src/assets/sources/union-general-hospital-inc.jpg differ
diff --git a/frontend/src/assets/sources/united-cerebral-palsy-of-nyc.png b/frontend/src/assets/sources/united-cerebral-palsy-of-nyc.png
new file mode 100644
index 00000000..4fe5c77e
Binary files /dev/null and b/frontend/src/assets/sources/united-cerebral-palsy-of-nyc.png differ
diff --git a/frontend/src/assets/sources/united-hospitalist-group.png b/frontend/src/assets/sources/united-hospitalist-group.png
new file mode 100644
index 00000000..8cb9c865
Binary files /dev/null and b/frontend/src/assets/sources/united-hospitalist-group.png differ
diff --git a/frontend/src/assets/sources/united-indian-health-services-inc.png b/frontend/src/assets/sources/united-indian-health-services-inc.png
new file mode 100644
index 00000000..44284576
Binary files /dev/null and b/frontend/src/assets/sources/united-indian-health-services-inc.png differ
diff --git a/frontend/src/assets/sources/united-medical-llc.png b/frontend/src/assets/sources/united-medical-llc.png
new file mode 100644
index 00000000..c01da72a
Binary files /dev/null and b/frontend/src/assets/sources/united-medical-llc.png differ
diff --git a/frontend/src/assets/sources/united-surgical-partners-international.jpg b/frontend/src/assets/sources/united-surgical-partners-international.jpg
new file mode 100644
index 00000000..9b0532af
Binary files /dev/null and b/frontend/src/assets/sources/united-surgical-partners-international.jpg differ
diff --git a/frontend/src/assets/sources/university-asc.png b/frontend/src/assets/sources/university-asc.png
new file mode 100644
index 00000000..e199877d
Binary files /dev/null and b/frontend/src/assets/sources/university-asc.png differ
diff --git a/frontend/src/assets/sources/university-health.png b/frontend/src/assets/sources/university-health.png
new file mode 100644
index 00000000..5b56e3db
Binary files /dev/null and b/frontend/src/assets/sources/university-health.png differ
diff --git a/frontend/src/assets/sources/university-hospitals-samaritan-medical-center.png b/frontend/src/assets/sources/university-hospitals-samaritan-medical-center.png
new file mode 100644
index 00000000..8cb9c865
Binary files /dev/null and b/frontend/src/assets/sources/university-hospitals-samaritan-medical-center.png differ
diff --git a/frontend/src/assets/sources/university-medical-center-of-el-paso.jpg b/frontend/src/assets/sources/university-medical-center-of-el-paso.jpg
new file mode 100644
index 00000000..9f9ab74a
Binary files /dev/null and b/frontend/src/assets/sources/university-medical-center-of-el-paso.jpg differ
diff --git a/frontend/src/assets/sources/university-medical-center.png b/frontend/src/assets/sources/university-medical-center.png
new file mode 100644
index 00000000..8bf1e5a3
Binary files /dev/null and b/frontend/src/assets/sources/university-medical-center.png differ
diff --git a/frontend/src/assets/sources/university-of-delaware.png b/frontend/src/assets/sources/university-of-delaware.png
new file mode 100644
index 00000000..5604111b
Binary files /dev/null and b/frontend/src/assets/sources/university-of-delaware.png differ
diff --git a/frontend/src/assets/sources/university-of-maryland-capital-region-health.jpg b/frontend/src/assets/sources/university-of-maryland-capital-region-health.jpg
new file mode 100644
index 00000000..afadc4ee
Binary files /dev/null and b/frontend/src/assets/sources/university-of-maryland-capital-region-health.jpg differ
diff --git a/frontend/src/assets/sources/university-of-new-mexico-health-sciences-center.jpg b/frontend/src/assets/sources/university-of-new-mexico-health-sciences-center.jpg
new file mode 100644
index 00000000..73dcb275
Binary files /dev/null and b/frontend/src/assets/sources/university-of-new-mexico-health-sciences-center.jpg differ
diff --git a/frontend/src/assets/sources/university-orthopedics-center.png b/frontend/src/assets/sources/university-orthopedics-center.png
new file mode 100644
index 00000000..6ff4de54
Binary files /dev/null and b/frontend/src/assets/sources/university-orthopedics-center.png differ
diff --git a/frontend/src/assets/sources/university-tennessee-medical-group.png b/frontend/src/assets/sources/university-tennessee-medical-group.png
new file mode 100644
index 00000000..6ee8ba9d
Binary files /dev/null and b/frontend/src/assets/sources/university-tennessee-medical-group.png differ
diff --git a/frontend/src/assets/sources/uofl-health.jpg b/frontend/src/assets/sources/uofl-health.jpg
new file mode 100644
index 00000000..8016fc5c
Binary files /dev/null and b/frontend/src/assets/sources/uofl-health.jpg differ
diff --git a/frontend/src/assets/sources/upland-vascular-center.jpg b/frontend/src/assets/sources/upland-vascular-center.jpg
new file mode 100644
index 00000000..cc43b834
Binary files /dev/null and b/frontend/src/assets/sources/upland-vascular-center.jpg differ
diff --git a/frontend/src/assets/sources/upmc-childrens-hospital.png b/frontend/src/assets/sources/upmc-childrens-hospital.png
new file mode 100644
index 00000000..f555630b
Binary files /dev/null and b/frontend/src/assets/sources/upmc-childrens-hospital.png differ
diff --git a/frontend/src/assets/sources/upmc-core-zone.png b/frontend/src/assets/sources/upmc-core-zone.png
new file mode 100644
index 00000000..15bd36cb
Binary files /dev/null and b/frontend/src/assets/sources/upmc-core-zone.png differ
diff --git a/frontend/src/assets/sources/upperline-health.png b/frontend/src/assets/sources/upperline-health.png
new file mode 100644
index 00000000..8a804d36
Binary files /dev/null and b/frontend/src/assets/sources/upperline-health.png differ
diff --git a/frontend/src/assets/sources/upstate-podiatry-group.png b/frontend/src/assets/sources/upstate-podiatry-group.png
new file mode 100644
index 00000000..de2235b5
Binary files /dev/null and b/frontend/src/assets/sources/upstate-podiatry-group.png differ
diff --git a/frontend/src/assets/sources/urological-associates-of-southern-az-pc.png b/frontend/src/assets/sources/urological-associates-of-southern-az-pc.png
new file mode 100644
index 00000000..1d4ff2a4
Binary files /dev/null and b/frontend/src/assets/sources/urological-associates-of-southern-az-pc.png differ
diff --git a/frontend/src/assets/sources/urological-associates-pc.svg b/frontend/src/assets/sources/urological-associates-pc.svg
new file mode 100644
index 00000000..938db61b
--- /dev/null
+++ b/frontend/src/assets/sources/urological-associates-pc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/urology-partners-of-north-texas-pllc.png b/frontend/src/assets/sources/urology-partners-of-north-texas-pllc.png
new file mode 100644
index 00000000..2a322083
Binary files /dev/null and b/frontend/src/assets/sources/urology-partners-of-north-texas-pllc.png differ
diff --git a/frontend/src/assets/sources/urology-pc.png b/frontend/src/assets/sources/urology-pc.png
new file mode 100644
index 00000000..37fac7d0
Binary files /dev/null and b/frontend/src/assets/sources/urology-pc.png differ
diff --git a/frontend/src/assets/sources/urology-specialist-group-llc.png b/frontend/src/assets/sources/urology-specialist-group-llc.png
new file mode 100644
index 00000000..6f507468
Binary files /dev/null and b/frontend/src/assets/sources/urology-specialist-group-llc.png differ
diff --git a/frontend/src/assets/sources/urology-specialists-chartered.png b/frontend/src/assets/sources/urology-specialists-chartered.png
new file mode 100644
index 00000000..5bfd1641
Binary files /dev/null and b/frontend/src/assets/sources/urology-specialists-chartered.png differ
diff --git a/frontend/src/assets/sources/urology-specialists-of-nevada.svg b/frontend/src/assets/sources/urology-specialists-of-nevada.svg
new file mode 100644
index 00000000..dafb96c7
--- /dev/null
+++ b/frontend/src/assets/sources/urology-specialists-of-nevada.svg
@@ -0,0 +1,235 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/urology-specialists-of-ohio.png b/frontend/src/assets/sources/urology-specialists-of-ohio.png
new file mode 100644
index 00000000..eaf859f3
Binary files /dev/null and b/frontend/src/assets/sources/urology-specialists-of-ohio.png differ
diff --git a/frontend/src/assets/sources/urology-specialists-surgery-center-llc.png b/frontend/src/assets/sources/urology-specialists-surgery-center-llc.png
new file mode 100644
index 00000000..0cdef9b2
Binary files /dev/null and b/frontend/src/assets/sources/urology-specialists-surgery-center-llc.png differ
diff --git a/frontend/src/assets/sources/urology-surgical-center-llc.png b/frontend/src/assets/sources/urology-surgical-center-llc.png
new file mode 100644
index 00000000..37fac7d0
Binary files /dev/null and b/frontend/src/assets/sources/urology-surgical-center-llc.png differ
diff --git a/frontend/src/assets/sources/us-dermatology-partners-6.png b/frontend/src/assets/sources/us-dermatology-partners-6.png
new file mode 100644
index 00000000..83994e74
Binary files /dev/null and b/frontend/src/assets/sources/us-dermatology-partners-6.png differ
diff --git a/frontend/src/assets/sources/us-dermatology-partners-8.png b/frontend/src/assets/sources/us-dermatology-partners-8.png
new file mode 100644
index 00000000..f5684b12
Binary files /dev/null and b/frontend/src/assets/sources/us-dermatology-partners-8.png differ
diff --git a/frontend/src/assets/sources/us-dermatology-partners-9.png b/frontend/src/assets/sources/us-dermatology-partners-9.png
new file mode 100644
index 00000000..2d7bc3d6
Binary files /dev/null and b/frontend/src/assets/sources/us-dermatology-partners-9.png differ
diff --git a/frontend/src/assets/sources/us-wellness.png b/frontend/src/assets/sources/us-wellness.png
new file mode 100644
index 00000000..1de1ab48
Binary files /dev/null and b/frontend/src/assets/sources/us-wellness.png differ
diff --git a/frontend/src/assets/sources/usa-health-dermatology.jpg b/frontend/src/assets/sources/usa-health-dermatology.jpg
new file mode 100644
index 00000000..39d705b1
Binary files /dev/null and b/frontend/src/assets/sources/usa-health-dermatology.jpg differ
diff --git a/frontend/src/assets/sources/usa-health-university-hospital.png b/frontend/src/assets/sources/usa-health-university-hospital.png
new file mode 100644
index 00000000..3e4fe0fa
Binary files /dev/null and b/frontend/src/assets/sources/usa-health-university-hospital.png differ
diff --git a/frontend/src/assets/sources/usmd-diagnostic-services-llc.png b/frontend/src/assets/sources/usmd-diagnostic-services-llc.png
new file mode 100644
index 00000000..d7b4e828
Binary files /dev/null and b/frontend/src/assets/sources/usmd-diagnostic-services-llc.png differ
diff --git a/frontend/src/assets/sources/usmd-laboratory-services.png b/frontend/src/assets/sources/usmd-laboratory-services.png
new file mode 100644
index 00000000..d7b4e828
Binary files /dev/null and b/frontend/src/assets/sources/usmd-laboratory-services.png differ
diff --git a/frontend/src/assets/sources/ut-health-east-texas-trauma.png b/frontend/src/assets/sources/ut-health-east-texas-trauma.png
new file mode 100644
index 00000000..4d20ea2d
Binary files /dev/null and b/frontend/src/assets/sources/ut-health-east-texas-trauma.png differ
diff --git a/frontend/src/assets/sources/ut-newborn-center.png b/frontend/src/assets/sources/ut-newborn-center.png
new file mode 100644
index 00000000..ff39a127
Binary files /dev/null and b/frontend/src/assets/sources/ut-newborn-center.png differ
diff --git a/frontend/src/assets/sources/utah-asc.jpg b/frontend/src/assets/sources/utah-asc.jpg
new file mode 100644
index 00000000..b1c7b2e6
Binary files /dev/null and b/frontend/src/assets/sources/utah-asc.jpg differ
diff --git a/frontend/src/assets/sources/utah-cardiology-pc.png b/frontend/src/assets/sources/utah-cardiology-pc.png
new file mode 100644
index 00000000..4debfcc3
Binary files /dev/null and b/frontend/src/assets/sources/utah-cardiology-pc.png differ
diff --git a/frontend/src/assets/sources/utah-gastroenterology.png b/frontend/src/assets/sources/utah-gastroenterology.png
new file mode 100644
index 00000000..0394b95f
Binary files /dev/null and b/frontend/src/assets/sources/utah-gastroenterology.png differ
diff --git a/frontend/src/assets/sources/utah-interventional.svg b/frontend/src/assets/sources/utah-interventional.svg
new file mode 100644
index 00000000..60cd24d3
--- /dev/null
+++ b/frontend/src/assets/sources/utah-interventional.svg
@@ -0,0 +1 @@
+uhealth-logo
\ No newline at end of file
diff --git a/frontend/src/assets/sources/utah-neurological-clinic-inc.png b/frontend/src/assets/sources/utah-neurological-clinic-inc.png
new file mode 100644
index 00000000..8eb76060
Binary files /dev/null and b/frontend/src/assets/sources/utah-neurological-clinic-inc.png differ
diff --git a/frontend/src/assets/sources/uwharrie-podiatry-llc.png b/frontend/src/assets/sources/uwharrie-podiatry-llc.png
new file mode 100644
index 00000000..93e52aa6
Binary files /dev/null and b/frontend/src/assets/sources/uwharrie-podiatry-llc.png differ
diff --git a/frontend/src/assets/sources/vac-of-atlantic-county-obl.png b/frontend/src/assets/sources/vac-of-atlantic-county-obl.png
new file mode 100644
index 00000000..341818ca
Binary files /dev/null and b/frontend/src/assets/sources/vac-of-atlantic-county-obl.png differ
diff --git a/frontend/src/assets/sources/vac-of-atlantic-county.png b/frontend/src/assets/sources/vac-of-atlantic-county.png
new file mode 100644
index 00000000..e9d86d64
Binary files /dev/null and b/frontend/src/assets/sources/vac-of-atlantic-county.png differ
diff --git a/frontend/src/assets/sources/vac-of-jacksonville.png b/frontend/src/assets/sources/vac-of-jacksonville.png
new file mode 100644
index 00000000..f52e3607
Binary files /dev/null and b/frontend/src/assets/sources/vac-of-jacksonville.png differ
diff --git a/frontend/src/assets/sources/vac-of-pittsburgh.png b/frontend/src/assets/sources/vac-of-pittsburgh.png
new file mode 100644
index 00000000..18605e50
Binary files /dev/null and b/frontend/src/assets/sources/vac-of-pittsburgh.png differ
diff --git a/frontend/src/assets/sources/vac-of-south-los-angeles.png b/frontend/src/assets/sources/vac-of-south-los-angeles.png
new file mode 100644
index 00000000..f759761b
Binary files /dev/null and b/frontend/src/assets/sources/vac-of-south-los-angeles.png differ
diff --git a/frontend/src/assets/sources/vail-health.png b/frontend/src/assets/sources/vail-health.png
new file mode 100644
index 00000000..c3e28f76
Binary files /dev/null and b/frontend/src/assets/sources/vail-health.png differ
diff --git a/frontend/src/assets/sources/valir-rehabilitation-hospital.png b/frontend/src/assets/sources/valir-rehabilitation-hospital.png
new file mode 100644
index 00000000..fcd902da
Binary files /dev/null and b/frontend/src/assets/sources/valir-rehabilitation-hospital.png differ
diff --git a/frontend/src/assets/sources/valle-del-sol.png b/frontend/src/assets/sources/valle-del-sol.png
new file mode 100644
index 00000000..2b0f0914
Binary files /dev/null and b/frontend/src/assets/sources/valle-del-sol.png differ
diff --git a/frontend/src/assets/sources/valley-community-healthcare.jpeg b/frontend/src/assets/sources/valley-community-healthcare.jpeg
new file mode 100644
index 00000000..95761c78
Binary files /dev/null and b/frontend/src/assets/sources/valley-community-healthcare.jpeg differ
diff --git a/frontend/src/assets/sources/valley-eye-surgical-center.png b/frontend/src/assets/sources/valley-eye-surgical-center.png
new file mode 100644
index 00000000..064044f6
Binary files /dev/null and b/frontend/src/assets/sources/valley-eye-surgical-center.png differ
diff --git a/frontend/src/assets/sources/valley-gastroenterology-consultants-inc.png b/frontend/src/assets/sources/valley-gastroenterology-consultants-inc.png
new file mode 100644
index 00000000..f3df041d
Binary files /dev/null and b/frontend/src/assets/sources/valley-gastroenterology-consultants-inc.png differ
diff --git a/frontend/src/assets/sources/valley-health-team-inc.jpg b/frontend/src/assets/sources/valley-health-team-inc.jpg
new file mode 100644
index 00000000..f9bfb2f2
Binary files /dev/null and b/frontend/src/assets/sources/valley-health-team-inc.jpg differ
diff --git a/frontend/src/assets/sources/valley-health.jpg b/frontend/src/assets/sources/valley-health.jpg
new file mode 100644
index 00000000..000c1347
Binary files /dev/null and b/frontend/src/assets/sources/valley-health.jpg differ
diff --git a/frontend/src/assets/sources/valley-kidney-specialists-asc.jpg b/frontend/src/assets/sources/valley-kidney-specialists-asc.jpg
new file mode 100644
index 00000000..eaa1a0e2
Binary files /dev/null and b/frontend/src/assets/sources/valley-kidney-specialists-asc.jpg differ
diff --git a/frontend/src/assets/sources/valley-kidney-specialists-pc.jpg b/frontend/src/assets/sources/valley-kidney-specialists-pc.jpg
new file mode 100644
index 00000000..5b33afff
Binary files /dev/null and b/frontend/src/assets/sources/valley-kidney-specialists-pc.jpg differ
diff --git a/frontend/src/assets/sources/valley-orthopedic-associates.png b/frontend/src/assets/sources/valley-orthopedic-associates.png
new file mode 100644
index 00000000..18582aa3
Binary files /dev/null and b/frontend/src/assets/sources/valley-orthopedic-associates.png differ
diff --git a/frontend/src/assets/sources/valley-wide-health-systems-inc.png b/frontend/src/assets/sources/valley-wide-health-systems-inc.png
new file mode 100644
index 00000000..340f78a4
Binary files /dev/null and b/frontend/src/assets/sources/valley-wide-health-systems-inc.png differ
diff --git a/frontend/src/assets/sources/van-diest-medical-center.png b/frontend/src/assets/sources/van-diest-medical-center.png
new file mode 100644
index 00000000..e5c1f204
Binary files /dev/null and b/frontend/src/assets/sources/van-diest-medical-center.png differ
diff --git a/frontend/src/assets/sources/vancouver-eye-care-ps.jpeg b/frontend/src/assets/sources/vancouver-eye-care-ps.jpeg
new file mode 100644
index 00000000..d4c26902
Binary files /dev/null and b/frontend/src/assets/sources/vancouver-eye-care-ps.jpeg differ
diff --git a/frontend/src/assets/sources/vancouver-eye-care-surgery-and-laser-ctr.jpg b/frontend/src/assets/sources/vancouver-eye-care-surgery-and-laser-ctr.jpg
new file mode 100644
index 00000000..cda21278
Binary files /dev/null and b/frontend/src/assets/sources/vancouver-eye-care-surgery-and-laser-ctr.jpg differ
diff --git a/frontend/src/assets/sources/vantage-surgery-center.png b/frontend/src/assets/sources/vantage-surgery-center.png
new file mode 100644
index 00000000..892ea89b
Binary files /dev/null and b/frontend/src/assets/sources/vantage-surgery-center.png differ
diff --git a/frontend/src/assets/sources/variety-childrens-hospital-d-b-a-nicklaus-childrens-hospital.png b/frontend/src/assets/sources/variety-childrens-hospital-d-b-a-nicklaus-childrens-hospital.png
new file mode 100644
index 00000000..df87632f
Binary files /dev/null and b/frontend/src/assets/sources/variety-childrens-hospital-d-b-a-nicklaus-childrens-hospital.png differ
diff --git a/frontend/src/assets/sources/vascular-clinic.png b/frontend/src/assets/sources/vascular-clinic.png
new file mode 100644
index 00000000..a7c59842
Binary files /dev/null and b/frontend/src/assets/sources/vascular-clinic.png differ
diff --git a/frontend/src/assets/sources/vascular-specialty-center.png b/frontend/src/assets/sources/vascular-specialty-center.png
new file mode 100644
index 00000000..880ef4fa
Binary files /dev/null and b/frontend/src/assets/sources/vascular-specialty-center.png differ
diff --git a/frontend/src/assets/sources/vascular-surgery-associates-llc.png b/frontend/src/assets/sources/vascular-surgery-associates-llc.png
new file mode 100644
index 00000000..e0966b77
Binary files /dev/null and b/frontend/src/assets/sources/vascular-surgery-associates-llc.png differ
diff --git a/frontend/src/assets/sources/vascular-surgery-associates.png b/frontend/src/assets/sources/vascular-surgery-associates.png
new file mode 100644
index 00000000..341dff80
Binary files /dev/null and b/frontend/src/assets/sources/vascular-surgery-associates.png differ
diff --git a/frontend/src/assets/sources/vcu-health-system-authority.png b/frontend/src/assets/sources/vcu-health-system-authority.png
new file mode 100644
index 00000000..1d989c3e
Binary files /dev/null and b/frontend/src/assets/sources/vcu-health-system-authority.png differ
diff --git a/frontend/src/assets/sources/venice-family-clinic.svg b/frontend/src/assets/sources/venice-family-clinic.svg
new file mode 100644
index 00000000..c7cea0ba
--- /dev/null
+++ b/frontend/src/assets/sources/venice-family-clinic.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/venkatesan-d-vidi-md-pllc.png b/frontend/src/assets/sources/venkatesan-d-vidi-md-pllc.png
new file mode 100644
index 00000000..24f1467e
Binary files /dev/null and b/frontend/src/assets/sources/venkatesan-d-vidi-md-pllc.png differ
diff --git a/frontend/src/assets/sources/ventura-county-pulmonary-medical-group.png b/frontend/src/assets/sources/ventura-county-pulmonary-medical-group.png
new file mode 100644
index 00000000..fc3df84c
Binary files /dev/null and b/frontend/src/assets/sources/ventura-county-pulmonary-medical-group.png differ
diff --git a/frontend/src/assets/sources/ventura-eye-institute.png b/frontend/src/assets/sources/ventura-eye-institute.png
new file mode 100644
index 00000000..8a4382d8
Binary files /dev/null and b/frontend/src/assets/sources/ventura-eye-institute.png differ
diff --git a/frontend/src/assets/sources/vera-whole-health.png b/frontend/src/assets/sources/vera-whole-health.png
new file mode 100644
index 00000000..8a067803
Binary files /dev/null and b/frontend/src/assets/sources/vera-whole-health.png differ
diff --git a/frontend/src/assets/sources/verdier-eye-center-plc.png b/frontend/src/assets/sources/verdier-eye-center-plc.png
new file mode 100644
index 00000000..3c9ffe5d
Binary files /dev/null and b/frontend/src/assets/sources/verdier-eye-center-plc.png differ
diff --git a/frontend/src/assets/sources/vero-orthopaedics-ii-pa.jpg b/frontend/src/assets/sources/vero-orthopaedics-ii-pa.jpg
new file mode 100644
index 00000000..3b894ee7
Binary files /dev/null and b/frontend/src/assets/sources/vero-orthopaedics-ii-pa.jpg differ
diff --git a/frontend/src/assets/sources/veronica-kacmar-fedorchak-dpm.png b/frontend/src/assets/sources/veronica-kacmar-fedorchak-dpm.png
new file mode 100644
index 00000000..eed47a85
Binary files /dev/null and b/frontend/src/assets/sources/veronica-kacmar-fedorchak-dpm.png differ
diff --git a/frontend/src/assets/sources/verrazano-vascular-associates-at-aac.png b/frontend/src/assets/sources/verrazano-vascular-associates-at-aac.png
new file mode 100644
index 00000000..42cc514a
Binary files /dev/null and b/frontend/src/assets/sources/verrazano-vascular-associates-at-aac.png differ
diff --git a/frontend/src/assets/sources/viasat-inc.png b/frontend/src/assets/sources/viasat-inc.png
new file mode 100644
index 00000000..718cc3a8
Binary files /dev/null and b/frontend/src/assets/sources/viasat-inc.png differ
diff --git a/frontend/src/assets/sources/victor-valley-global-medical-center.png b/frontend/src/assets/sources/victor-valley-global-medical-center.png
new file mode 100644
index 00000000..af2c599e
Binary files /dev/null and b/frontend/src/assets/sources/victor-valley-global-medical-center.png differ
diff --git a/frontend/src/assets/sources/victoria-eye-center.png b/frontend/src/assets/sources/victoria-eye-center.png
new file mode 100644
index 00000000..56986fec
Binary files /dev/null and b/frontend/src/assets/sources/victoria-eye-center.png differ
diff --git a/frontend/src/assets/sources/victoria-vision-center.png b/frontend/src/assets/sources/victoria-vision-center.png
new file mode 100644
index 00000000..56986fec
Binary files /dev/null and b/frontend/src/assets/sources/victoria-vision-center.png differ
diff --git a/frontend/src/assets/sources/vida-family-medicine-llc.png b/frontend/src/assets/sources/vida-family-medicine-llc.png
new file mode 100644
index 00000000..0a1d26fa
Binary files /dev/null and b/frontend/src/assets/sources/vida-family-medicine-llc.png differ
diff --git a/frontend/src/assets/sources/viewmont-urology-clinic-pa.jpg b/frontend/src/assets/sources/viewmont-urology-clinic-pa.jpg
new file mode 100644
index 00000000..3514e6b1
Binary files /dev/null and b/frontend/src/assets/sources/viewmont-urology-clinic-pa.jpg differ
diff --git a/frontend/src/assets/sources/vipmd.png b/frontend/src/assets/sources/vipmd.png
new file mode 100644
index 00000000..b0e20b35
Binary files /dev/null and b/frontend/src/assets/sources/vipmd.png differ
diff --git a/frontend/src/assets/sources/virginia-cardiovascular-specialists.jpg b/frontend/src/assets/sources/virginia-cardiovascular-specialists.jpg
new file mode 100644
index 00000000..000f3f49
Binary files /dev/null and b/frontend/src/assets/sources/virginia-cardiovascular-specialists.jpg differ
diff --git a/frontend/src/assets/sources/virginia-eye-consultants-inc.svg b/frontend/src/assets/sources/virginia-eye-consultants-inc.svg
new file mode 100644
index 00000000..abb41afb
--- /dev/null
+++ b/frontend/src/assets/sources/virginia-eye-consultants-inc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/virginia-lightner-md.jpg b/frontend/src/assets/sources/virginia-lightner-md.jpg
new file mode 100644
index 00000000..b5be28cf
Binary files /dev/null and b/frontend/src/assets/sources/virginia-lightner-md.jpg differ
diff --git a/frontend/src/assets/sources/virginia-mason-medical-center.png b/frontend/src/assets/sources/virginia-mason-medical-center.png
new file mode 100644
index 00000000..b242a855
Binary files /dev/null and b/frontend/src/assets/sources/virginia-mason-medical-center.png differ
diff --git a/frontend/src/assets/sources/virginia-surgery-center.png b/frontend/src/assets/sources/virginia-surgery-center.png
new file mode 100644
index 00000000..bda894d7
Binary files /dev/null and b/frontend/src/assets/sources/virginia-surgery-center.png differ
diff --git a/frontend/src/assets/sources/virtual-care.svg b/frontend/src/assets/sources/virtual-care.svg
new file mode 100644
index 00000000..2f712cb5
--- /dev/null
+++ b/frontend/src/assets/sources/virtual-care.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/vision-care-of-maine-llc.jpg b/frontend/src/assets/sources/vision-care-of-maine-llc.jpg
new file mode 100644
index 00000000..8d9d1449
Binary files /dev/null and b/frontend/src/assets/sources/vision-care-of-maine-llc.jpg differ
diff --git a/frontend/src/assets/sources/vision-care-surgery-center.png b/frontend/src/assets/sources/vision-care-surgery-center.png
new file mode 100644
index 00000000..956d5c2a
Binary files /dev/null and b/frontend/src/assets/sources/vision-care-surgery-center.png differ
diff --git a/frontend/src/assets/sources/vision-research-center.svg b/frontend/src/assets/sources/vision-research-center.svg
new file mode 100644
index 00000000..2f712cb5
--- /dev/null
+++ b/frontend/src/assets/sources/vision-research-center.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/visionary-eye-institute.png b/frontend/src/assets/sources/visionary-eye-institute.png
new file mode 100644
index 00000000..61a3b018
Binary files /dev/null and b/frontend/src/assets/sources/visionary-eye-institute.png differ
diff --git a/frontend/src/assets/sources/visioncare-associates.jpg b/frontend/src/assets/sources/visioncare-associates.jpg
new file mode 100644
index 00000000..83477729
Binary files /dev/null and b/frontend/src/assets/sources/visioncare-associates.jpg differ
diff --git a/frontend/src/assets/sources/vital-health.jpg b/frontend/src/assets/sources/vital-health.jpg
new file mode 100644
index 00000000..1afe56b5
Binary files /dev/null and b/frontend/src/assets/sources/vital-health.jpg differ
diff --git a/frontend/src/assets/sources/vital-primary-care.png b/frontend/src/assets/sources/vital-primary-care.png
new file mode 100644
index 00000000..adf9c14a
Binary files /dev/null and b/frontend/src/assets/sources/vital-primary-care.png differ
diff --git a/frontend/src/assets/sources/vitreo-retinal-associates-pc.png b/frontend/src/assets/sources/vitreo-retinal-associates-pc.png
new file mode 100644
index 00000000..fb7cdd93
Binary files /dev/null and b/frontend/src/assets/sources/vitreo-retinal-associates-pc.png differ
diff --git a/frontend/src/assets/sources/vitreo-retinal-consultants-inc.png b/frontend/src/assets/sources/vitreo-retinal-consultants-inc.png
new file mode 100644
index 00000000..38437e0f
Binary files /dev/null and b/frontend/src/assets/sources/vitreo-retinal-consultants-inc.png differ
diff --git a/frontend/src/assets/sources/vitreo-retinal-medical-group-inc.png b/frontend/src/assets/sources/vitreo-retinal-medical-group-inc.png
new file mode 100644
index 00000000..e6daa16f
Binary files /dev/null and b/frontend/src/assets/sources/vitreo-retinal-medical-group-inc.png differ
diff --git a/frontend/src/assets/sources/vna-palliative-medicine.jpeg b/frontend/src/assets/sources/vna-palliative-medicine.jpeg
new file mode 100644
index 00000000..14700689
Binary files /dev/null and b/frontend/src/assets/sources/vna-palliative-medicine.jpeg differ
diff --git a/frontend/src/assets/sources/vnacj-community-health-center-inc.jpg b/frontend/src/assets/sources/vnacj-community-health-center-inc.jpg
new file mode 100644
index 00000000..e42f8308
Binary files /dev/null and b/frontend/src/assets/sources/vnacj-community-health-center-inc.jpg differ
diff --git a/frontend/src/assets/sources/volunteers-in-medicine.png b/frontend/src/assets/sources/volunteers-in-medicine.png
new file mode 100644
index 00000000..9157d931
Binary files /dev/null and b/frontend/src/assets/sources/volunteers-in-medicine.png differ
diff --git a/frontend/src/assets/sources/vr-physician-for-vein-restoration-ny-llc.png b/frontend/src/assets/sources/vr-physician-for-vein-restoration-ny-llc.png
new file mode 100644
index 00000000..e60c79d4
Binary files /dev/null and b/frontend/src/assets/sources/vr-physician-for-vein-restoration-ny-llc.png differ
diff --git a/frontend/src/assets/sources/vrf-laser-vision-center.png b/frontend/src/assets/sources/vrf-laser-vision-center.png
new file mode 100644
index 00000000..eb946124
Binary files /dev/null and b/frontend/src/assets/sources/vrf-laser-vision-center.png differ
diff --git a/frontend/src/assets/sources/vsa-surgery-center-at-lutherville.jpg b/frontend/src/assets/sources/vsa-surgery-center-at-lutherville.jpg
new file mode 100644
index 00000000..4cf34c71
Binary files /dev/null and b/frontend/src/assets/sources/vsa-surgery-center-at-lutherville.jpg differ
diff --git a/frontend/src/assets/sources/w-andrew-cies-md.jpg b/frontend/src/assets/sources/w-andrew-cies-md.jpg
new file mode 100644
index 00000000..772f0c87
Binary files /dev/null and b/frontend/src/assets/sources/w-andrew-cies-md.jpg differ
diff --git a/frontend/src/assets/sources/wabash-general-hospital.png b/frontend/src/assets/sources/wabash-general-hospital.png
new file mode 100644
index 00000000..ab670969
Binary files /dev/null and b/frontend/src/assets/sources/wabash-general-hospital.png differ
diff --git a/frontend/src/assets/sources/waco-cardiology-associates.png b/frontend/src/assets/sources/waco-cardiology-associates.png
new file mode 100644
index 00000000..0fb225d9
Binary files /dev/null and b/frontend/src/assets/sources/waco-cardiology-associates.png differ
diff --git a/frontend/src/assets/sources/waimanalo-health-center.jpeg b/frontend/src/assets/sources/waimanalo-health-center.jpeg
new file mode 100644
index 00000000..757eb181
Binary files /dev/null and b/frontend/src/assets/sources/waimanalo-health-center.jpeg differ
diff --git a/frontend/src/assets/sources/walker-surgical-center.png b/frontend/src/assets/sources/walker-surgical-center.png
new file mode 100644
index 00000000..86215fb0
Binary files /dev/null and b/frontend/src/assets/sources/walker-surgical-center.png differ
diff --git a/frontend/src/assets/sources/walnut-lake-ob-gyn.png b/frontend/src/assets/sources/walnut-lake-ob-gyn.png
new file mode 100644
index 00000000..e9ff06cd
Binary files /dev/null and b/frontend/src/assets/sources/walnut-lake-ob-gyn.png differ
diff --git a/frontend/src/assets/sources/warren-washington-association-for-mh.jpg b/frontend/src/assets/sources/warren-washington-association-for-mh.jpg
new file mode 100644
index 00000000..4877be89
Binary files /dev/null and b/frontend/src/assets/sources/warren-washington-association-for-mh.jpg differ
diff --git a/frontend/src/assets/sources/warrenton-and-linton-hall-pediatrics.png b/frontend/src/assets/sources/warrenton-and-linton-hall-pediatrics.png
new file mode 100644
index 00000000..9e82ef4a
Binary files /dev/null and b/frontend/src/assets/sources/warrenton-and-linton-hall-pediatrics.png differ
diff --git a/frontend/src/assets/sources/washington-center-for-bleeding-disorders.png b/frontend/src/assets/sources/washington-center-for-bleeding-disorders.png
new file mode 100644
index 00000000..51f936cb
Binary files /dev/null and b/frontend/src/assets/sources/washington-center-for-bleeding-disorders.png differ
diff --git a/frontend/src/assets/sources/washington-county-memorial-hospital.jpg b/frontend/src/assets/sources/washington-county-memorial-hospital.jpg
new file mode 100644
index 00000000..df0ca9b6
Binary files /dev/null and b/frontend/src/assets/sources/washington-county-memorial-hospital.jpg differ
diff --git a/frontend/src/assets/sources/washington-regional-gen-surgery-clinic.jpeg b/frontend/src/assets/sources/washington-regional-gen-surgery-clinic.jpeg
new file mode 100644
index 00000000..1425c4b0
Binary files /dev/null and b/frontend/src/assets/sources/washington-regional-gen-surgery-clinic.jpeg differ
diff --git a/frontend/src/assets/sources/washington-regional-medical-system.png b/frontend/src/assets/sources/washington-regional-medical-system.png
new file mode 100644
index 00000000..bd8190a3
Binary files /dev/null and b/frontend/src/assets/sources/washington-regional-medical-system.png differ
diff --git a/frontend/src/assets/sources/washoe-tribal-health-center.png b/frontend/src/assets/sources/washoe-tribal-health-center.png
new file mode 100644
index 00000000..bbfee5b6
Binary files /dev/null and b/frontend/src/assets/sources/washoe-tribal-health-center.png differ
diff --git a/frontend/src/assets/sources/wayne-state-university.jpeg b/frontend/src/assets/sources/wayne-state-university.jpeg
new file mode 100644
index 00000000..09676783
Binary files /dev/null and b/frontend/src/assets/sources/wayne-state-university.jpeg differ
diff --git a/frontend/src/assets/sources/wc-child-mind-medical-practice-pc.svg b/frontend/src/assets/sources/wc-child-mind-medical-practice-pc.svg
new file mode 100644
index 00000000..e7dc6a32
--- /dev/null
+++ b/frontend/src/assets/sources/wc-child-mind-medical-practice-pc.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/frontend/src/assets/sources/weilee-eddie-yeh-md.png b/frontend/src/assets/sources/weilee-eddie-yeh-md.png
new file mode 100644
index 00000000..b0a05cb1
Binary files /dev/null and b/frontend/src/assets/sources/weilee-eddie-yeh-md.png differ
diff --git a/frontend/src/assets/sources/wellpath.svg b/frontend/src/assets/sources/wellpath.svg
new file mode 100644
index 00000000..55908f13
--- /dev/null
+++ b/frontend/src/assets/sources/wellpath.svg
@@ -0,0 +1,126 @@
+
+image/svg+xml
\ No newline at end of file
diff --git a/frontend/src/assets/sources/wellspace-health.png b/frontend/src/assets/sources/wellspace-health.png
new file mode 100644
index 00000000..857f3700
Binary files /dev/null and b/frontend/src/assets/sources/wellspace-health.png differ
diff --git a/frontend/src/assets/sources/west-central-ohio-podiatry-inc.png b/frontend/src/assets/sources/west-central-ohio-podiatry-inc.png
new file mode 100644
index 00000000..6f342c77
Binary files /dev/null and b/frontend/src/assets/sources/west-central-ohio-podiatry-inc.png differ
diff --git a/frontend/src/assets/sources/west-coast-pulmonary-physicians-inc.png b/frontend/src/assets/sources/west-coast-pulmonary-physicians-inc.png
new file mode 100644
index 00000000..c66f43b2
Binary files /dev/null and b/frontend/src/assets/sources/west-coast-pulmonary-physicians-inc.png differ
diff --git a/frontend/src/assets/sources/west-coast-urologic-associates.png b/frontend/src/assets/sources/west-coast-urologic-associates.png
new file mode 100644
index 00000000..049085e2
Binary files /dev/null and b/frontend/src/assets/sources/west-coast-urologic-associates.png differ
diff --git a/frontend/src/assets/sources/west-gastroenterology-medical-group.jpg b/frontend/src/assets/sources/west-gastroenterology-medical-group.jpg
new file mode 100644
index 00000000..2e3bdba4
Binary files /dev/null and b/frontend/src/assets/sources/west-gastroenterology-medical-group.jpg differ
diff --git a/frontend/src/assets/sources/west-jefferson-holdings-llc-d-b-a-west-jefferson-medical-center.png b/frontend/src/assets/sources/west-jefferson-holdings-llc-d-b-a-west-jefferson-medical-center.png
new file mode 100644
index 00000000..fffe09ce
Binary files /dev/null and b/frontend/src/assets/sources/west-jefferson-holdings-llc-d-b-a-west-jefferson-medical-center.png differ
diff --git a/frontend/src/assets/sources/west-michigan-family-medicine.png b/frontend/src/assets/sources/west-michigan-family-medicine.png
new file mode 100644
index 00000000..0689a300
Binary files /dev/null and b/frontend/src/assets/sources/west-michigan-family-medicine.png differ
diff --git a/frontend/src/assets/sources/west-palmdale-health-care.jpg b/frontend/src/assets/sources/west-palmdale-health-care.jpg
new file mode 100644
index 00000000..b39885fc
Binary files /dev/null and b/frontend/src/assets/sources/west-palmdale-health-care.jpg differ
diff --git a/frontend/src/assets/sources/westchester-health-medical-p-c.png b/frontend/src/assets/sources/westchester-health-medical-p-c.png
new file mode 100644
index 00000000..f41cd1f6
Binary files /dev/null and b/frontend/src/assets/sources/westchester-health-medical-p-c.png differ
diff --git a/frontend/src/assets/sources/westchester-medical-center.png b/frontend/src/assets/sources/westchester-medical-center.png
new file mode 100644
index 00000000..7fb93877
Binary files /dev/null and b/frontend/src/assets/sources/westchester-medical-center.png differ
diff --git a/frontend/src/assets/sources/western-carolina-eye-associates-pa.png b/frontend/src/assets/sources/western-carolina-eye-associates-pa.png
new file mode 100644
index 00000000..348db494
Binary files /dev/null and b/frontend/src/assets/sources/western-carolina-eye-associates-pa.png differ
diff --git a/frontend/src/assets/sources/western-community-health-resources.jpeg b/frontend/src/assets/sources/western-community-health-resources.jpeg
new file mode 100644
index 00000000..0e004018
Binary files /dev/null and b/frontend/src/assets/sources/western-community-health-resources.jpeg differ
diff --git a/frontend/src/assets/sources/western-connecticut-health-network.png b/frontend/src/assets/sources/western-connecticut-health-network.png
new file mode 100644
index 00000000..14403502
Binary files /dev/null and b/frontend/src/assets/sources/western-connecticut-health-network.png differ
diff --git a/frontend/src/assets/sources/western-missouri-medical-center.png b/frontend/src/assets/sources/western-missouri-medical-center.png
new file mode 100644
index 00000000..629dee87
Binary files /dev/null and b/frontend/src/assets/sources/western-missouri-medical-center.png differ
diff --git a/frontend/src/assets/sources/westglen-endoscopy-center.jpeg b/frontend/src/assets/sources/westglen-endoscopy-center.jpeg
new file mode 100644
index 00000000..aed05672
Binary files /dev/null and b/frontend/src/assets/sources/westglen-endoscopy-center.jpeg differ
diff --git a/frontend/src/assets/sources/westhampton-primary-care-center.png b/frontend/src/assets/sources/westhampton-primary-care-center.png
new file mode 100644
index 00000000..3c13f25b
Binary files /dev/null and b/frontend/src/assets/sources/westhampton-primary-care-center.png differ
diff --git a/frontend/src/assets/sources/westmoreland-dermatology.jpg b/frontend/src/assets/sources/westmoreland-dermatology.jpg
new file mode 100644
index 00000000..5c9db55e
Binary files /dev/null and b/frontend/src/assets/sources/westmoreland-dermatology.jpg differ
diff --git a/frontend/src/assets/sources/westroads-rheumatology-associates-p-c.png b/frontend/src/assets/sources/westroads-rheumatology-associates-p-c.png
new file mode 100644
index 00000000..c5fa719a
Binary files /dev/null and b/frontend/src/assets/sources/westroads-rheumatology-associates-p-c.png differ
diff --git a/frontend/src/assets/sources/westside-surgery-center.png b/frontend/src/assets/sources/westside-surgery-center.png
new file mode 100644
index 00000000..68676762
Binary files /dev/null and b/frontend/src/assets/sources/westside-surgery-center.png differ
diff --git a/frontend/src/assets/sources/wh-ambulatory-surgery-center.png b/frontend/src/assets/sources/wh-ambulatory-surgery-center.png
new file mode 100644
index 00000000..72fc280b
Binary files /dev/null and b/frontend/src/assets/sources/wh-ambulatory-surgery-center.png differ
diff --git a/frontend/src/assets/sources/whatley-health-services-inc.png b/frontend/src/assets/sources/whatley-health-services-inc.png
new file mode 100644
index 00000000..cf4e1d61
Binary files /dev/null and b/frontend/src/assets/sources/whatley-health-services-inc.png differ
diff --git a/frontend/src/assets/sources/wheatland-memorial-hospital.png b/frontend/src/assets/sources/wheatland-memorial-hospital.png
new file mode 100644
index 00000000..36b6ddbb
Binary files /dev/null and b/frontend/src/assets/sources/wheatland-memorial-hospital.png differ
diff --git a/frontend/src/assets/sources/white-house-clinics.png b/frontend/src/assets/sources/white-house-clinics.png
new file mode 100644
index 00000000..897815c8
Binary files /dev/null and b/frontend/src/assets/sources/white-house-clinics.png differ
diff --git a/frontend/src/assets/sources/white-oak-obh.png b/frontend/src/assets/sources/white-oak-obh.png
new file mode 100644
index 00000000..961295e1
Binary files /dev/null and b/frontend/src/assets/sources/white-oak-obh.png differ
diff --git a/frontend/src/assets/sources/whitehall-medical-center.png b/frontend/src/assets/sources/whitehall-medical-center.png
new file mode 100644
index 00000000..ceed4d66
Binary files /dev/null and b/frontend/src/assets/sources/whitehall-medical-center.png differ
diff --git a/frontend/src/assets/sources/whiteside-county-community-health-clinic.png b/frontend/src/assets/sources/whiteside-county-community-health-clinic.png
new file mode 100644
index 00000000..a56d2a6e
Binary files /dev/null and b/frontend/src/assets/sources/whiteside-county-community-health-clinic.png differ
diff --git a/frontend/src/assets/sources/whiteville-eye-associates-p-a.png b/frontend/src/assets/sources/whiteville-eye-associates-p-a.png
new file mode 100644
index 00000000..77fae790
Binary files /dev/null and b/frontend/src/assets/sources/whiteville-eye-associates-p-a.png differ
diff --git a/frontend/src/assets/sources/wichita-county-health-center.png b/frontend/src/assets/sources/wichita-county-health-center.png
new file mode 100644
index 00000000..ed33dd08
Binary files /dev/null and b/frontend/src/assets/sources/wichita-county-health-center.png differ
diff --git a/frontend/src/assets/sources/wichita-nephrology-group.png b/frontend/src/assets/sources/wichita-nephrology-group.png
new file mode 100644
index 00000000..6ce1e590
Binary files /dev/null and b/frontend/src/assets/sources/wichita-nephrology-group.png differ
diff --git a/frontend/src/assets/sources/wilkes-regional-medical-center.png b/frontend/src/assets/sources/wilkes-regional-medical-center.png
new file mode 100644
index 00000000..40f3dde8
Binary files /dev/null and b/frontend/src/assets/sources/wilkes-regional-medical-center.png differ
diff --git a/frontend/src/assets/sources/will-county-community-health-center.png b/frontend/src/assets/sources/will-county-community-health-center.png
new file mode 100644
index 00000000..6069b617
Binary files /dev/null and b/frontend/src/assets/sources/will-county-community-health-center.png differ
diff --git a/frontend/src/assets/sources/willamette-family-medical-center.jpg b/frontend/src/assets/sources/willamette-family-medical-center.jpg
new file mode 100644
index 00000000..b31d8299
Binary files /dev/null and b/frontend/src/assets/sources/willamette-family-medical-center.jpg differ
diff --git a/frontend/src/assets/sources/willamette-urology-pc.jpg b/frontend/src/assets/sources/willamette-urology-pc.jpg
new file mode 100644
index 00000000..e33166cc
Binary files /dev/null and b/frontend/src/assets/sources/willamette-urology-pc.jpg differ
diff --git a/frontend/src/assets/sources/william-h-cherry-md-inc.png b/frontend/src/assets/sources/william-h-cherry-md-inc.png
new file mode 100644
index 00000000..8b8d43ad
Binary files /dev/null and b/frontend/src/assets/sources/william-h-cherry-md-inc.png differ
diff --git a/frontend/src/assets/sources/wills-eye-ophthalmology-clinic-inc.png b/frontend/src/assets/sources/wills-eye-ophthalmology-clinic-inc.png
new file mode 100644
index 00000000..e7a04f2f
Binary files /dev/null and b/frontend/src/assets/sources/wills-eye-ophthalmology-clinic-inc.png differ
diff --git a/frontend/src/assets/sources/wilmington-eye-p-a.png b/frontend/src/assets/sources/wilmington-eye-p-a.png
new file mode 100644
index 00000000..d1f4cf84
Binary files /dev/null and b/frontend/src/assets/sources/wilmington-eye-p-a.png differ
diff --git a/frontend/src/assets/sources/wilmington-eye-p-a.svg b/frontend/src/assets/sources/wilmington-eye-p-a.svg
new file mode 100644
index 00000000..63701972
--- /dev/null
+++ b/frontend/src/assets/sources/wilmington-eye-p-a.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/assets/sources/wilmington-health.jpg b/frontend/src/assets/sources/wilmington-health.jpg
new file mode 100644
index 00000000..f45b89a2
Binary files /dev/null and b/frontend/src/assets/sources/wilmington-health.jpg differ
diff --git a/frontend/src/assets/sources/wilmington-maternal-fetal-medicine.png b/frontend/src/assets/sources/wilmington-maternal-fetal-medicine.png
new file mode 100644
index 00000000..bba2de3e
Binary files /dev/null and b/frontend/src/assets/sources/wilmington-maternal-fetal-medicine.png differ
diff --git a/frontend/src/assets/sources/wilson-medical-center-reese-campus.png b/frontend/src/assets/sources/wilson-medical-center-reese-campus.png
new file mode 100644
index 00000000..cd0dbaa8
Binary files /dev/null and b/frontend/src/assets/sources/wilson-medical-center-reese-campus.png differ
diff --git a/frontend/src/assets/sources/windham-eye-group-pc.jpg b/frontend/src/assets/sources/windham-eye-group-pc.jpg
new file mode 100644
index 00000000..ad70b0bc
Binary files /dev/null and b/frontend/src/assets/sources/windham-eye-group-pc.jpg differ
diff --git a/frontend/src/assets/sources/winkler-county-memorial-hospital.png b/frontend/src/assets/sources/winkler-county-memorial-hospital.png
new file mode 100644
index 00000000..de14acfb
Binary files /dev/null and b/frontend/src/assets/sources/winkler-county-memorial-hospital.png differ
diff --git a/frontend/src/assets/sources/winston-bone-and-joint-surg-assoc.png b/frontend/src/assets/sources/winston-bone-and-joint-surg-assoc.png
new file mode 100644
index 00000000..9ae09e02
Binary files /dev/null and b/frontend/src/assets/sources/winston-bone-and-joint-surg-assoc.png differ
diff --git a/frontend/src/assets/sources/wisconsin-health-fund.png b/frontend/src/assets/sources/wisconsin-health-fund.png
new file mode 100644
index 00000000..dca1f178
Binary files /dev/null and b/frontend/src/assets/sources/wisconsin-health-fund.png differ
diff --git a/frontend/src/assets/sources/wishek-community-hospital.png b/frontend/src/assets/sources/wishek-community-hospital.png
new file mode 100644
index 00000000..b6186bd8
Binary files /dev/null and b/frontend/src/assets/sources/wishek-community-hospital.png differ
diff --git a/frontend/src/assets/sources/wombkeepers-az-obstetrics-and-gynecology-pc.png b/frontend/src/assets/sources/wombkeepers-az-obstetrics-and-gynecology-pc.png
new file mode 100644
index 00000000..ad04c9b0
Binary files /dev/null and b/frontend/src/assets/sources/wombkeepers-az-obstetrics-and-gynecology-pc.png differ
diff --git a/frontend/src/assets/sources/womens-choice-oncology-pllc.png b/frontend/src/assets/sources/womens-choice-oncology-pllc.png
new file mode 100644
index 00000000..9f8a8a8c
Binary files /dev/null and b/frontend/src/assets/sources/womens-choice-oncology-pllc.png differ
diff --git a/frontend/src/assets/sources/womens-healthcare-assoc-pllc.jpg b/frontend/src/assets/sources/womens-healthcare-assoc-pllc.jpg
new file mode 100644
index 00000000..04ced784
Binary files /dev/null and b/frontend/src/assets/sources/womens-healthcare-assoc-pllc.jpg differ
diff --git a/frontend/src/assets/sources/womens-healthcare-of-suffolk.png b/frontend/src/assets/sources/womens-healthcare-of-suffolk.png
new file mode 100644
index 00000000..e9d86d64
Binary files /dev/null and b/frontend/src/assets/sources/womens-healthcare-of-suffolk.png differ
diff --git a/frontend/src/assets/sources/wood-county-community-health-center.png b/frontend/src/assets/sources/wood-county-community-health-center.png
new file mode 100644
index 00000000..0fd1c1e6
Binary files /dev/null and b/frontend/src/assets/sources/wood-county-community-health-center.png differ
diff --git a/frontend/src/assets/sources/wood-county-health-department.png b/frontend/src/assets/sources/wood-county-health-department.png
new file mode 100644
index 00000000..324704e0
Binary files /dev/null and b/frontend/src/assets/sources/wood-county-health-department.png differ
diff --git a/frontend/src/assets/sources/wood-county-womens-care-llc.png b/frontend/src/assets/sources/wood-county-womens-care-llc.png
new file mode 100644
index 00000000..b81e5692
Binary files /dev/null and b/frontend/src/assets/sources/wood-county-womens-care-llc.png differ
diff --git a/frontend/yarn.lock b/frontend/yarn.lock
index fbc372f8..d258975c 100644
--- a/frontend/yarn.lock
+++ b/frontend/yarn.lock
@@ -3869,11 +3869,6 @@ function-bind@^1.1.1:
resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
-fuse.js@^6.6.2:
- version "6.6.2"
- resolved "https://registry.npmjs.org/fuse.js/-/fuse.js-6.6.2.tgz#fe463fed4b98c0226ac3da2856a415576dc9a111"
- integrity sha512-cJaJkxCCxC8qIIcPBF9yGxY0W/tVZS3uEISDxhYIdtk8OL93pe+6Zj7LjCqVV4dzbqcriOZ+kQ/NE4RXZHsIGA==
-
gauge@^4.0.3:
version "4.0.4"
resolved "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz#52ff0652f2bbf607a989793d53b751bef2328dce"
@@ -5291,6 +5286,13 @@ ngx-highlightjs@^7.0.1:
highlightjs-line-numbers.js "^2.8.0"
tslib "^2.0.0"
+ngx-infinite-scroll@^14.0.0:
+ version "14.0.1"
+ resolved "https://registry.npmjs.org/ngx-infinite-scroll/-/ngx-infinite-scroll-14.0.1.tgz#037abd55c441300651d03bc64a69d3475cce7bf9"
+ integrity sha512-PlGL29d2PxNJTn6qdXs4Es0HlJTZ/ZqOVvFWECWm7mK2fN/q+q62s0iUQ7xRf76NuqoNovXvrjZ1zwLFT6c0Wg==
+ dependencies:
+ tslib "^2.3.0"
+
ngx-moment@^6.0.2:
version "6.0.2"
resolved "https://registry.npmjs.org/ngx-moment/-/ngx-moment-6.0.2.tgz#7acba9830746e9c2862d261150f2c8adb20eb4f6"
diff --git a/go.mod b/go.mod
index 3f6c6524..dbe891eb 100644
--- a/go.mod
+++ b/go.mod
@@ -5,7 +5,7 @@ go 1.18
require (
github.com/analogj/go-util v0.0.0-20210417161720-39b497cca03b
github.com/dominikbraun/graph v0.15.0
- github.com/fastenhealth/fasten-sources v0.1.0
+ github.com/fastenhealth/fasten-sources v0.1.2
github.com/gin-gonic/gin v1.8.1
github.com/glebarez/sqlite v1.5.0
github.com/golang-jwt/jwt/v4 v4.4.2
diff --git a/go.sum b/go.sum
index 7da09b7c..cf8b7c84 100644
--- a/go.sum
+++ b/go.sum
@@ -74,8 +74,8 @@ github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1m
github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po=
github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk=
github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
-github.com/fastenhealth/fasten-sources v0.1.0 h1:16rAOo/dd35mINRVI7XnCohKK153FLdzOjBduvhhwks=
-github.com/fastenhealth/fasten-sources v0.1.0/go.mod h1:NBh0n2OBwJC10CHqkIx4WYQcDBRywJU4TAR8rSfR2Ts=
+github.com/fastenhealth/fasten-sources v0.1.2 h1:VW+gNggUeX+SrqYsWleaiYlCRNItpu4F3Bml1g5UVWQ=
+github.com/fastenhealth/fasten-sources v0.1.2/go.mod h1:OYNf47aUBNP2J0kPkrm1X9Mq+30v92yDBrRy4nqPNEU=
github.com/fastenhealth/gofhir-models v0.0.4 h1:Q//StwNXGfK+WAS2DckGBHAP1R4cHMRZEF/sLGgmR04=
github.com/fastenhealth/gofhir-models v0.0.4/go.mod h1:xB8ikGxu3bUq2b1JYV+CZpHqBaLXpOizFR0eFBCunis=
github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=