From bbed94212094d500c696b4baaaedf62cb8ca19d3 Mon Sep 17 00:00:00 2001 From: Brian Cummings Date: Mon, 12 Jan 2026 19:44:26 -0500 Subject: [PATCH 1/5] Fix Sonar findings --- .gitignore | 7 +- .../Integration/TestAuthHandler.cs | 3 + .../Service/MigrationServiceTests.cs | 4 +- .../Controllers/PathfinderController.cs | 91 +++++++++++-------- .../PathfinderHonorManager.csproj | 1 + .../Service/MigrationService.cs | 14 +-- .../Service/PathfinderAchievementService.cs | 14 ++- .../Swagger/AuthorizeCheckDocumentFilter.cs | 4 +- 8 files changed, 82 insertions(+), 56 deletions(-) diff --git a/.gitignore b/.gitignore index 8c27f2f..0235160 100644 --- a/.gitignore +++ b/.gitignore @@ -251,8 +251,9 @@ _TeamCity* *.coverage *.coveragexml -# Coverlet code coverage results -coverage.json +# Coverlet code coverage results +coverage.json +coverage.opencover.xml # NCrunch _NCrunch_* @@ -448,4 +449,4 @@ ASALocalRun/ .mfractor/ # Local History for Visual Studio -.localhistory/ \ No newline at end of file +.localhistory/ diff --git a/PathfinderHonorManager.Tests/Integration/TestAuthHandler.cs b/PathfinderHonorManager.Tests/Integration/TestAuthHandler.cs index 4fb3b51..40e102e 100644 --- a/PathfinderHonorManager.Tests/Integration/TestAuthHandler.cs +++ b/PathfinderHonorManager.Tests/Integration/TestAuthHandler.cs @@ -35,8 +35,11 @@ public TestAuthHandler( IOptionsMonitor options, ILoggerFactory logger, UrlEncoder encoder, + // TODO: Switch to TimeProvider when AuthenticationHandler supports it for this target framework. +#pragma warning disable CS0618 ISystemClock clock) : base(options, logger, encoder, clock) +#pragma warning restore CS0618 { } diff --git a/PathfinderHonorManager.Tests/Service/MigrationServiceTests.cs b/PathfinderHonorManager.Tests/Service/MigrationServiceTests.cs index 4a1bf07..f03c04e 100644 --- a/PathfinderHonorManager.Tests/Service/MigrationServiceTests.cs +++ b/PathfinderHonorManager.Tests/Service/MigrationServiceTests.cs @@ -30,7 +30,7 @@ public void StartAsync_MissingConnectionString_Throws() } [Test] - public async Task StopAsync_ReturnsCompletedTask() + public void StopAsync_ReturnsCompletedTask() { var services = new ServiceCollection().BuildServiceProvider(); var configuration = new ConfigurationBuilder() @@ -39,7 +39,7 @@ public async Task StopAsync_ReturnsCompletedTask() var logger = NullLogger.Instance; var service = new MigrationService(services, logger, configuration); - await service.StopAsync(CancellationToken.None); + Assert.DoesNotThrowAsync(() => service.StopAsync(CancellationToken.None)); } } } diff --git a/PathfinderHonorManager/Controllers/PathfinderController.cs b/PathfinderHonorManager/Controllers/PathfinderController.cs index cd20e33..36abb35 100644 --- a/PathfinderHonorManager/Controllers/PathfinderController.cs +++ b/PathfinderHonorManager/Controllers/PathfinderController.cs @@ -196,50 +196,61 @@ public async Task BulkPutPathfindersAsync([FromBody] IEnumerable< { foreach (var item in data.Items) { - try - { - var pathfinder = await _pathfinderService.UpdateAsync(item.PathfinderId, new Incoming.PutPathfinderDto { Grade = item.Grade, IsActive = item.IsActive }, clubCode, token); - - responses.Add(new - { - status = pathfinder != null ? StatusCodes.Status200OK : StatusCodes.Status404NotFound, - pathfinderId = item.PathfinderId, - }); - - if (pathfinder == null) - { - _logger.LogWarning("Pathfinder with ID {PathfinderId} not found during bulk update for club {ClubCode}", item.PathfinderId, clubCode); - } - else - { - _logger.LogInformation("Updated pathfinder with ID {PathfinderId} during bulk update for club {ClubCode}", item.PathfinderId, clubCode); - } - } - catch (FluentValidation.ValidationException ex) - { - _logger.LogWarning(ex, "Validation failed while bulk updating pathfinder with ID {PathfinderId} for club {ClubCode}", item.PathfinderId, clubCode); - responses.Add(new - { - status = StatusCodes.Status400BadRequest, - pathfinderId = item.PathfinderId, - errors = ex.Errors.Select(e => e.ErrorMessage) - }); - } - catch (DbUpdateException ex) - { - _logger.LogError(ex, "Database error while bulk updating pathfinder with ID {PathfinderId} for club {ClubCode}", item.PathfinderId, clubCode); - responses.Add(new - { - status = StatusCodes.Status400BadRequest, - pathfinderId = item.PathfinderId, - error = ex.Message - }); - } + responses.Add(await BuildBulkUpdateResponseAsync(item, clubCode, token)); } } _logger.LogInformation("Completed bulk update of {Count} pathfinders for club {ClubCode}", bulkData.Count(), clubCode); return StatusCode(StatusCodes.Status207MultiStatus, responses); } + + private async Task BuildBulkUpdateResponseAsync(Incoming.BulkPutPathfinderItemDto item, string clubCode, CancellationToken token) + { + try + { + var pathfinder = await _pathfinderService.UpdateAsync( + item.PathfinderId, + new Incoming.PutPathfinderDto { Grade = item.Grade, IsActive = item.IsActive }, + clubCode, + token); + + if (pathfinder == null) + { + _logger.LogWarning("Pathfinder with ID {PathfinderId} not found during bulk update for club {ClubCode}", item.PathfinderId, clubCode); + return new + { + status = StatusCodes.Status404NotFound, + pathfinderId = item.PathfinderId + }; + } + + _logger.LogInformation("Updated pathfinder with ID {PathfinderId} during bulk update for club {ClubCode}", item.PathfinderId, clubCode); + return new + { + status = StatusCodes.Status200OK, + pathfinderId = item.PathfinderId + }; + } + catch (FluentValidation.ValidationException ex) + { + _logger.LogWarning(ex, "Validation failed while bulk updating pathfinder with ID {PathfinderId} for club {ClubCode}", item.PathfinderId, clubCode); + return new + { + status = StatusCodes.Status400BadRequest, + pathfinderId = item.PathfinderId, + errors = ex.Errors.Select(e => e.ErrorMessage) + }; + } + catch (DbUpdateException ex) + { + _logger.LogError(ex, "Database error while bulk updating pathfinder with ID {PathfinderId} for club {ClubCode}", item.PathfinderId, clubCode); + return new + { + status = StatusCodes.Status400BadRequest, + pathfinderId = item.PathfinderId, + error = ex.Message + }; + } + } } -} \ No newline at end of file +} diff --git a/PathfinderHonorManager/PathfinderHonorManager.csproj b/PathfinderHonorManager/PathfinderHonorManager.csproj index 039da2b..1adba2d 100644 --- a/PathfinderHonorManager/PathfinderHonorManager.csproj +++ b/PathfinderHonorManager/PathfinderHonorManager.csproj @@ -5,6 +5,7 @@ 8e74b3e9-b279-4879-9bf9-9e1d25205f9f true $(NoWarn);1591 + **/Migrations/*.cs;**/Dto/**/*.cs diff --git a/PathfinderHonorManager/Service/MigrationService.cs b/PathfinderHonorManager/Service/MigrationService.cs index c5ccf2f..25f0f9d 100644 --- a/PathfinderHonorManager/Service/MigrationService.cs +++ b/PathfinderHonorManager/Service/MigrationService.cs @@ -114,10 +114,10 @@ private async Task NeedsBaselineAsync(PathfinderContext context, Cancellat await context.Clubs.AnyAsync(cancellationToken); await context.Honors.AnyAsync(cancellationToken); } - catch + catch (Exception ex) { // Tables don't exist, this is a fresh database - _logger.LogInformation("Application tables not found - fresh database, no baseline needed"); + _logger.LogInformation(ex, "Application tables not found - fresh database, no baseline needed"); return false; } @@ -135,10 +135,10 @@ private async Task NeedsBaselineAsync(PathfinderContext context, Cancellat return false; } - catch + catch (Exception ex) { // Migration table doesn't exist, need baseline - _logger.LogInformation("Cannot read migration history - baseline needed"); + _logger.LogInformation(ex, "Cannot read migration history - baseline needed"); return true; } } @@ -162,7 +162,7 @@ await context.Database.ExecuteSqlRawAsync(@" ""ProductVersion"" character varying(32) NOT NULL, CONSTRAINT ""PK___EFMigrationsHistory"" PRIMARY KEY (""MigrationId"") ) - "); + ", cancellationToken); // Add baseline migration entry for existing schema // Since the production database already has all the schema we need, @@ -171,14 +171,14 @@ await context.Database.ExecuteSqlRawAsync(@" INSERT INTO ""__EFMigrationsHistory"" (""MigrationId"", ""ProductVersion"") VALUES ('20250826224824_InitialSchemaWithProperDeleteBehavior', '9.0.8') ON CONFLICT (""MigrationId"") DO NOTHING - "); + ", cancellationToken); _logger.LogInformation("Baseline migration history created successfully"); } catch (Exception ex) { _logger.LogError(ex, "Failed to create baseline migration history"); - throw; + throw new InvalidOperationException("Failed to create baseline migration history.", ex); } } } diff --git a/PathfinderHonorManager/Service/PathfinderAchievementService.cs b/PathfinderHonorManager/Service/PathfinderAchievementService.cs index 56e5b04..3fe1e41 100644 --- a/PathfinderHonorManager/Service/PathfinderAchievementService.cs +++ b/PathfinderHonorManager/Service/PathfinderAchievementService.cs @@ -38,7 +38,9 @@ public PathfinderAchievementService( public async Task> GetAllAsync(bool showAllAchievements = false, CancellationToken token = default) { - _logger.LogInformation($"Getting all pathfinder achievements, showAllAchievements: {showAllAchievements}"); + _logger.LogInformation( + "Getting all pathfinder achievements, showAllAchievements: {ShowAllAchievements}", + showAllAchievements); IQueryable query = _dbContext.PathfinderAchievements .Include(a => a.Achievement) .Include(c => c.Achievement.PathfinderClass) @@ -63,7 +65,10 @@ public PathfinderAchievementService( public async Task GetByIdAsync(Guid pathfinderId, Guid achievementId, CancellationToken token) { - _logger.LogInformation($"Getting pathfinder achievement by Pathfinder ID: {pathfinderId} Achievement ID {achievementId}"); + _logger.LogInformation( + "Getting pathfinder achievement by Pathfinder ID: {PathfinderId} Achievement ID {AchievementId}", + pathfinderId, + achievementId); var pathfinderAchievement = await _dbContext.PathfinderAchievements .Include(a => a.Achievement) .Include(a => a.Achievement.Category) @@ -74,7 +79,10 @@ public PathfinderAchievementService( } public async Task> GetAllAchievementsForPathfinderAsync(Guid pathfinderId, bool showAllAchievements = false, CancellationToken token = default) { - _logger.LogInformation($"Getting all achievements for Pathfinder ID: {pathfinderId}, showAllAchievements: {showAllAchievements}"); + _logger.LogInformation( + "Getting all achievements for Pathfinder ID: {PathfinderId}, showAllAchievements: {ShowAllAchievements}", + pathfinderId, + showAllAchievements); IQueryable query = _dbContext.PathfinderAchievements .Where(pa => pa.PathfinderID == pathfinderId) diff --git a/PathfinderHonorManager/Swagger/AuthorizeCheckDocumentFilter.cs b/PathfinderHonorManager/Swagger/AuthorizeCheckDocumentFilter.cs index 4a8361a..52a5011 100644 --- a/PathfinderHonorManager/Swagger/AuthorizeCheckDocumentFilter.cs +++ b/PathfinderHonorManager/Swagger/AuthorizeCheckDocumentFilter.cs @@ -10,6 +10,8 @@ namespace PathfinderHonorManager.Swagger { public class AuthorizeCheckDocumentFilter : IDocumentFilter { + private const char UrlPathSeparator = '/'; + public void Apply(OpenApiDocument swaggerDoc, DocumentFilterContext context) { var schemeReference = new OpenApiSecuritySchemeReference("oauth2", swaggerDoc, null); @@ -28,7 +30,7 @@ public void Apply(OpenApiDocument swaggerDoc, DocumentFilterContext context) continue; } - var pathKey = "/" + (apiDescription.RelativePath ?? string.Empty); + var pathKey = UrlPathSeparator + (apiDescription.RelativePath ?? string.Empty); pathKey = pathKey.Split('?', 2)[0].TrimEnd('/'); if (!swaggerDoc.Paths.TryGetValue(pathKey, out var pathItem)) From 012c7f7a84b7f85abe0da0d033405e6a4d354d93 Mon Sep 17 00:00:00 2001 From: Brian Cummings Date: Mon, 12 Jan 2026 20:59:22 -0500 Subject: [PATCH 2/5] Add tests for updated endpoints --- .../Controllers/PathfindersControllerTests.cs | 158 +++++++++++++++++- .../AuthorizeCheckDocumentFilterTests.cs | 66 ++++++++ .../Service/PathfinderAchievementService.cs | 22 ++- 3 files changed, 237 insertions(+), 9 deletions(-) create mode 100644 PathfinderHonorManager.Tests/Swagger/AuthorizeCheckDocumentFilterTests.cs diff --git a/PathfinderHonorManager.Tests/Controllers/PathfindersControllerTests.cs b/PathfinderHonorManager.Tests/Controllers/PathfindersControllerTests.cs index ec96cad..d7575c9 100644 --- a/PathfinderHonorManager.Tests/Controllers/PathfindersControllerTests.cs +++ b/PathfinderHonorManager.Tests/Controllers/PathfindersControllerTests.cs @@ -345,6 +345,162 @@ public async Task BulkPut_WithValidData_ReturnsMultiStatus() Assert.That(multiStatusResult.StatusCode, Is.EqualTo(207)); } + [Test] + public async Task BulkPut_WithValidItem_ReturnsOkStatusPerItem() + { + var pathfinderId = Guid.NewGuid(); + var bulkData = new List + { + new Incoming.BulkPutPathfinderDto + { + Items = new List + { + new Incoming.BulkPutPathfinderItemDto + { + PathfinderId = pathfinderId, + Grade = 6, + IsActive = true + } + } + } + }; + + var updatedPathfinder = new Outgoing.PathfinderDto + { + PathfinderID = pathfinderId, + FirstName = "Test", + LastName = "User", + Grade = 6, + IsActive = true + }; + + _pathfinderServiceMock + .Setup(x => x.UpdateAsync(pathfinderId, It.IsAny(), TestClubCode, It.IsAny())) + .ReturnsAsync(updatedPathfinder); + + var result = await _controller.BulkPutPathfindersAsync(bulkData, new CancellationToken()); + + Assert.That(result, Is.Not.Null); + var multiStatusResult = result as ObjectResult; + Assert.That(multiStatusResult.StatusCode, Is.EqualTo(207)); + var responses = ((IEnumerable)multiStatusResult.Value).ToList(); + Assert.That(responses.Count, Is.EqualTo(1)); + Assert.That(GetAnonymousProperty(responses[0], "status"), Is.EqualTo(StatusCodes.Status200OK)); + } + + [Test] + public async Task BulkPut_WithMissingPathfinder_ReturnsNotFoundStatusPerItem() + { + var pathfinderId = Guid.NewGuid(); + var bulkData = new List + { + new Incoming.BulkPutPathfinderDto + { + Items = new List + { + new Incoming.BulkPutPathfinderItemDto + { + PathfinderId = pathfinderId, + Grade = 6, + IsActive = true + } + } + } + }; + + _pathfinderServiceMock + .Setup(x => x.UpdateAsync(pathfinderId, It.IsAny(), TestClubCode, It.IsAny())) + .ReturnsAsync((Outgoing.PathfinderDto)null); + + var result = await _controller.BulkPutPathfindersAsync(bulkData, new CancellationToken()); + + Assert.That(result, Is.Not.Null); + var multiStatusResult = result as ObjectResult; + Assert.That(multiStatusResult.StatusCode, Is.EqualTo(207)); + var responses = ((IEnumerable)multiStatusResult.Value).ToList(); + Assert.That(responses.Count, Is.EqualTo(1)); + Assert.That(GetAnonymousProperty(responses[0], "status"), Is.EqualTo(StatusCodes.Status404NotFound)); + } + + [Test] + public async Task BulkPut_WithValidationError_ReturnsBadRequestStatusPerItem() + { + var pathfinderId = Guid.NewGuid(); + var bulkData = new List + { + new Incoming.BulkPutPathfinderDto + { + Items = new List + { + new Incoming.BulkPutPathfinderItemDto + { + PathfinderId = pathfinderId, + Grade = 15, + IsActive = true + } + } + } + }; + + var validationErrors = new List + { + new FluentValidation.Results.ValidationFailure("Grade", "Grade must be between 5 and 12.") + }; + var validationException = new ValidationException(validationErrors); + + _pathfinderServiceMock + .Setup(x => x.UpdateAsync(pathfinderId, It.IsAny(), TestClubCode, It.IsAny())) + .ThrowsAsync(validationException); + + var result = await _controller.BulkPutPathfindersAsync(bulkData, new CancellationToken()); + + Assert.That(result, Is.Not.Null); + var multiStatusResult = result as ObjectResult; + Assert.That(multiStatusResult.StatusCode, Is.EqualTo(207)); + var responses = ((IEnumerable)multiStatusResult.Value).ToList(); + Assert.That(responses.Count, Is.EqualTo(1)); + Assert.That(GetAnonymousProperty(responses[0], "status"), Is.EqualTo(StatusCodes.Status400BadRequest)); + } + + [Test] + public async Task BulkPut_WithDatabaseError_ReturnsBadRequestStatusPerItem() + { + var pathfinderId = Guid.NewGuid(); + var bulkData = new List + { + new Incoming.BulkPutPathfinderDto + { + Items = new List + { + new Incoming.BulkPutPathfinderItemDto + { + PathfinderId = pathfinderId, + Grade = 6, + IsActive = true + } + } + } + }; + + _pathfinderServiceMock + .Setup(x => x.UpdateAsync(pathfinderId, It.IsAny(), TestClubCode, It.IsAny())) + .ThrowsAsync(new DbUpdateException("Database error")); + + var result = await _controller.BulkPutPathfindersAsync(bulkData, new CancellationToken()); + + Assert.That(result, Is.Not.Null); + var multiStatusResult = result as ObjectResult; + Assert.That(multiStatusResult.StatusCode, Is.EqualTo(207)); + var responses = ((IEnumerable)multiStatusResult.Value).ToList(); + Assert.That(responses.Count, Is.EqualTo(1)); + Assert.That(GetAnonymousProperty(responses[0], "status"), Is.EqualTo(StatusCodes.Status400BadRequest)); + } + + private static T GetAnonymousProperty(object instance, string propertyName) + { + return (T)instance.GetType().GetProperty(propertyName)!.GetValue(instance); + } + [TearDown] public async Task TearDown() { @@ -358,4 +514,4 @@ public async Task OneTimeTearDown() await _dbContext.DisposeAsync(); } } -} \ No newline at end of file +} diff --git a/PathfinderHonorManager.Tests/Swagger/AuthorizeCheckDocumentFilterTests.cs b/PathfinderHonorManager.Tests/Swagger/AuthorizeCheckDocumentFilterTests.cs new file mode 100644 index 0000000..ddd7fcb --- /dev/null +++ b/PathfinderHonorManager.Tests/Swagger/AuthorizeCheckDocumentFilterTests.cs @@ -0,0 +1,66 @@ +using System.Collections.Generic; +using System.Net.Http; +using System.Text.Json; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Mvc.Abstractions; +using Microsoft.AspNetCore.Mvc.ApiExplorer; +using Microsoft.OpenApi; +using NUnit.Framework; +using PathfinderHonorManager.Swagger; +using Swashbuckle.AspNetCore.SwaggerGen; + +namespace PathfinderHonorManager.Tests.Swagger +{ + public class AuthorizeCheckDocumentFilterTests + { + [Test] + public void Apply_AddsSecurityRequirement_ForAuthorizedEndpoint() + { + var swaggerDoc = new OpenApiDocument + { + Components = new OpenApiComponents + { + SecuritySchemes = new Dictionary + { + ["oauth2"] = new OpenApiSecurityScheme() + } + }, + Paths = new OpenApiPaths() + }; + + swaggerDoc.Paths.Add("/api/test", new OpenApiPathItem + { + Operations = new Dictionary + { + [HttpMethod.Get] = new OpenApiOperation() + } + }); + + var apiDescription = new ApiDescription + { + RelativePath = "api/test", + HttpMethod = "GET", + ActionDescriptor = new ActionDescriptor + { + EndpointMetadata = new List { new AuthorizeAttribute() } + } + }; + + var schemaGenerator = new SchemaGenerator( + new SchemaGeneratorOptions(), + new JsonSerializerDataContractResolver(new JsonSerializerOptions())); + var context = new DocumentFilterContext( + new List { apiDescription }, + schemaGenerator, + new SchemaRepository()); + + var filter = new AuthorizeCheckDocumentFilter(); + + filter.Apply(swaggerDoc, context); + + var operation = swaggerDoc.Paths["/api/test"].Operations[HttpMethod.Get]; + Assert.That(operation.Security, Is.Not.Null); + Assert.That(operation.Security.Count, Is.EqualTo(1)); + } + } +} diff --git a/PathfinderHonorManager/Service/PathfinderAchievementService.cs b/PathfinderHonorManager/Service/PathfinderAchievementService.cs index 3fe1e41..ae1b61a 100644 --- a/PathfinderHonorManager/Service/PathfinderAchievementService.cs +++ b/PathfinderHonorManager/Service/PathfinderAchievementService.cs @@ -65,10 +65,13 @@ public PathfinderAchievementService( public async Task GetByIdAsync(Guid pathfinderId, Guid achievementId, CancellationToken token) { - _logger.LogInformation( - "Getting pathfinder achievement by Pathfinder ID: {PathfinderId} Achievement ID {AchievementId}", - pathfinderId, - achievementId); + if (_logger.IsEnabled(LogLevel.Information)) + { + _logger.LogInformation( + "Getting pathfinder achievement by Pathfinder ID: {PathfinderId} Achievement ID {AchievementId}", + pathfinderId, + achievementId); + } var pathfinderAchievement = await _dbContext.PathfinderAchievements .Include(a => a.Achievement) .Include(a => a.Achievement.Category) @@ -79,10 +82,13 @@ public PathfinderAchievementService( } public async Task> GetAllAchievementsForPathfinderAsync(Guid pathfinderId, bool showAllAchievements = false, CancellationToken token = default) { - _logger.LogInformation( - "Getting all achievements for Pathfinder ID: {PathfinderId}, showAllAchievements: {ShowAllAchievements}", - pathfinderId, - showAllAchievements); + if (_logger.IsEnabled(LogLevel.Information)) + { + _logger.LogInformation( + "Getting all achievements for Pathfinder ID: {PathfinderId}, showAllAchievements: {ShowAllAchievements}", + pathfinderId, + showAllAchievements); + } IQueryable query = _dbContext.PathfinderAchievements .Where(pa => pa.PathfinderID == pathfinderId) From 639ea1b24417b83b68c602409929d1f9c8fdb337 Mon Sep 17 00:00:00 2001 From: Brian Cummings Date: Mon, 12 Jan 2026 21:02:09 -0500 Subject: [PATCH 3/5] Remove legacy database scripts --- AGENTS.md | 1 - .../Pathfinder-DB/CreateSchemata.sql | 817 ------------------ README.md | 1 - 3 files changed, 819 deletions(-) delete mode 100644 PathfinderHonorManager/Pathfinder-DB/CreateSchemata.sql diff --git a/AGENTS.md b/AGENTS.md index 25f9cf7..f1c4ae9 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -3,7 +3,6 @@ ## Project Structure & Module Organization - `PathfinderHonorManager/` hosts the ASP.NET Core API. Key areas: `Controllers/`, `Service/`, `DataAccess/`, `Model/`, `Dto/`, `Validators/`, `Healthcheck/`, `Migrations/`, `Swagger/`, `Mapping/`, and `Converters/`. - `PathfinderHonorManager.Tests/` contains NUnit tests plus test helpers and seeders. -- `PathfinderHonorManager/Pathfinder-DB/` stores database SQL scripts. - Configuration lives in `PathfinderHonorManager/appsettings.json`, `PathfinderHonorManager/appsettings.Development.json`, and `PathfinderHonorManager/Properties/launchSettings.json`. ## Build, Test, and Development Commands diff --git a/PathfinderHonorManager/Pathfinder-DB/CreateSchemata.sql b/PathfinderHonorManager/Pathfinder-DB/CreateSchemata.sql deleted file mode 100644 index 70b3847..0000000 --- a/PathfinderHonorManager/Pathfinder-DB/CreateSchemata.sql +++ /dev/null @@ -1,817 +0,0 @@ --- Create database pathfinder and then run this file from PQSL --- psql -U your_username -d pathfinder --- \i /path/to/your_sql_file.sql - -SET statement_timeout = 0; -SET lock_timeout = 0; -SET idle_in_transaction_session_timeout = 0; -SET client_encoding = 'UTF8'; -SET standard_conforming_strings = on; -SELECT pg_catalog.set_config('search_path', '', false); -SET check_function_bodies = false; -SET xmloption = content; -SET client_min_messages = warning; -SET row_security = off; - --- --- TOC entry 5 (class 2615 OID 2200) --- Name: public; Type: SCHEMA; Schema: -; Owner: postgres --- - --- *not* creating schema, since initdb creates it - - -ALTER SCHEMA public OWNER TO postgres; - --- --- TOC entry 2 (class 3079 OID 16510) --- Name: uuid-ossp; Type: EXTENSION; Schema: -; Owner: - --- - -CREATE EXTENSION IF NOT EXISTS "uuid-ossp" WITH SCHEMA public; - - --- --- TOC entry 3660 (class 0 OID 0) --- Dependencies: 2 --- Name: EXTENSION "uuid-ossp"; Type: COMMENT; Schema: -; Owner: --- - -COMMENT ON EXTENSION "uuid-ossp" IS 'generate universally unique identifiers (UUIDs)'; - - --- --- TOC entry 227 (class 1255 OID 16521) --- Name: trigger_set_created_timestamp(); Type: FUNCTION; Schema: public; Owner: postgres --- - -CREATE FUNCTION public.trigger_set_created_timestamp() RETURNS trigger - LANGUAGE plpgsql - AS $$ -BEGIN - NEW.create_timestamp = NOW(); - RETURN NEW; -END; -$$; - - -ALTER FUNCTION public.trigger_set_created_timestamp() OWNER TO postgres; - --- --- TOC entry 228 (class 1255 OID 16522) --- Name: trigger_set_updated_timestamp(); Type: FUNCTION; Schema: public; Owner: postgres --- - -CREATE FUNCTION public.trigger_set_updated_timestamp() RETURNS trigger - LANGUAGE plpgsql - AS $$ -BEGIN - NEW.update_timestamp = NOW(); - RETURN NEW; -END; -$$; - - -ALTER FUNCTION public.trigger_set_updated_timestamp() OWNER TO postgres; - -SET default_tablespace = ''; - -SET default_table_access_method = heap; - --- --- TOC entry 210 (class 1259 OID 16523) --- Name: category; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.category ( - category_id uuid DEFAULT public.uuid_generate_v1mc() NOT NULL, - name text NOT NULL -); - - -ALTER TABLE public.category OWNER TO postgres; - --- --- TOC entry 211 (class 1259 OID 16529) --- Name: club; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.club ( - club_id uuid DEFAULT public.uuid_generate_v1mc() NOT NULL, - club_code text NOT NULL, - name text NOT NULL -); - - -ALTER TABLE public.club OWNER TO postgres; - --- --- TOC entry 212 (class 1259 OID 16535) --- Name: honor; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.honor ( - honor_id uuid DEFAULT public.uuid_generate_v1mc() NOT NULL, - name text NOT NULL, - level integer NOT NULL, - description text, - patch_path text NOT NULL, - wiki_path text, - category_id uuid, - patch_image_page_path text -); - - -ALTER TABLE public.honor OWNER TO postgres; - --- --- TOC entry 213 (class 1259 OID 16541) --- Name: pathfinder; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.pathfinder ( - pathfinder_id uuid DEFAULT public.uuid_generate_v1mc() NOT NULL, - first_name text NOT NULL, - last_name text NOT NULL, - email text NOT NULL, - create_timestamp timestamp with time zone NOT NULL, - update_timestamp timestamp with time zone, - grade integer, - club_id uuid NOT NULL, - is_active boolean DEFAULT true NOT NULL -); - - -ALTER TABLE public.pathfinder OWNER TO postgres; - --- --- TOC entry 214 (class 1259 OID 16547) --- Name: pathfinder_class; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.pathfinder_class ( - grade integer NOT NULL, - name text NOT NULL -); - - -ALTER TABLE public.pathfinder_class OWNER TO postgres; - --- --- TOC entry 215 (class 1259 OID 16552) --- Name: pathfinder_honor; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.pathfinder_honor ( - pathfinder_honor_id uuid DEFAULT public.uuid_generate_v1mc() NOT NULL, - pathfinder_id uuid NOT NULL, - honor_id uuid NOT NULL, - status_code integer NOT NULL, - create_timestamp timestamp with time zone NOT NULL, - earn_timestamp timestamp with time zone -); - - -ALTER TABLE public.pathfinder_honor OWNER TO postgres; - -CREATE TRIGGER create_timestamp_trigger -BEFORE INSERT ON public.pathfinder_honor -FOR EACH ROW -EXECUTE FUNCTION public.trigger_set_created_timestamp(); - --- --- TOC entry 216 (class 1259 OID 16556) --- Name: pathfinder_honor_status; Type: TABLE; Schema: public; Owner: postgres --- - -CREATE TABLE public.pathfinder_honor_status ( - status_code integer NOT NULL, - name text NOT NULL -); - - -ALTER TABLE public.pathfinder_honor_status OWNER TO postgres; - --- --- TOC entry 3646 (class 0 OID 16523) --- Dependencies: 210 --- Data for Name: category; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO public.category (category_id, name) VALUES ('255aaac4-1969-11ec-a0d5-a352e347d53f', 'Arts, Crafts and Hobbies'); -INSERT INTO public.category (category_id, name) VALUES ('255b6630-1969-11ec-a0d5-5fc80e78c28e', 'Recreation'); -INSERT INTO public.category (category_id, name) VALUES ('255b6680-1969-11ec-a0d5-c7e787d35665', 'Vocational'); -INSERT INTO public.category (category_id, name) VALUES ('255b669e-1969-11ec-a0d5-5f9c3808e737', 'Spiritual Growth, Outreach and Heritage'); -INSERT INTO public.category (category_id, name) VALUES ('255b66bc-1969-11ec-a0d5-739a59556038', 'Outdoor Industries'); -INSERT INTO public.category (category_id, name) VALUES ('255b66d0-1969-11ec-a0d5-3348b7692dd6', 'Nature'); -INSERT INTO public.category (category_id, name) VALUES ('255b66ee-1969-11ec-a0d5-1f44980dd72a', 'Household Arts'); -INSERT INTO public.category (category_id, name) VALUES ('255b6702-1969-11ec-a0d5-bf81259bde60', 'Health and Science'); - - --- --- TOC entry 3647 (class 0 OID 16529) --- Dependencies: 211 --- Data for Name: club; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO public.club (club_id, club_code, name) VALUES ('db08e49e-9aaa-11ed-afd1-d7d02de32d93', 'XCLUB', 'Some Club'); - - --- --- TOC entry 3648 (class 0 OID 16535) --- Dependencies: 212 --- Data for Name: honor; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e502-1968-11ec-ae66-a720fbbaa683', 'Archery Advanced', 2, NULL, 'Archery_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Archery_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Archery_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e5ca-1968-11ec-ae66-370e2d819820', 'Automobile Mechanics Advanced', 3, NULL, 'Automobile_Mechanics_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Automobile_Mechanics_-_Advanced', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Automobile_Mechanics_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833bd8-1968-11ec-ae66-1f7ccef56026', 'Macram', 1, NULL, 'Macrame_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Macram%C3%A9', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Macrame_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e642-1968-11ec-ae66-776fcf3609d2', 'Backpacking Advanced', 3, NULL, 'Backpacking_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Backpacking_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Backpacking_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82fd94-1968-11ec-ae66-f7128a6987ba', 'Bats Advanced', 2, NULL, 'Bats_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Bats_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Bats_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82feb6-1968-11ec-ae66-471f20e588e6', 'Bible Marking Advanced', 3, NULL, 'Bible_Marking_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Bible_Marking_-_Advanced', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Bible_Marking_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82ff7e-1968-11ec-ae66-f3420a257532', 'Birds Advanced', 3, NULL, 'Birds_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Birds_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Birds_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82ffe2-1968-11ec-ae66-13127274ac7e', 'Blood and the Bodys Defenses', 2, NULL, 'Blood_Defenses.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Blood_and_the_Body%27s_Defenses', '255b6702-1969-11ec-a0d5-bf81259bde60', 'https://wiki.pathfindersonline.org/w/File:Blood_Defenses.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83000a-1968-11ec-ae66-0fa20114efc0', 'Bogs Fens', 2, NULL, 'Bogs_and_Fens_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Bogs_%26_Fens', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Bogs_and_Fens_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83010e-1968-11ec-ae66-f7fc4f16468d', 'Braiding Advanced', 2, NULL, 'Braiding_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Braiding_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Braiding_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83029e-1968-11ec-ae66-7f17cefd1fab', 'Cacti Advanced', 3, NULL, 'Cacti_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Cacti_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Cacti_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83032a-1968-11ec-ae66-af5d01c878ac', 'Camp Safety Advanced', 3, NULL, 'Camp_Safety_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Camp_Safety_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Camp_Safety_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83184c-1968-11ec-ae66-c743197fef4b', 'Canoeing Advanced', 2, NULL, 'Canoeing_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Canoeing_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Canoeing_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8318d8-1968-11ec-ae66-dfcd38cd7f00', 'Cats Advanced', 2, NULL, 'Cats_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Cats_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Cats_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831946-1968-11ec-ae66-d7e5269ea89e', 'Caving Advanced', 3, NULL, 'Caving_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Caving_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Caving_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831a90-1968-11ec-ae66-43545598f636', 'Christian Art of Preaching Advanced', 3, NULL, 'Christian_Preaching_Skills_-_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Christian_Art_of_Preaching_-_Advanced', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Christian_Preaching_Skills_-_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831b08-1968-11ec-ae66-37de468f8d64', 'Christian Grooming Manners', 2, NULL, 'Christian_Grooming_and_Manners_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Christian_Grooming_%26_Manners', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Christian_Grooming_and_Manners_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831bf8-1968-11ec-ae66-dbe039537daf', 'Climate Science Advanced', 3, NULL, 'Climate_Science_-_Advanced_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Climate_Science_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Climate_Science_-_Advanced_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831cf2-1968-11ec-ae66-6b711b3eb593', 'Community Water Safety Advanced', 3, NULL, 'Community_Water_Safety_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Community_Water_Safety_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Community_Water_Safety_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831ec8-1968-11ec-ae66-e3b840dedc62', 'Computers Advanced', 2, NULL, 'Computers_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Computers_-_Advanced', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Computers_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831f18-1968-11ec-ae66-bfca37661903', 'Computers and Mobile Devices Advanced', 2, NULL, 'Computers_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Computers_and_Mobile_Devices_-_Advanced', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Computers_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831f5e-1968-11ec-ae66-071825df3efe', 'Cooking Advanced', 2, NULL, 'Cooking_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Cooking_-_Advanced', '255b66ee-1969-11ec-a0d5-1f44980dd72a', 'https://wiki.pathfindersonline.org/w/File:Cooking_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831fae-1968-11ec-ae66-9fcd13ff4502', 'Copper Enameling Advanced', 3, NULL, 'Copper-Enameling_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Copper_Enameling_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Copper-Enameling_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832012-1968-11ec-ae66-5f3efcf7f6a1', 'Coral Reefs Advanced', 2, NULL, 'Coral_Reefs_Advanced_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Coral_Reefs_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Coral_Reefs_Advanced_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8320a8-1968-11ec-ae66-fbf043596e79', 'Creationism Advanced', 3, NULL, 'Creationism_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Creationism_-_Advanced', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Creationism_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832120-1968-11ec-ae66-43840a6f24ac', 'Crocheting Advanced', 3, NULL, 'Crocheting_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Crocheting_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Crocheting_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8321fc-1968-11ec-ae66-6b1de0aa7443', 'Currency Advanced', 3, NULL, 'Currency_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Currency_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Currency_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8323fa-1968-11ec-ae66-3fc8ade3ab11', 'Drawing Advanced', 3, NULL, 'Drawing_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Drawing_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Drawing_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832440-1968-11ec-ae66-b3eaf66e2952', 'Dressmaking Advanced', 2, NULL, 'Dressmaking_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Dressmaking_-_Advanced', '255b66ee-1969-11ec-a0d5-1f44980dd72a', 'https://wiki.pathfindersonline.org/w/File:Dressmaking_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83245e-1968-11ec-ae66-c7d63e473c23', 'Drilling Marching', 1, NULL, 'Drilling_and_Marching.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Drilling_%26_Marching', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Drilling_and_Marching.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832602-1968-11ec-ae66-cbfd8dace305', 'Drumming Percussion', 2, NULL, 'Drumming_and_Percussion.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Drumming_%26_Percussion', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Drumming_and_Percussion.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83268e-1968-11ec-ae66-03a88557d7cb', 'Dunes Advanced', 3, NULL, 'Dunes_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Dunes_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Dunes_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832742-1968-11ec-ae66-cf7daea40d3a', 'Ecology Advanced', 3, NULL, 'Ecology_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Ecology_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Ecology_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8328d2-1968-11ec-ae66-dfe02818c1a4', 'Fire Building Camp Cookery', 2, NULL, 'Fire_Building.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Fire_Building_%26_Camp_Cookery', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Fire_Building.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832922-1968-11ec-ae66-e33c9323d27f', 'First Aid Advanced', 3, NULL, 'First_Aid_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/First_Aid_-_Advanced', '255b6702-1969-11ec-a0d5-bf81259bde60', 'https://wiki.pathfindersonline.org/w/File:First_Aid_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83295e-1968-11ec-ae66-6b5ae0908474', 'First Aid Basic', 1, NULL, 'First_Aid_Basic_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/First_Aid,_Basic', '255b6702-1969-11ec-a0d5-bf81259bde60', 'https://wiki.pathfindersonline.org/w/File:First_Aid_Basic_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832986-1968-11ec-ae66-9f1425eb3493', 'First Aid Standard', 2, NULL, 'First_Aid_Standard_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/First_Aid,_Standard', '255b6702-1969-11ec-a0d5-bf81259bde60', 'https://wiki.pathfindersonline.org/w/File:First_Aid_Standard_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832a1c-1968-11ec-ae66-83755dba1461', 'Flags Advanced', 2, NULL, 'Flags_Advanced_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Flags_-_Advanced', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Flags_Advanced_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832aa8-1968-11ec-ae66-43b4b4ce3184', 'Flowers Advanced', 3, NULL, 'Flowers_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Flowers_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Flowers_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832ad0-1968-11ec-ae66-6b39541c8871', 'Food Canning', 2, NULL, 'Food_Canning_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Food_-_Canning', '255b66ee-1969-11ec-a0d5-1f44980dd72a', 'https://wiki.pathfindersonline.org/w/File:Food_Canning_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832aee-1968-11ec-ae66-cb2229f63dee', 'Food Drying', 2, NULL, 'Food_Drying_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Food_-_Drying', '255b66ee-1969-11ec-a0d5-1f44980dd72a', 'https://wiki.pathfindersonline.org/w/File:Food_Drying_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832b16-1968-11ec-ae66-977ea5a208aa', 'Food Freezing', 2, NULL, 'Food_Freezing_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Food_-_Freezing', '255b66ee-1969-11ec-a0d5-1f44980dd72a', 'https://wiki.pathfindersonline.org/w/File:Food_Freezing_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832ba2-1968-11ec-ae66-bf41cf0758fc', 'Forestry Advanced', 3, NULL, 'Forestry_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Forestry_-_Advanced', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Forestry_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832e40-1968-11ec-ae66-07cc170b3cba', 'Genealogy Advanced', 3, NULL, 'Genealogy_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Genealogy_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Genealogy_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832e86-1968-11ec-ae66-135c37554351', 'Geocaching Advanced', 2, NULL, 'Geocaching_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Geocaching_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Geocaching_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832ecc-1968-11ec-ae66-4fd3534a386f', 'Geological Geocaching Advanced', 3, NULL, 'Geological_Geocaching_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Geological_Geocaching_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Geological_Geocaching_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832f30-1968-11ec-ae66-030a6b3a96a3', 'Geology Advanced', 2, NULL, 'Geology_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Geology_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Geology_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83300c-1968-11ec-ae66-6f67c295a53f', 'Gods Messenger', 1, NULL, 'Gods_Messenger.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/God%27s_Messenger', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Gods_Messenger.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833052-1968-11ec-ae66-13c2fe6ad53f', 'Gold Prospecting Advanced', 2, NULL, 'Gold_Prospecting_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Gold_Prospecting_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Gold_Prospecting_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8330fc-1968-11ec-ae66-7f10081a92b2', 'Guitar Advanced', 3, NULL, 'Guitars_-_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Guitar_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Guitars_-_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83323c-1968-11ec-ae66-d765174c2103', 'Horsemanship Advanced', 2, NULL, 'Horsemanship_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Horsemanship_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Horsemanship_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833282-1968-11ec-ae66-47081a7edcc3', 'House Painting Exterior', 3, NULL, 'House_Painting_-_Exterior.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/House_Painting,_Exterior', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:House_Painting_-_Exterior.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8332aa-1968-11ec-ae66-ef614928c875', 'House Painting Interior', 3, NULL, 'House_Painting_-_Interior.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/House_Painting,_Interior', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:House_Painting_-_Interior.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833494-1968-11ec-ae66-cf7b050d7afa', 'Hydroponics and Aquaponics Advanced', 2, NULL, 'No_Patch.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Hydroponics_and_Aquaponics_-_Advanced', '255b66bc-1969-11ec-a0d5-739a59556038', 'https://wiki.pathfindersonline.org/w/File:No_Patch.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83352a-1968-11ec-ae66-f356fc149774', 'Insects Advanced', 2, NULL, 'Insects_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Insects_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Insects_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833570-1968-11ec-ae66-b3e4e1bcb2a4', 'Internet Advanced', 3, NULL, 'Internet_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Internet_-_Advanced', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Internet_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833778-1968-11ec-ae66-27ee7e18fca0', 'Knitting Advanced', 3, NULL, 'Knitting_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Knitting_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Knitting_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833840-1968-11ec-ae66-3756988bee4c', 'Lashing Advanced', 2, NULL, 'Lashing_Advanced_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Lashing_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Lashing_Advanced_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8338ae-1968-11ec-ae66-cf68de19a601', 'Leather Craft Advanced', 2, NULL, 'Leathercraft_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Leather_Craft_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Leathercraft_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8338d6-1968-11ec-ae66-8b0f57527d1a', 'LEGO Design', 1, NULL, 'Lego_Design_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/LEGO%C2%AE_Design', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Lego_Design_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833926-1968-11ec-ae66-8b85bbe162a6', 'Letterboxing Advanced', 2, NULL, 'Letterboxing_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Letterboxing_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Letterboxing_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83394e-1968-11ec-ae66-c7b82ddde7f1', 'Lettering Poster Making', 2, NULL, 'Lettering_and_Poster_Making.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Lettering_%26_Poster_Making', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Lettering_and_Poster_Making.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8339bc-1968-11ec-ae66-d3070f1c1e73', 'Lifesaving Advanced', 3, NULL, 'Community_Water_Safety_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Lifesaving_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Community_Water_Safety_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833a02-1968-11ec-ae66-af9b4fb6d74d', 'Lighthouses Advanced', 3, NULL, 'Lighthouses_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Lighthouses_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Lighthouses_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833c1e-1968-11ec-ae66-fb2b1f2b26f4', 'Mammals Advanced', 2, NULL, 'Mammals_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Mammals_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Mammals_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833c64-1968-11ec-ae66-7320886ee782', 'Maple Sugar Advanced', 3, NULL, 'Maple_Sugar_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Maple_Sugar_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Maple_Sugar_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833fca-1968-11ec-ae66-7bae67eb3956', 'Model Rocketry Advanced', 2, NULL, 'Model_Rocketry_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Model_Rocketry_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Model_Rocketry_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c834038-1968-11ec-ae66-4f6e58e2df75', 'Moths Butterflies', 2, NULL, 'Moths_and_Butterflies_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Moths_%26_Butterflies', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Moths_and_Butterflies_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c848cfe-1968-11ec-ae66-23472c245ecb', 'Music Advanced', 2, NULL, 'Music_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Music_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Music_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c848d30-1968-11ec-ae66-dfc9867a085d', 'Mori Lore', 1, NULL, 'Maori_Lore_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/M%C4%81ori_Lore', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Maori_Lore_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c848d8a-1968-11ec-ae66-236d15c10155', 'National Parks and Heritage Sites Advanced', 2, NULL, 'No_Patch.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/National_Parks_and_Heritage_Sites_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:No_Patch.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c848e0c-1968-11ec-ae66-9385c255ef9b', 'Native American Lore Advanced', 2, NULL, 'Native_American_Lore_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Native_American_Lore_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Native_American_Lore_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84908c-1968-11ec-ae66-43cc1ab03a6d', 'Nutrition Advanced', 3, NULL, 'Nutrition_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Nutrition_-_Advanced', '255b66ee-1969-11ec-a0d5-1f44980dd72a', 'https://wiki.pathfindersonline.org/w/File:Nutrition_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8490dc-1968-11ec-ae66-833adbdeaee9', 'Odonates Advanced', 2, NULL, 'Odonates_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Odonates_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Odonates_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8491ea-1968-11ec-ae66-87797cc6cb22', 'Outdoor Leadership Advanced', 3, NULL, 'Outdoor_Leadership_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Outdoor_Leadership_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Outdoor_Leadership_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849230-1968-11ec-ae66-4b07439dba0f', 'Painting Advanced', 2, NULL, 'Painting_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Painting_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Painting_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849280-1968-11ec-ae66-5339f6583ecf', 'Paper Maché', 1, NULL, 'Paper_Mache.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Paper_Mach%C3%A9', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Paper_Mach%C3%A9.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8492d0-1968-11ec-ae66-7767a4af2b82', 'Paper Quilling Advanced', 2, NULL, 'Paper_Quilling_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Paper_Quilling_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Paper_Quilling_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849348-1968-11ec-ae66-1f439efe98c5', 'Parade Floats Advanced', 3, NULL, 'Parade_Floats_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Parade_Floats_-_Advanced', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Parade_Floats_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849406-1968-11ec-ae66-df844f002c94', 'Peace Maker Advanced', 2, NULL, 'Peace_Maker_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Peace_Maker_-_Advanced', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Peace_Maker_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8495a0-1968-11ec-ae66-afc9a316c141', 'Pin Trading Advanced', 2, NULL, 'Pin_Trading_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Pin_Trading_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Pin_Trading_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8495f0-1968-11ec-ae66-0b3c1f784627', 'Pinewood Derby Advanced', 2, NULL, 'Pinewood_Derby_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Pinewood_Derby_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Pinewood_Derby_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8497b2-1968-11ec-ae66-1b0d25cebfff', 'Plastic Canvas Advanced', 2, NULL, 'Plastic_Canvas_Honor_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Plastic_Canvas_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Plastic_Canvas_Honor_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849870-1968-11ec-ae66-07bafbf83f52', 'Postcards Advanced', 3, NULL, 'Postcards_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Postcards_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Postcards_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84999c-1968-11ec-ae66-bbb0f9e85834', 'Prayer Advanced', 2, NULL, 'Prayer_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Prayer_-_Advanced', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Prayer_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8499ec-1968-11ec-ae66-97bb96dd4bde', 'Preach It Advanced', 3, NULL, 'Preach_It_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Preach_It_-_Advanced', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Preach_It_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849a3c-1968-11ec-ae66-b3668e9568e9', 'Prophets Prophecy', 2, NULL, 'Prophets_and_Prophecy.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Prophets_%26_Prophecy', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Prophets_and_Prophecy.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849ab4-1968-11ec-ae66-b3c9026e2367', 'Puppetry Advanced', 3, NULL, 'Puppetry_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Puppetry_-_Advanced', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Puppetry_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849b22-1968-11ec-ae66-b3914ae518a6', 'Radio Advanced', 2, NULL, 'Radio_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Radio_-_Advanced', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Radio_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849bcc-1968-11ec-ae66-6bb15b8f5261', 'Raptors Advanced', 3, NULL, 'Raptors_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Raptors_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Raptors_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849ca8-1968-11ec-ae66-176974006d80', 'Reptiles Advanced', 3, NULL, 'Reptiles_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Reptiles_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Reptiles_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849cf8-1968-11ec-ae66-dba602e19cc7', 'Rivers and Streams Advanced', 2, NULL, 'Rivers_and_Streams_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Rivers_and_Streams_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Rivers_and_Streams_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849e24-1968-11ec-ae66-77a62ef8f1dd', 'Robotics Advanced', 2, NULL, 'Robotics_-_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Robotics_-_Advanced', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Robotics_-_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849e9c-1968-11ec-ae66-f31f5be75738', 'Rock Climbing Advanced', 3, NULL, 'Rock_Climbing_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Rock_Climbing_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Rock_Climbing_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849ec4-1968-11ec-ae66-6b5940bbf8d8', 'Rocks Minerals', 2, NULL, 'Rocks_and_Minerals_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Rocks_%26_Minerals', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Rocks_and_Minerals_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849fdc-1968-11ec-ae66-cb4bd75712a9', 'Sanctuary Advanced', 3, NULL, 'Sanctuary_Honor_-_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Sanctuary_-_Advanced', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Sanctuary_Honor_-_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a072-1968-11ec-ae66-3fba7cc07b42', 'Scrapbooking Advanced', 2, NULL, 'Scrapbooking_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Scrapbooking_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Scrapbooking_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a0b8-1968-11ec-ae66-3ba2fad1579f', 'Scuba Diving Advanced', 3, NULL, 'Scuba_Diving_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Scuba_Diving_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Scuba_Diving_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a126-1968-11ec-ae66-9f3618096997', 'Seeds Advanced', 2, NULL, 'Seeds_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Seeds_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Seeds_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a1e4-1968-11ec-ae66-170913b59f52', 'Shells Advanced', 3, NULL, 'Shells_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Shells_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Shells_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b3aa-1968-11ec-ae66-9f4c82c57258', 'Whistles Advanced', 2, NULL, 'Whistles_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Whistles_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Whistles_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b404-1968-11ec-ae66-b7ecf53787c1', 'Wilderness Leadership Advanced', 3, NULL, 'Wilderness_Leadership_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Wilderness_Leadership_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Wilderness_Leadership_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849eec-1968-11ec-ae66-03640b542aca', 'Rocks Minerals Advanced', 3, NULL, 'Rocks_and_Minerals_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Rocks_%26_Minerals_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Rocks_and_Minerals_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a93c-1968-11ec-ae66-533bc118903f', 'Swimming Beginner Advanced', 1, NULL, 'Swimming_Beginners_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Swimming_-_Beginner_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Swimming_Beginners_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84ac3e-1968-11ec-ae66-5fd2df9bddfe', 'TieDye Advanced', 2, NULL, 'Tie-Dye_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Tie-Dye_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Tie-Dye_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84ae82-1968-11ec-ae66-3742ca51fe10', 'Tumbling Balancing Advanced', 2, NULL, 'Tumbling_and_Balancing_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Tumbling_%26_Balancing_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Tumbling_and_Balancing_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e124-1968-11ec-ae66-cb0a7888aece', 'Alternative Fuels', 2, NULL, 'Alternative_Fuels.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Alternative_Fuels', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Alternative_Fuels.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e1f6-1968-11ec-ae66-8f1fe6fea276', 'Amphibians', 1, NULL, 'Amphibians_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Amphibians', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Amphibians_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e6ce-1968-11ec-ae66-3f49ecc38d34', 'Basic Sewing', 1, NULL, 'Basic_Sewing.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Basic_Sewing', '255b66ee-1969-11ec-a0d5-1f44980dd72a', 'https://wiki.pathfindersonline.org/w/File:Basic_Sewing.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82fce0-1968-11ec-ae66-2322bc0dcf3f', 'Basic Water Safety', 1, NULL, 'Basic_Water_Safety_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Basic_Water_Safety', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Basic_Water_Safety_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82fd1c-1968-11ec-ae66-0bbadc4cbd5c', 'Basketball', 1, NULL, 'Basketball_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Basketball', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Basketball_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82fd4e-1968-11ec-ae66-3315d2457aaf', 'Basketry', 2, NULL, 'Basketry.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Basketry', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Basketry.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82fd6c-1968-11ec-ae66-033d51c30d51', 'Bats', 1, NULL, 'Bats_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Bats', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Bats_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82fdda-1968-11ec-ae66-2f79ebbb719a', 'Beekeeping', 2, NULL, 'Beekeeping_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Beekeeping', '255b66bc-1969-11ec-a0d5-739a59556038', 'https://wiki.pathfindersonline.org/w/File:Beekeeping_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82ffc4-1968-11ec-ae66-ff7fb9824ba7', 'Block Printing', 2, NULL, 'Block-Printing.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Block_Printing', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Block-Printing.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83191e-1968-11ec-ae66-e358e5de2747', 'Caving', 2, NULL, 'Caving_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Caving', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Caving_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c830258-1968-11ec-ae66-4fed45a053bf', 'Business', 2, NULL, 'Business.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Business', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Business.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c830276-1968-11ec-ae66-7fedcbbd8b49', 'Cacti', 1, NULL, 'Cacti_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Cacti', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Cacti_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8302bc-1968-11ec-ae66-a71bfe2c401e', 'Cake Decorating', 2, NULL, 'Cake-Decorating.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Cake_Decorating', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Cake-Decorating.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8302e4-1968-11ec-ae66-03133d644a46', 'Camp Craft', 1, NULL, 'Camp_Craft.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Camp_Craft', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Camp_Craft.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c830302-1968-11ec-ae66-6b872ea2bed2', 'Camp Safety', 2, NULL, 'Camp_Safety.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Camp_Safety', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Camp_Safety.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832b7a-1968-11ec-ae66-db4cd918577f', 'Forestry', 2, NULL, 'Forestry_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Forestry', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Forestry_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8316f8-1968-11ec-ae66-8703e0b0ce13', 'Camping Skills I', 1, NULL, 'Camping_Skills_I.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Camping_Skills_I', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Camping_Skills_I.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831734-1968-11ec-ae66-f7971c4f4c1f', 'Camping Skills II', 1, NULL, 'Camping_Skills_II.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Camping_Skills_II', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Camping_Skills_II.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83175c-1968-11ec-ae66-77721df29d8b', 'Camping Skills III', 2, NULL, 'Camping_Skills_III.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Camping_Skills_III', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Camping_Skills_III.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831784-1968-11ec-ae66-cfb6d7c10452', 'Camping Skills IV', 2, NULL, 'Camping_Skills_IV.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Camping_Skills_IV', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Camping_Skills_IV.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8317b6-1968-11ec-ae66-4b93f7fcd586', 'Candle Making', 1, NULL, 'Candle-Making.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Candle_Making', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Candle-Making.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8317d4-1968-11ec-ae66-0725c9b94ee5', 'Canoe Building', 3, NULL, 'Canoe_Building.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Canoe_Building', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Canoe_Building.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831824-1968-11ec-ae66-e3a3fbbd1c94', 'Canoeing', 2, NULL, 'Canoeing_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Canoeing', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Canoeing_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8322c4-1968-11ec-ae66-074a7e6cd4e9', 'Dinosaurs', 1, NULL, 'Dinosaurs.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Dinosaurs', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Dinosaurs.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83231e-1968-11ec-ae66-23bbd2d7d3d0', 'Disaster Ministries', 1, NULL, 'Disaster_Response.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Disaster_Ministries', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Disaster_Response.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832346-1968-11ec-ae66-8f708580ba0e', 'Disciples and Apostles', 2, NULL, 'Disciples_%26_Apostles_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Disciples_and_Apostles', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Disciples_%26_Apostles_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83236e-1968-11ec-ae66-033bddb0f84b', 'Dog Care and Training', 2, NULL, 'Dog_Care_and_Training.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Dog_Care_and_Training', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Dog_Care_and_Training.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83238c-1968-11ec-ae66-3b2681b6bc59', 'Dogs', 1, NULL, 'Dogs_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Dogs', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Dogs_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8323b4-1968-11ec-ae66-33cc3f9ab02a', 'Drawing', 2, NULL, 'Drawing_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Drawing', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Drawing_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832d78-1968-11ec-ae66-0b3d08f2071b', 'Fossils', 2, NULL, 'Fossils_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Fossils', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Fossils_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832daa-1968-11ec-ae66-5b98d33f3770', 'Fruit Growing', 2, NULL, 'Fruit_Growing_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Fruit_Growing', '255b66bc-1969-11ec-a0d5-739a59556038', 'https://wiki.pathfindersonline.org/w/File:Fruit_Growing_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832dc8-1968-11ec-ae66-9f87c7181704', 'Fungi', 2, NULL, 'Fungi_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Fungi', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Fungi_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832df0-1968-11ec-ae66-c339fa56d3d6', 'Gardening', 1, NULL, 'Gardening_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Gardening', '255b66bc-1969-11ec-a0d5-739a59556038', 'https://wiki.pathfindersonline.org/w/File:Gardening_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832e18-1968-11ec-ae66-03a6b732f268', 'Genealogy', 2, NULL, 'Genealogy.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Genealogy', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Genealogy.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833124-1968-11ec-ae66-5376282b2093', 'Health and Healing', 2, NULL, 'Health_and_Healing_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Health_and_Healing', '255b6702-1969-11ec-a0d5-bf81259bde60', 'https://wiki.pathfindersonline.org/w/File:Health_and_Healing_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83314c-1968-11ec-ae66-674a88e7f6cf', 'Heart and Circulation', 1, NULL, 'Heart_and_Circulation_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Heart_and_Circulation', '255b6702-1969-11ec-a0d5-bf81259bde60', 'https://wiki.pathfindersonline.org/w/File:Heart_and_Circulation_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833188-1968-11ec-ae66-37daaa32b9a3', 'Heredity', 3, NULL, 'Heredity_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Heredity', '255b6702-1969-11ec-a0d5-bf81259bde60', 'https://wiki.pathfindersonline.org/w/File:Heredity_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8331b0-1968-11ec-ae66-5b5ee5901f88', 'Hiking', 1, NULL, 'Hiking_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Hiking', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Hiking_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8337be-1968-11ec-ae66-6ff67a5f13a8', 'Language Study', 2, NULL, 'Language_Study_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Language_Study', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Language_Study_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8337e6-1968-11ec-ae66-b36e28d2a933', 'Lapidary', 2, NULL, 'Lapidary_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Lapidary', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Lapidary_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833804-1968-11ec-ae66-e7dc7d181a33', 'Lashing', 1, NULL, 'Lashing_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Lashing', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Lashing_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833868-1968-11ec-ae66-f799aff15e5a', 'Laundering', 1, NULL, 'Laundering_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Laundering', '255b66ee-1969-11ec-a0d5-1f44980dd72a', 'https://wiki.pathfindersonline.org/w/File:Laundering_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833886-1968-11ec-ae66-1349b8fa4890', 'Leather Craft', 1, NULL, 'Leathercraft.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Leather_Craft', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Leathercraft.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8338f4-1968-11ec-ae66-57b640ff510e', 'Letterboxing', 1, NULL, 'Letter_Boxing_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Letterboxing', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Letter_Boxing_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833994-1968-11ec-ae66-c349fd5a9046', 'Lifesaving', 3, NULL, 'Community_Water_Safety_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Lifesaving', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Community_Water_Safety_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8339e4-1968-11ec-ae66-e38e80e6e1a7', 'Lighthouses', 1, NULL, 'Lighthouses.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Lighthouses', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Lighthouses.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849578-1968-11ec-ae66-53700f349fb4', 'Pin Trading', 1, NULL, 'Pin_Trading.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Pin_Trading', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Pin_Trading.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833f52-1968-11ec-ae66-0bb43832525f', 'Model Cars', 1, NULL, 'Model_Cars_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Model_Cars', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Model_Cars_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833f7a-1968-11ec-ae66-37d007f034f4', 'Model Railroad', 2, NULL, 'Model_Railroading_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Model_Railroad', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Model_Railroading_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833fa2-1968-11ec-ae66-27687a7f4683', 'Model Rocketry', 1, NULL, 'Model_Rocketry_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Model_Rocketry', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Model_Rocketry_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c834010-1968-11ec-ae66-e70b46f59455', 'Mosaic Tile', 1, NULL, 'Mosaic_Tile_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Mosaic_Tile', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Mosaic_Tile_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c834056-1968-11ec-ae66-ab046e032e84', 'Mountain Biking', 2, NULL, 'Mountain_Biking_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Mountain_Biking', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Mountain_Biking_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83407e-1968-11ec-ae66-eb8157928e16', 'Mountains', 1, NULL, 'Mountains.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Mountains', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Mountains.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c848c68-1968-11ec-ae66-67481cbdcf30', 'Music', 1, NULL, 'Music_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Music', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Music_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c848d62-1968-11ec-ae66-9fdab639ea89', 'National Parks and Heritage Sites', 1, NULL, 'No_Patch.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/National_Parks_and_Heritage_Sites', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:No_Patch.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849208-1968-11ec-ae66-1bfbd89237ee', 'Painting', 2, NULL, 'Painting_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Painting', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Painting_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849258-1968-11ec-ae66-57a74c34f9ed', 'Palm Trees', 2, NULL, 'Palm_Trees_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Palm_Trees', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Palm_Trees_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84949c-1968-11ec-ae66-974af9ad8ad3', 'Physics', 2, NULL, 'Physics_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Physics', '255b6702-1969-11ec-a0d5-bf81259bde60', 'https://wiki.pathfindersonline.org/w/File:Physics_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849528-1968-11ec-ae66-0f17aab69bd9', 'Pickleball', 2, NULL, 'Pickleball_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Pickleball', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Pickleball_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849550-1968-11ec-ae66-6b8d218a4d13', 'Pigeon Raising', 2, NULL, 'Pigeon_Raising_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Pigeon_Raising', '255b66bc-1969-11ec-a0d5-739a59556038', 'https://wiki.pathfindersonline.org/w/File:Pigeon_Raising_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b472-1968-11ec-ae66-53691ac26d26', 'Winter Camping', 2, NULL, 'Winter_Camping_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Winter_Camping', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Winter_Camping_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849942-1968-11ec-ae66-a3c08d4b97cf', 'Praise and Worship', 2, NULL, 'Praise_and_Worship_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Praise_and_Worship', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Praise_and_Worship_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8499c4-1968-11ec-ae66-5bcd1dfddbd1', 'Preach It', 2, NULL, 'Preach_It_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Preach_It', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Preach_It_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849a14-1968-11ec-ae66-73d25200cb32', 'Printing', 2, NULL, 'Printing_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Printing', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Printing_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849a8c-1968-11ec-ae66-33c1a740537e', 'Puppetry', 2, NULL, 'Puppetry_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Puppetry', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Puppetry_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849ad2-1968-11ec-ae66-2fb7d02014f7', 'Quilting', 2, NULL, 'Quilting_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Quilting', '255b66ee-1969-11ec-a0d5-1f44980dd72a', 'https://wiki.pathfindersonline.org/w/File:Quilting_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849afa-1968-11ec-ae66-7f1ab75476a5', 'Radio', 2, NULL, 'Radio_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Radio', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Radio_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849b5e-1968-11ec-ae66-47eb678f40d4', 'Radio Electronics', 2, NULL, 'Radio_Electronics_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Radio_Electronics', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Radio_Electronics_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a14e-1968-11ec-ae66-ebb28f4d1838', 'Serving Communities', 1, NULL, 'Serving_Communities.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Serving_Communities', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Serving_Communities.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a176-1968-11ec-ae66-e32d6056c09d', 'Sharks', 1, NULL, 'Sharks_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Sharks', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Sharks_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a19e-1968-11ec-ae66-570e8cd3b687', 'Sheep Husbandry', 1, NULL, 'Sheep_Husbandry_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Sheep_Husbandry', '255b66bc-1969-11ec-a0d5-739a59556038', 'https://wiki.pathfindersonline.org/w/File:Sheep_Husbandry_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a1bc-1968-11ec-ae66-ef1b57dd834a', 'Shells', 2, NULL, 'Shells_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Shells', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Shells_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a20c-1968-11ec-ae66-d3fc5eab948b', 'Shoe Repair', 3, NULL, 'Shoe_Repair_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Shoe_Repair', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Shoe_Repair_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a22a-1968-11ec-ae66-0bceb833fc45', 'Shorthand', 3, NULL, 'Shorthand_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Shorthand', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Shorthand_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a252-1968-11ec-ae66-93d11df75b69', 'Shrubs', 1, NULL, 'Shrubs_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Shrubs', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Shrubs_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a680-1968-11ec-ae66-5f320952b35f', 'Soccer', 1, NULL, 'Soccer_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Soccer', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Soccer_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a69e-1968-11ec-ae66-3f11066db376', 'Social Media', 2, NULL, 'Social_Media_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Social_Media', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Social_Media_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a6e4-1968-11ec-ae66-a7c4e060d17e', 'Soils', 1, NULL, 'Soils_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Soils', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Soils_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a70c-1968-11ec-ae66-1b357c1a10d6', 'Spiders', 2, NULL, 'Spiders_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Spiders', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Spiders_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a734-1968-11ec-ae66-bb0f292d915a', 'Spinning Yarn', 1, NULL, 'Spinning_Yarn_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Spinning_Yarn', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Spinning_Yarn_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a770-1968-11ec-ae66-5fa7fe8b4537', 'Springboard Diving', 2, NULL, 'Springboard_Diving_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Springboard_Diving', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Springboard_Diving_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a798-1968-11ec-ae66-136c4554e41a', 'Stamps', 2, NULL, 'Stamps_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Stamps', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Stamps_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b18e-1968-11ec-ae66-bf489eb57ccf', 'Waterfalls', 1, NULL, 'Waterfalls_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Waterfalls', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Waterfalls_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b1ac-1968-11ec-ae66-8f891fd806da', 'Wattles', 1, NULL, 'Wattles_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Wattles', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Wattles_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b1d4-1968-11ec-ae66-2bd684220fc8', 'Weather', 1, NULL, 'Weather_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Weather', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Weather_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b314-1968-11ec-ae66-9f18e2b5db73', 'Weaving', 1, NULL, 'Weaving_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Weaving', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Weaving_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b332-1968-11ec-ae66-4f0a023d7a35', 'Welding', 3, NULL, 'Welding_AY_Honor_NAD.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Welding', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Welding_AY_Honor_NAD.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b364-1968-11ec-ae66-879f05c1be31', 'Whistles', 1, NULL, 'Whistles_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Whistles', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Whistles_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b3d2-1968-11ec-ae66-47c48dd7370d', 'Wilderness Leadership', 2, NULL, 'Wilderness_Leadership_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Wilderness_Leadership', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Wilderness_Leadership_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b42c-1968-11ec-ae66-ebb804013daf', 'Wilderness Living', 2, NULL, 'Wilderness_Living_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Wilderness_Living', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Wilderness_Living_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b44a-1968-11ec-ae66-af8ed8d532a4', 'Wind Surfing', 2, NULL, 'Windsurfing_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Wind_Surfing', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Windsurfing_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b49a-1968-11ec-ae66-b7eca09d4b8c', 'Wood Carving', 2, NULL, 'Wood_Carving_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Wood_Carving', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Wood_Carving_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b4c2-1968-11ec-ae66-9b7512432107', 'Wood Handicraft', 2, NULL, 'Wood_Handcraft_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Wood_Handicraft', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Wood_Handcraft_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82deb8-1968-11ec-ae66-574586dba8d9', 'African American Adventist Heritage in the NAD Advanced', 2, NULL, 'African_American_Adventist_Heritage_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/African_American_Adventist_Heritage_in_the_NAD_-_Advanced', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:African_American_Adventist_Heritage_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e192-1968-11ec-ae66-679a5915feaf', 'Alternative Fuels Advanced', 3, NULL, 'Alternative_Fuels_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Alternative_Fuels_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Alternative_Fuels_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8242aa-1968-11ec-ae66-3fc0785cad21', 'Aboriginal Lore', 1, NULL, 'Aboriginallore.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Aboriginal_Lore', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Aboriginallore.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82c6a8-1968-11ec-ae66-673d76f8b5f2', 'Abseiling', 1, NULL, 'Abseiling_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Abseiling', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Abseiling_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82dba2-1968-11ec-ae66-63594f0311ea', 'Accounting', 3, NULL, 'Accounting_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Accounting', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Accounting_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82dc10-1968-11ec-ae66-a3689cfec3e4', 'Adapted Sports', 1, NULL, 'Adapted_Sports.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Adapted_Sports', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Adapted_Sports.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82dc92-1968-11ec-ae66-afce4f5290e5', 'Adventist Pioneer Heritage', 2, NULL, 'Adventist_Heritage.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Adventist_Pioneer_Heritage', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Adventist_Heritage.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82dd14-1968-11ec-ae66-4f5a69dcf141', 'Adventurer for Christ', 1, NULL, 'Adventurer_for_Christ.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Adventurer_for_Christ', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Adventurer_for_Christ.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833548-1968-11ec-ae66-9f760c6afb36', 'Internet', 2, NULL, 'Internet_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Internet', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Internet_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a2b6-1968-11ec-ae66-17ffc25aa84b', 'Sign Language Advanced', 2, NULL, 'Sign_Language_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Sign_Language_-_Advanced', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Sign_Language_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a306-1968-11ec-ae66-2310cce0208e', 'Silk Screen Printing Advanced', 3, NULL, 'Silk_Screening_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Silk_Screen_Printing_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Silk_Screening_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a356-1968-11ec-ae66-8f0606afaefe', 'Skiing Cross Country', 2, NULL, 'Skiing_Cross_Country_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Skiing_-_Cross_Country', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Skiing_Cross_Country_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a3c4-1968-11ec-ae66-137e5184a791', 'SlowPitch Softball', 1, NULL, 'Softball_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Slow-Pitch_Softball', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Softball_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a54a-1968-11ec-ae66-cb903dfe7424', 'Small Group Bible Study Advanced', 3, NULL, 'Small_Group_Bible_Study_-_Advanced_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Small_Group_Bible_Study_-_Advanced', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Small_Group_Bible_Study_-_Advanced_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a5c2-1968-11ec-ae66-cbc040d01acf', 'Snowshoeing Advanced', 3, NULL, 'Snowshoeing_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Snowshoeing_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Snowshoeing_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a612-1968-11ec-ae66-bf518f1ff276', 'Soap Craft Advanced', 2, NULL, 'Soapcraft_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Soap_Craft_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Soapcraft_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a658-1968-11ec-ae66-c78fb5b1b5f3', 'Soap Making Advanced', 3, NULL, 'Soap_Making_Advanced_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Soap_Making_-_Advanced', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Soap_Making_Advanced_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a7c0-1968-11ec-ae66-53d33d46b073', 'Stamps Advanced', 3, NULL, 'Stamps_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Stamps_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Stamps_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a810-1968-11ec-ae66-1b52ea1c55c9', 'Stars Advanced', 3, NULL, 'Stars_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Stars_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Stars_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a8ec-1968-11ec-ae66-b7f2003c4495', 'Swimming Advanced', 2, NULL, 'Swimming_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Swimming_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Swimming_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a914-1968-11ec-ae66-c3d6cdda7671', 'Swimming Beginner', 1, NULL, 'Swimming_Beginners_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Swimming_-_Beginner', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Swimming_Beginners_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e52a-1968-11ec-ae66-c7c1df03a2de', 'Artificial Intelligence', 2, NULL, 'Artificial_Intelligence.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Artificial_Intelligence', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Artificial_Intelligence.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e5a2-1968-11ec-ae66-333be26b5afd', 'Automobile Mechanics', 2, NULL, 'Automobile_Mechanics_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Automobile_Mechanics', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Automobile_Mechanics_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a978-1968-11ec-ae66-f330077eeca6', 'Swimming Intermediate', 2, NULL, 'Intermediate_Swimming_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Swimming_-_Intermediate', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Intermediate_Swimming_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a9be-1968-11ec-ae66-bfb5cda8e246', 'Taiga Advanced', 2, NULL, 'Taiga_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Taiga_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Taiga_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84ac16-1968-11ec-ae66-27d33ce38d7e', 'TieDye', 1, NULL, 'Tie-Dye_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Tie-Dye', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Tie-Dye_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84acf2-1968-11ec-ae66-b7460b2659e4', 'Toy Boat Regatta Advanced', 2, NULL, 'Toy_Boat_Regatta_-_Advanced_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Toy_Boat_Regatta_-_Advanced', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Toy_Boat_Regatta_-_Advanced_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84ad1a-1968-11ec-ae66-179b68007544', 'Track Field', 2, NULL, 'Track_and_Field_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Track_%26_Field', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Track_and_Field_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84ad60-1968-11ec-ae66-c3f38b6a6fec', 'Travel Advanced', 2, NULL, 'Travel_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Travel_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Travel_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84adce-1968-11ec-ae66-0348df75574c', 'Trees Advanced', 3, NULL, 'Trees_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Trees_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Trees_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84ae14-1968-11ec-ae66-d7c095035d42', 'Triathlon Advanced', 2, NULL, 'Triathlon_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Triathlon_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Triathlon_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84ae3c-1968-11ec-ae66-37c9e604b401', 'Tumbling Balancing', 2, NULL, 'Tumbling_and_Balancing_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Tumbling_%26_Balancing', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Tumbling_and_Balancing_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84af18-1968-11ec-ae66-432247a92f92', 'Ultimate Disc Advanced', 2, NULL, 'Ultimate_Disc_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Ultimate_Disc_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Ultimate_Disc_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b166-1968-11ec-ae66-570c45bf4e57', 'Water Skiing Advanced', 2, NULL, 'Water_Skiing_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Water_Skiing_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Water_Skiing_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b2ec-1968-11ec-ae66-539f5d8471e9', 'Weather Advanced', 2, NULL, 'Weather_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Weather_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Weather_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e5f2-1968-11ec-ae66-dbd5997d1a35', 'Aviators', 2, NULL, 'Aviators_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Aviators', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Aviators_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b54e-1968-11ec-ae66-6b134bdbc8c8', 'Worms Advanced', 2, NULL, 'Worms_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Worms_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Worms_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c830050-1968-11ec-ae66-e76cb89205c7', 'Bogs Fens Advanced', 3, NULL, 'Bogs_and_Fens_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Bogs_%26_Fens_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Bogs_and_Fens_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c830082-1968-11ec-ae66-57d60131ce09', 'Bones Muscles and Movement', 2, NULL, 'Bones_Muscles_and_Movement_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Bones,_Muscles,_and_Movement', '255b6702-1969-11ec-a0d5-bf81259bde60', 'https://wiki.pathfindersonline.org/w/File:Bones_Muscles_and_Movement_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8325d0-1968-11ec-ae66-b33daed3ca47', 'Drilling Marching Advanced', 2, NULL, 'Drilling_and_Marching_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Drilling_%26_Marching_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Drilling_and_Marching_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83262a-1968-11ec-ae66-8be61734b1a0', 'Drumming Percussion Advanced', 3, NULL, 'Drumming_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Drumming_%26_Percussion_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Drumming_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833976-1968-11ec-ae66-0750b4d7db3f', 'Lichens Liverworts Mosses', 3, NULL, 'Lichens_Liverworts_and_Mosses_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Lichens,_Liverworts_%26_Mosses', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Lichens_Liverworts_and_Mosses_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849a64-1968-11ec-ae66-238b11bb8a2d', 'Prophets Prophecy Advanced', 3, NULL, 'Prophets_and_Prophecy_-_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Prophets_%26_Prophecy_-_Advanced', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Prophets_and_Prophecy_-_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82fe02-1968-11ec-ae66-5f0abe20e6b3', 'Bible Evangelism', 2, NULL, 'Bible_Evangelism_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Bible_Evangelism', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Bible_Evangelism_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82fe2a-1968-11ec-ae66-8711b12a6a25', 'Bible Marking', 2, NULL, 'Bible_Marking.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Bible_Marking', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Bible_Marking.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82fede-1968-11ec-ae66-9f96589e09b4', 'Biblical Archaeology', 2, NULL, 'Biblical_Archaeology.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Biblical_Archaeology', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Biblical_Archaeology.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82ff10-1968-11ec-ae66-e31caf93990b', 'Biosafety', 1, NULL, 'Biosafety_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Biosafety', '255b6702-1969-11ec-a0d5-bf81259bde60', 'https://wiki.pathfindersonline.org/w/File:Biosafety_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82ff38-1968-11ec-ae66-df772b5269cd', 'Bird Pets', 1, NULL, 'Bird_Pets_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Bird_Pets', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Bird_Pets_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82ff56-1968-11ec-ae66-cf5604942bbe', 'Birds', 1, NULL, 'Birds_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Birds', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Birds_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82ff9c-1968-11ec-ae66-bbe1184e4f04', 'Blacksmithing', 2, NULL, 'Blacksmithing_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Blacksmithing', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Blacksmithing_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83186a-1968-11ec-ae66-c344326f96ee', 'Card Making', 1, NULL, 'Cardmaking.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Card_Making', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Cardmaking.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831892-1968-11ec-ae66-d32ddc97db5b', 'Carpentry', 2, NULL, 'Carpentry_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Carpentry', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Carpentry_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8318b0-1968-11ec-ae66-cf01d6fbf576', 'Cats', 1, NULL, 'Cats_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Cats', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Cats_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831900-1968-11ec-ae66-6fe879668628', 'Cattle Husbandry', 2, NULL, 'Cattle_Husbandry_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Cattle_Husbandry', '255b66bc-1969-11ec-a0d5-739a59556038', 'https://wiki.pathfindersonline.org/w/File:Cattle_Husbandry_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831ca2-1968-11ec-ae66-db0b59587f76', 'Community Improvement', 3, NULL, 'Community_Improvement.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Community_Improvement', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Community_Improvement.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831cca-1968-11ec-ae66-e7741e7e8625', 'Community Water Safety', 3, NULL, 'Community_Water_Safety_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Community_Water_Safety', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Community_Water_Safety_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831ea0-1968-11ec-ae66-1b23d873f85e', 'Computers', 1, NULL, 'Computer_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Computers', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Computer_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831ef0-1968-11ec-ae66-23ac8fbc1056', 'Computers and Mobile Devices', 1, NULL, 'Computer_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Computers_and_Mobile_Devices', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Computer_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831f36-1968-11ec-ae66-4bb2bd216273', 'Cooking', 1, NULL, 'Cooking_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Cooking', '255b66ee-1969-11ec-a0d5-1f44980dd72a', 'https://wiki.pathfindersonline.org/w/File:Cooking_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831f86-1968-11ec-ae66-73e6fb8ed678', 'Copper Enameling', 1, NULL, 'Copper-Enameling.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Copper_Enameling', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Copper-Enameling.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831fea-1968-11ec-ae66-bfe1916876a4', 'Coral Reefs', 1, NULL, 'Coral_Reefs_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Coral_Reefs', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Coral_Reefs_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832418-1968-11ec-ae66-c71f211dfc93', 'Dressmaking', 1, NULL, 'Dressmaking.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Dressmaking', '255b66ee-1969-11ec-a0d5-1f44980dd72a', 'https://wiki.pathfindersonline.org/w/File:Dressmaking.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832652-1968-11ec-ae66-d782683b7a05', 'Duct Tape', 1, NULL, 'Duct_Tape_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Duct_Tape', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Duct_Tape_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832670-1968-11ec-ae66-efd20d51ac88', 'Dunes', 2, NULL, 'Dunes.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Dunes', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Dunes.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8326b6-1968-11ec-ae66-17a4dfe43645', 'Dutch Oven Cooking', 2, NULL, 'Dutch_Oven_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Dutch_Oven_Cooking', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Dutch_Oven_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8329cc-1968-11ec-ae66-f3090a9f83bb', 'Flag Football', 1, NULL, 'Flag_Football_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Flag_Football', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Flag_Football_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8329f4-1968-11ec-ae66-6f93e967ce98', 'Flags', 1, NULL, 'Flags_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Flags', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Flags_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832a44-1968-11ec-ae66-3f6779fe7220', 'Flower Arrangement', 2, NULL, 'Flower_Arrangement.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Flower_Arrangement', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Flower_Arrangement.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832a62-1968-11ec-ae66-8f68fd12df19', 'Flower Culture', 1, NULL, 'Flower_Culture_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Flower_Culture', '255b66bc-1969-11ec-a0d5-739a59556038', 'https://wiki.pathfindersonline.org/w/File:Flower_Culture_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832a8a-1968-11ec-ae66-83d231682cda', 'Flowers', 2, NULL, 'Flowers_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Flowers', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Flowers_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832b52-1968-11ec-ae66-07cb530214ad', 'Foreign Mission Trips', 2, NULL, 'Foreign_Mission_Trips_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Foreign_Mission_Trips', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Foreign_Mission_Trips_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8331ce-1968-11ec-ae66-87d5ae9e0fea', 'Home Nursing', 2, NULL, 'Home_Nursing_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Home_Nursing', '255b6702-1969-11ec-a0d5-bf81259bde60', 'https://wiki.pathfindersonline.org/w/File:Home_Nursing_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8331f6-1968-11ec-ae66-bf8b6a80da9e', 'Horse Husbandry', 1, NULL, 'Horse_Husbandry_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Horse_Husbandry', '255b66bc-1969-11ec-a0d5-739a59556038', 'https://wiki.pathfindersonline.org/w/File:Horse_Husbandry_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833214-1968-11ec-ae66-c740ebe6ef29', 'Horsemanship', 1, NULL, 'Horsemanship_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Horsemanship', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Horsemanship_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83325a-1968-11ec-ae66-ef2354d85a85', 'Hot Air Balloons', 1, NULL, 'Hot_Air_Ballooning.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Hot_Air_Balloons', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Hot_Air_Ballooning.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8332f0-1968-11ec-ae66-5ff252bf382c', 'House Plants', 2, NULL, 'House_Plants_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/House_Plants', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:House_Plants_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83330e-1968-11ec-ae66-c7a824406dcc', 'Housekeeping', 2, NULL, 'Housekeeping_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Housekeeping', '255b66ee-1969-11ec-a0d5-1f44980dd72a', 'https://wiki.pathfindersonline.org/w/File:Housekeeping_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83346c-1968-11ec-ae66-cb361ee35446', 'Hydroponics and Aquaponics', 2, NULL, 'No_Patch.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Hydroponics_and_Aquaponics', '255b66bc-1969-11ec-a0d5-739a59556038', 'https://wiki.pathfindersonline.org/w/File:No_Patch.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8334bc-1968-11ec-ae66-a74e2435d142', 'Hymns', 1, NULL, 'Hymns_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Hymns', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Hymns_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833750-1968-11ec-ae66-63701b000407', 'Knitting', 2, NULL, 'Knitting_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Knitting', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Knitting_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8337a0-1968-11ec-ae66-cf1904464c4e', 'Knot Tying', 2, NULL, 'Knot_Tying_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Knot_Tying', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Knot_Tying_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833dd6-1968-11ec-ae66-bfc5b39654f7', 'Media Broadcast Ministry', 2, NULL, 'Media_Broadcast_Ministry_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Media_Broadcast_Ministry', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Media_Broadcast_Ministry_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833dfe-1968-11ec-ae66-47f9e637e114', 'Metal Craft', 2, NULL, 'Metal_Craft.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Metal_Craft', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Metal_Craft.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833e26-1968-11ec-ae66-cb34ac874eaa', 'Meteorites', 2, NULL, 'Meteorites.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Meteorites', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Meteorites.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833e44-1968-11ec-ae66-97df7db88956', 'Microscopic Life', 2, NULL, 'Microscopic_Life_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Microscopic_Life', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Microscopic_Life_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833e6c-1968-11ec-ae66-7f4b4f068432', 'Midnight Sun', 1, NULL, 'Midnight_Sun_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Midnight_Sun', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Midnight_Sun_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833e8a-1968-11ec-ae66-77283d49a2cf', 'Migration', 1, NULL, 'Migration_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Migration', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Migration_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833eb2-1968-11ec-ae66-8fd202f7bd7f', 'Missionary Life', 1, NULL, 'Missionary_Life_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Missionary_Life', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Missionary_Life_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833ed0-1968-11ec-ae66-fbfa1af2cff1', 'Mobile Technology', 2, NULL, 'Mobile_Technology_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Mobile_Technology', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Mobile_Technology_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833f2a-1968-11ec-ae66-b7b586be4e55', 'Model Boats', 2, NULL, 'Model_Boats_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Model_Boats', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Model_Boats_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8492a8-1968-11ec-ae66-3724b67f8e2c', 'Paper Quilling', 1, NULL, 'Paper_Quilling_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Paper_Quilling', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Paper_Quilling_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8492ee-1968-11ec-ae66-c349aedac71d', 'Paperhanging', 3, NULL, 'Paper_Hanging_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Paperhanging', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Paper_Hanging_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849320-1968-11ec-ae66-43c0af6db3b8', 'Parade Floats', 2, NULL, 'Parade_Float_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Parade_Floats', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Parade_Float_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849370-1968-11ec-ae66-2f1c55e9cae6', 'Parrots and Cockatoos', 2, NULL, 'Parrots_and_Cockatoos_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Parrots_and_Cockatoos', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Parrots_and_Cockatoos_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849398-1968-11ec-ae66-8bd5e7d030f7', 'Patriarchs of the Bible', 1, NULL, 'Patriarchs_of_the_Bible_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Patriarchs_of_the_Bible', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Patriarchs_of_the_Bible_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8493c0-1968-11ec-ae66-8bda539402c6', 'Peace Maker', 1, NULL, 'Peacemaker_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Peace_Maker', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Peacemaker_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84942e-1968-11ec-ae66-273c79c0b7ff', 'Personal Evangelism', 2, NULL, 'Personal_Evangelism_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Personal_Evangelism', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Personal_Evangelism_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849456-1968-11ec-ae66-9b6e65f40043', 'Photography', 2, NULL, 'Photography_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Photography', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Photography_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84947e-1968-11ec-ae66-338bc304e53b', 'Physical Fitness', 2, NULL, 'Physical_Fitness_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Physical_Fitness', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Physical_Fitness_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849b86-1968-11ec-ae66-97e0e30eb2c1', 'Rainforests', 1, NULL, 'Rainforests_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Rainforests', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Rainforests_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849ba4-1968-11ec-ae66-1fb599e69f71', 'Raptors', 1, NULL, 'Raptors_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Raptors', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Raptors_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849bea-1968-11ec-ae66-8f45957dd813', 'Recycling', 1, NULL, 'Recycling_honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Recycling', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Recycling_honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a004-1968-11ec-ae66-473ff63e3fa9', 'Sand', 1, NULL, 'Sand_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Sand', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Sand_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a02c-1968-11ec-ae66-b74c448aa685', 'Scrapbooking', 1, NULL, 'Scrapbooking_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Scrapbooking', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Scrapbooking_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a090-1968-11ec-ae66-031024df85e6', 'Scuba Diving', 3, NULL, 'Scuba_Diving_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Scuba_Diving', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Scuba_Diving_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a0e0-1968-11ec-ae66-7b5e1742b9bc', 'Sculpturing', 2, NULL, 'Sculpturing_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Sculpturing', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Sculpturing_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a108-1968-11ec-ae66-5f0b50926099', 'Seeds', 1, NULL, 'Seeds_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Seeds', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Seeds_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a7de-1968-11ec-ae66-8fc7551f99a9', 'Stars', 2, NULL, 'Stars_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Stars', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Stars_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a82e-1968-11ec-ae66-87a963ba9b8c', 'Stewardship', 2, NULL, 'Stewardship_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Stewardship', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Stewardship_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a856-1968-11ec-ae66-c3cf0f45ca20', 'Street Art', 2, NULL, 'Street_Art_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Street_Art', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Street_Art_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a87e-1968-11ec-ae66-ab5a925dffdf', 'String Art', 1, NULL, 'String_Art_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/String_Art', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:String_Art_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a8a6-1968-11ec-ae66-c36871ba1e6c', 'Subsistence Farming', 2, NULL, 'Subsistence_Farming_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Subsistence_Farming', '255b66bc-1969-11ec-a0d5-739a59556038', 'https://wiki.pathfindersonline.org/w/File:Subsistence_Farming_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84aec8-1968-11ec-ae66-e33287a572a8', 'Typewriting', 2, NULL, 'Typewriting_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Typewriting', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Typewriting_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84aef0-1968-11ec-ae66-732cfa54b07e', 'Ultimate Disc', 1, NULL, 'Ultimate_Disc_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Ultimate_Disc', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Ultimate_Disc_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b148-1968-11ec-ae66-4bfb7d1eef37', 'Water Skiing', 2, NULL, 'Water_Skiing_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Water_Skiing', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Water_Skiing_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b4e0-1968-11ec-ae66-076fe75b5194', 'Woodworking', 2, NULL, 'Woodworking_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Woodworking', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Woodworking_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b508-1968-11ec-ae66-3f5b45b283c0', 'Word Processing', 2, NULL, 'Word_Processing_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Word_Processing', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Word_Processing_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b526-1968-11ec-ae66-1f80a536b4f7', 'Worms', 1, NULL, 'Worms_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Worms', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Worms_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84afcc-1968-11ec-ae66-eb2f25d353eb', 'Video Advanced', 2, NULL, 'Video_Advanced_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Video_-_Advanced', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Video_Advanced_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b0da-1968-11ec-ae66-ef486f5992ce', 'Water Safety Instructor Advanced', 3, NULL, 'Water_Safety_Instructor_Advanced_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Water_Safety_Instructor_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Water_Safety_Instructor_Advanced_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b120-1968-11ec-ae66-cf9a3732dd60', 'Water Science Advanced', 2, NULL, 'Water_Science_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Water_Science_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Water_Science_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82c72a-1968-11ec-ae66-ebcc2510a200', 'Abseiling Advanced', 3, NULL, 'Abseiling_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Abseiling_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Abseiling_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82c752-1968-11ec-ae66-bf883989070b', 'Abseiling Instructor', 3, NULL, 'Abseiling_Instructor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Abseiling_-_Instructor', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Abseiling_Instructor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82dd96-1968-11ec-ae66-bb634530dcca', 'Adventurer for Christ Advanced', 2, NULL, 'Adventurer_for_Christ_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Adventurer_for_Christ_-_Advanced', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Adventurer_for_Christ_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82de22-1968-11ec-ae66-fb80db281907', 'African American Adventist Heritage in the NAD', 1, NULL, 'African_American_Adventist_History.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/African_American_Adventist_Heritage_in_the_NAD', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:African_American_Adventist_History.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82df30-1968-11ec-ae66-8782595268ed', 'African Lore', 1, NULL, 'African-Lore.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/African_Lore', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:African-Lore.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82df94-1968-11ec-ae66-47a5df48f9aa', 'Agriculture', 2, NULL, 'Agriculture_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Agriculture', '255b66bc-1969-11ec-a0d5-739a59556038', 'https://wiki.pathfindersonline.org/w/File:Agriculture_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e002-1968-11ec-ae66-afa1b87dc72b', 'Airplane Modeling', 1, NULL, 'Airplane-Modeling.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Airplane_Modeling', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Airplane-Modeling.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e07a-1968-11ec-ae66-df91106af23b', 'Alive Bible', 1, NULL, 'Alive_Bible.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Alive_Bible', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Alive_Bible.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e2d2-1968-11ec-ae66-a70764c91982', 'Animal Camouflage', 1, NULL, 'Animal_Camouflage_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Animal_Camouflage', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Animal_Camouflage_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e3ae-1968-11ec-ae66-d7248c0cf660', 'Animal Tracking', 1, NULL, 'Animal_Tracking_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Animal_Tracking', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Animal_Tracking_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e480-1968-11ec-ae66-d7da92a392d4', 'Antelopes', 1, NULL, 'Antelopes_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Antelopes', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Antelopes_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e4e4-1968-11ec-ae66-376e19f0534f', 'Archery', 1, NULL, 'Archery_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Archery', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Archery_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e61a-1968-11ec-ae66-0b68fa9d1087', 'Backpacking', 2, NULL, 'Backpacking_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Backpacking', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Backpacking_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e66a-1968-11ec-ae66-eb8b58c04322', 'Baking', 1, NULL, 'Baking_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Baking', '255b66ee-1969-11ec-a0d5-1f44980dd72a', 'https://wiki.pathfindersonline.org/w/File:Baking_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e688-1968-11ec-ae66-8f33c066236e', 'Barbering and Hairstyling', 3, NULL, 'Barbering_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Barbering_and_Hairstyling', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Barbering_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e6b0-1968-11ec-ae66-e74945f12384', 'Basic Rescue', 1, NULL, 'Basic_Rescue.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Basic_Rescue', '255b6702-1969-11ec-a0d5-bf81259bde60', 'https://wiki.pathfindersonline.org/w/File:Basic_Rescue.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8300a0-1968-11ec-ae66-3bbdbf7fa0b6', 'Bookbinding', 3, NULL, 'Bookbinding_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Bookbinding', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Bookbinding_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8300c8-1968-11ec-ae66-ef0b2bbfa978', 'Bookkeeping', 2, NULL, 'Bookkeeping_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Bookkeeping', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Bookkeeping_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c830136-1968-11ec-ae66-67ac08ed5e3d', 'Braille', 1, NULL, 'Braille_AY_Honor_%28NAD%29.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Braille', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Braille_AY_Honor_(NAD).png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83015e-1968-11ec-ae66-f332c44e055c', 'Brain and Behavior', 2, NULL, 'Brain_and_Behavior_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Brain_and_Behavior', '255b6702-1969-11ec-a0d5-bf81259bde60', 'https://wiki.pathfindersonline.org/w/File:Brain_and_Behavior_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c830186-1968-11ec-ae66-fb7383b8e3d1', 'Bread Dough', 1, NULL, 'Bread-Dough.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Bread_Dough', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Bread-Dough.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8301a4-1968-11ec-ae66-1fc081f3fb1f', 'Bridges', 1, NULL, 'Bridges.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Bridges', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Bridges.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8301cc-1968-11ec-ae66-c3b98a5e0d5e', 'Bubbles', 2, NULL, 'Bubbles_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Bubbles', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Bubbles_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8301f4-1968-11ec-ae66-139d6c120e0c', 'Bully Prevention I', 1, NULL, 'Bully_Prevention_I_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Bully_Prevention_I', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Bully_Prevention_I_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83021c-1968-11ec-ae66-935a62db7419', 'Bully Prevention II', 2, NULL, 'Bully_Prevention_II_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Bully_Prevention_II', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Bully_Prevention_II_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831964-1968-11ec-ae66-ef6265f0d3dd', 'Ceramics', 2, NULL, 'Ceramics.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Ceramics', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Ceramics.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83198c-1968-11ec-ae66-0fc08d51907c', 'Cetaceans', 2, NULL, 'Cetaceans_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Cetaceans', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Cetaceans_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8319aa-1968-11ec-ae66-d7daaecadc47', 'Chemistry', 2, NULL, 'Chemistry_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Chemistry', '255b6702-1969-11ec-a0d5-bf81259bde60', 'https://wiki.pathfindersonline.org/w/File:Chemistry_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8319d2-1968-11ec-ae66-fb5f114a9a9b', 'Child Care', 1, NULL, 'Child_Care.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Child_Care', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Child_Care.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8319fa-1968-11ec-ae66-e300cfd6e32b', 'Christian Art of Preaching', 2, NULL, 'Christian_Preaching_Skills.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Christian_Art_of_Preaching', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Christian_Preaching_Skills.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831ab8-1968-11ec-ae66-cfeae953ebed', 'Christian Citizenship', 1, NULL, 'Christian_Citizenship.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Christian_Citizenship', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Christian_Citizenship.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831ae0-1968-11ec-ae66-4fb8a61a1608', 'Christian Drama', 2, NULL, 'Christian_Drama.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Christian_Drama', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Christian_Drama.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831b30-1968-11ec-ae66-73cf937e5c79', 'Christian Sales Principles', 2, NULL, 'Christian_Sales_Principles_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Christian_Sales_Principles', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Christian_Sales_Principles_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831b58-1968-11ec-ae66-8373de9de2c1', 'Christian Storytelling', 2, NULL, 'Christian_Storytelling.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Christian_Storytelling', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Christian_Storytelling.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831b80-1968-11ec-ae66-c3980356d5c3', 'Christian Team Building', 2, NULL, 'Christian_Team_Building_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Christian_Team_Building', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Christian_Team_Building_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831ba8-1968-11ec-ae66-3bbea4d10e09', 'Christian Visitation', 2, NULL, 'Christian_Visitation_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Christian_Visitation', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Christian_Visitation_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831bd0-1968-11ec-ae66-af4685cbb98b', 'Climate Science', 2, NULL, 'Climate_Science_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Climate_Science', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Climate_Science_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831c16-1968-11ec-ae66-874dc45352cb', 'Cold Weather Survival', 1, NULL, 'Cold_Weather_Survival.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Cold_Weather_Survival', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Cold_Weather_Survival.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831c5c-1968-11ec-ae66-a3103201edcd', 'Communications', 2, NULL, 'Communications_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Communications', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Communications_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849f14-1968-11ec-ae66-27598230c3a8', 'Rowing', 2, NULL, 'Rowing_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Rowing', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Rowing_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832030-1968-11ec-ae66-6bd5b4bec1a7', 'Counted Cross Stitch', 2, NULL, 'Counted-Cross-Stitch.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Counted_Cross_Stitch', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Counted-Cross-Stitch.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832058-1968-11ec-ae66-e7a0a4e4dea9', 'CPR', 2, NULL, 'CPR_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/CPR', '255b6702-1969-11ec-a0d5-bf81259bde60', 'https://wiki.pathfindersonline.org/w/File:CPR_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832080-1968-11ec-ae66-af6ec87980bc', 'Creationism', 2, NULL, 'Creationism.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Creationism', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Creationism.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8320d0-1968-11ec-ae66-2b2f8757ee97', 'Crisis Intervention', 3, NULL, 'Crisis_Intervention.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Crisis_Intervention', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Crisis_Intervention.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8320ee-1968-11ec-ae66-238fdfc531fe', 'Crocheting', 2, NULL, 'Crocheting.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Crocheting', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Crocheting.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832148-1968-11ec-ae66-77363410e202', 'Cultural Diversity Appreciation', 2, NULL, 'Cultural_Diversity_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Cultural_Diversity_Appreciation', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Cultural_Diversity_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832170-1968-11ec-ae66-d305eedaf1b0', 'Cultural Food Preparation', 2, NULL, 'Cultural_Food_Preparation_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Cultural_Food_Preparation', '255b66ee-1969-11ec-a0d5-1f44980dd72a', 'https://wiki.pathfindersonline.org/w/File:Cultural_Food_Preparation_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83218e-1968-11ec-ae66-df6837930e09', 'Cultural Heritage', 2, NULL, 'Cultural_Heritage_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Cultural_Heritage', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Cultural_Heritage_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8321d4-1968-11ec-ae66-3bb3a46e3414', 'Currency', 2, NULL, 'Currency_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Currency', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Currency_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83221a-1968-11ec-ae66-ef5c2578094e', 'Cycling', 1, NULL, 'Cycling_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Cycling', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Cycling_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832260-1968-11ec-ae66-f32140184558', 'Dairying', 2, NULL, 'Dairying_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Dairying', '255b66bc-1969-11ec-a0d5-739a59556038', 'https://wiki.pathfindersonline.org/w/File:Dairying_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83227e-1968-11ec-ae66-ffe8c473dc04', 'Digestion', 2, NULL, 'Digestion_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Digestion', '255b6702-1969-11ec-a0d5-bf81259bde60', 'https://wiki.pathfindersonline.org/w/File:Digestion_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8322a6-1968-11ec-ae66-8b837ac62d2b', 'Digital Photography', 2, NULL, 'Digital_photography.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Digital_Photography', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Digital_photography.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8326fc-1968-11ec-ae66-4bf42114d25c', 'Ecology', 2, NULL, 'Ecology_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Ecology', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Ecology_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83276a-1968-11ec-ae66-f7ae90eca9e3', 'Edible Wild Plants', 2, NULL, 'Edible_Wild_Plants_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Edible_Wild_Plants', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Edible_Wild_Plants_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832792-1968-11ec-ae66-275736fa26cc', 'Electricity', 1, NULL, 'Electricity_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Electricity', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Electricity_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8327ba-1968-11ec-ae66-5378f6fed733', 'Endangered Species', 2, NULL, 'Endangered_Species.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Endangered_Species', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Endangered_Species.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8327d8-1968-11ec-ae66-2f78b5437ed9', 'Engineering', 2, NULL, 'Engineering_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Engineering', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Engineering_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832800-1968-11ec-ae66-6f7d3ef89d8d', 'Environmental Conservation', 2, NULL, 'Environmental_Conservation_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Environmental_Conservation', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Environmental_Conservation_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83281e-1968-11ec-ae66-1fb27ab7d04f', 'Eucalypts', 1, NULL, 'Eucalypts_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Eucalypts', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Eucalypts_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832846-1968-11ec-ae66-8feea8376a79', 'Family Life', 1, NULL, 'Family_Life_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Family_Life', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Family_Life_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83286e-1968-11ec-ae66-b7db0bf83b68', 'Feeding Ministries', 1, NULL, 'Feeding_Ministries.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Feeding_Ministries', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Feeding_Ministries.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83288c-1968-11ec-ae66-a3f08e8d21f1', 'Felt Craft', 1, NULL, 'Feltcraft.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Felt_Craft', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Feltcraft.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8328b4-1968-11ec-ae66-5f0c926603d2', 'Ferns', 2, NULL, 'Ferns_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Ferns', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Ferns_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8328fa-1968-11ec-ae66-837b93de6943', 'Fire Safety', 1, NULL, 'Fire_Safety.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Fire_Safety', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Fire_Safety.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8329a4-1968-11ec-ae66-576d691faf4a', 'Fishes', 2, NULL, 'Fishes_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Fishes', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Fishes_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832e5e-1968-11ec-ae66-2359a69c627d', 'Geocaching', 1, NULL, 'Geocaching_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Geocaching', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Geocaching_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832ea4-1968-11ec-ae66-07a1d21cdc23', 'Geological Geocaching', 2, NULL, 'Geological_Geocaching.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Geological_Geocaching', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Geological_Geocaching.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832f12-1968-11ec-ae66-b7ef59e4d6a4', 'Geology', 1, NULL, 'Geology_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Geology', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Geology_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832f58-1968-11ec-ae66-bfd6c2bc9bda', 'Gift Wrapping', 1, NULL, 'Gift_Wrapping_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Gift_Wrapping', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Gift_Wrapping_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832f76-1968-11ec-ae66-f706592007f1', 'Glass Craft', 1, NULL, 'Glasscraft.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Glass_Craft', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Glasscraft.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832f9e-1968-11ec-ae66-bbd1d144c9c7', 'Glass Etching', 1, NULL, 'Glass_Etching.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Glass_Etching', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Glass_Etching.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832fc6-1968-11ec-ae66-5f6ff10e4768', 'Glass Painting', 1, NULL, 'Glass_Painting.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Glass_Painting', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Glass_Painting.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832fe4-1968-11ec-ae66-df08d544cb94', 'Goat Husbandry', 2, NULL, 'Goat_Husbandry_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Goat_Husbandry', '255b66bc-1969-11ec-a0d5-739a59556038', 'https://wiki.pathfindersonline.org/w/File:Goat_Husbandry_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833034-1968-11ec-ae66-2f6975d69589', 'Gold Prospecting', 1, NULL, 'Gold_Prospecting_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Gold_Prospecting', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Gold_Prospecting_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83307a-1968-11ec-ae66-13655c14c2d6', 'Golf', 2, NULL, 'Golf_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Golf', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Golf_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833098-1968-11ec-ae66-87ab88fb43ee', 'Grasses', 3, NULL, 'Grasses_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Grasses', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Grasses_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8330c0-1968-11ec-ae66-27c660ae216d', 'Guitar', 2, NULL, 'Guitars.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Guitar', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Guitars.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83316a-1968-11ec-ae66-0b74e32d14e1', 'Herbs', 1, NULL, 'Herbs_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Herbs', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Herbs_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8334e4-1968-11ec-ae66-4fd30f36b2fa', 'Identifying Community Needs', 1, NULL, 'Identifying_Community_Needs.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Identifying_Community_Needs', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Identifying_Community_Needs.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833502-1968-11ec-ae66-2707314ccba4', 'Insects', 1, NULL, 'Insects_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Insects', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Insects_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83358e-1968-11ec-ae66-1fa338f58cac', 'Island Fishing', 2, NULL, 'Island_Fishing_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Island_Fishing', '255b66bc-1969-11ec-a0d5-739a59556038', 'https://wiki.pathfindersonline.org/w/File:Island_Fishing_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8335b6-1968-11ec-ae66-6f7737086d73', 'Journalism', 2, NULL, 'Journalism_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Journalism', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Journalism_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833606-1968-11ec-ae66-0b6727b9b85f', 'Judges of Israel', 2, NULL, 'Judges_of_Israel_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Judges_of_Israel', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Judges_of_Israel_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83364c-1968-11ec-ae66-779b4eed0f38', 'Juggling', 1, NULL, 'Juggling_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Juggling', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Juggling_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833674-1968-11ec-ae66-173f817d61a7', 'Junior Witness', 2, NULL, 'Junior_Witness_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Junior_Witness', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Junior_Witness_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849898-1968-11ec-ae66-03637d7c3b37', 'Pottery', 2, NULL, 'Pottery_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Pottery', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Pottery_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c83369c-1968-11ec-ae66-97d780187951', 'Junior Youth Leadership', 3, NULL, 'Junior_Youth_Leadership_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Junior_Youth_Leadership', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Junior_Youth_Leadership_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8336c4-1968-11ec-ae66-cb87a6e0bc21', 'Kanzashi', 1, NULL, 'Kanzashi_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Kanzashi', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Kanzashi_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8336ec-1968-11ec-ae66-3384bd30093c', 'Kayaking', 2, NULL, 'Kayaking_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Kayaking', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Kayaking_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833714-1968-11ec-ae66-07d0b128b936', 'Kings of Israel', 1, NULL, 'Kings_of_Israel_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Kings_of_Israel', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Kings_of_Israel_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833732-1968-11ec-ae66-3f6af0f2ed5d', 'Kites', 1, NULL, 'Kites_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Kites', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Kites_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833b92-1968-11ec-ae66-7f361d3a5fde', 'Literature Evangelism', 1, NULL, 'Literature_Evangelism_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Literature_Evangelism', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Literature_Evangelism_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833bba-1968-11ec-ae66-5be5c958d429', 'Livestock', 2, NULL, 'Livestock_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Livestock', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Livestock_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833c00-1968-11ec-ae66-bb4325a1214c', 'Mammals', 1, NULL, 'Mammals_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Mammals', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Mammals_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833c46-1968-11ec-ae66-a7f040dc2991', 'Maple Sugar', 1, NULL, 'Maple_Sugar_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Maple_Sugar', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Maple_Sugar_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833c8c-1968-11ec-ae66-b358daf6d9a5', 'Marine Algae', 3, NULL, 'Marine_Algae_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Marine_Algae', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Marine_Algae_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833cb4-1968-11ec-ae66-13482069e719', 'Marine Invertebrates', 2, NULL, 'Marine_Invertebrates_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Marine_Invertebrates', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Marine_Invertebrates_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833cdc-1968-11ec-ae66-53bebecdaf3a', 'Marine Mammals', 2, NULL, 'Marine_Mammals_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Marine_Mammals', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Marine_Mammals_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833d0e-1968-11ec-ae66-7bcc3f179683', 'Marsupials', 2, NULL, 'Marsupials_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Marsupials', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Marsupials_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833d4a-1968-11ec-ae66-a3a4ee540786', 'Masonry', 3, NULL, 'Masonry_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Masonry', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Masonry_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c833d7c-1968-11ec-ae66-b3c3205e3274', 'Mat Making', 2, NULL, 'Mat_Making_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Mat_Making', '255b66ee-1969-11ec-a0d5-1f44980dd72a', 'https://wiki.pathfindersonline.org/w/File:Mat_Making_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c848db2-1968-11ec-ae66-ef8df0907465', 'Native American Lore', 1, NULL, 'Native_American_Lore.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Native_American_Lore', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Native_American_Lore.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c848e34-1968-11ec-ae66-77dab7f6296e', 'Native Brush Construction', 3, NULL, 'Native_Bush_Construction_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Native_Brush_Construction', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Native_Bush_Construction_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84900a-1968-11ec-ae66-3fc771ce465b', 'Navigation', 2, NULL, 'Navigation_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Navigation', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Navigation_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849032-1968-11ec-ae66-8ff129782713', 'Needle Craft', 2, NULL, 'Needle_Craft_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Needle_Craft', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Needle_Craft_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84905a-1968-11ec-ae66-cfe45d149f5f', 'Nutrition', 1, NULL, 'Nutrition_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Nutrition', '255b66ee-1969-11ec-a0d5-1f44980dd72a', 'https://wiki.pathfindersonline.org/w/File:Nutrition_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8490b4-1968-11ec-ae66-8b6b756b06c3', 'Odonates', 2, NULL, 'Odonates_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Odonates', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Odonates_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8490fa-1968-11ec-ae66-57cc28bd7e03', 'Optics', 2, NULL, 'Optics_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Optics', '255b6702-1969-11ec-a0d5-bf81259bde60', 'https://wiki.pathfindersonline.org/w/File:Optics_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849122-1968-11ec-ae66-dbdbe7659b63', 'Orchids', 1, NULL, 'Orchids_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Orchids', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Orchids_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84914a-1968-11ec-ae66-1fdd655fb188', 'Orienteering', 2, NULL, 'Orienteering_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Orienteering', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Orienteering_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849168-1968-11ec-ae66-1f53ad306801', 'Origami', 1, NULL, 'Origami_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Origami', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Origami_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849190-1968-11ec-ae66-dfc82f1ed9ea', 'Outdoor Leadership', 3, NULL, 'Outdoor_Leadership_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Outdoor_Leadership', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Outdoor_Leadership_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8495c8-1968-11ec-ae66-2f7f13591f1b', 'Pinewood Derby', 1, NULL, 'Pinewood_Derby_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Pinewood_Derby', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Pinewood_Derby_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849618-1968-11ec-ae66-3320b9f636e2', 'Pioneering', 2, NULL, 'Pioneering_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Pioneering', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Pioneering_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84965e-1968-11ec-ae66-230f6962192c', 'Pizza Maker', 1, NULL, 'Pizza_Maker.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Pizza_Maker', '255b66ee-1969-11ec-a0d5-1f44980dd72a', 'https://wiki.pathfindersonline.org/w/File:Pizza_Maker.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849762-1968-11ec-ae66-1baa16705e84', 'Plaster Craft', 1, NULL, 'Plaster_Craft_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Plaster_Craft', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Plaster_Craft_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84978a-1968-11ec-ae66-a75c7b06e7b9', 'Plastic Canvas', 1, NULL, 'Plastic_Canvas_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Plastic_Canvas', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Plastic_Canvas_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8497da-1968-11ec-ae66-d7c50e3c17da', 'Plastics', 2, NULL, 'Plastics_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Plastics', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Plastics_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8497f8-1968-11ec-ae66-cbc107afe230', 'Plumbing', 3, NULL, 'Plumbing_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Plumbing', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Plumbing_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849820-1968-11ec-ae66-979734d61cb5', 'Poetry and Songwriting', 1, NULL, 'Poetry_%26_Songwriting_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Poetry_and_Songwriting', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Poetry_%26_Songwriting_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849848-1968-11ec-ae66-f792e37694d8', 'Postcards', 1, NULL, 'Postcards.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Postcards', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Postcards.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8498b6-1968-11ec-ae66-7357cb7b04ed', 'Poultry', 2, NULL, 'Poultry_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Poultry', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Poultry_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8498de-1968-11ec-ae66-5beca5b3f933', 'Poultry Raising', 1, NULL, 'Poultry_Raising_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Poultry_Raising', '255b66bc-1969-11ec-a0d5-739a59556038', 'https://wiki.pathfindersonline.org/w/File:Poultry_Raising_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849906-1968-11ec-ae66-f3c2e7e54aa4', 'Power Boating', 2, NULL, 'Power_Boating_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Power_Boating', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Power_Boating_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84996a-1968-11ec-ae66-af7f12988a8d', 'Prayer', 1, NULL, 'Prayer.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Prayer', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Prayer.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849c12-1968-11ec-ae66-efc3bc3dadcc', 'Red Alert', 1, NULL, 'Red_Alert_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Red_Alert', '255b6702-1969-11ec-a0d5-bf81259bde60', 'https://wiki.pathfindersonline.org/w/File:Red_Alert_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849c3a-1968-11ec-ae66-973785c4aaa4', 'Refugee Assistance', 1, NULL, 'Refugee_Assistance.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Refugee_Assistance', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Refugee_Assistance.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849c62-1968-11ec-ae66-4395a32dde6e', 'Renewable Energy', 2, NULL, 'Renewable_Energy_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Renewable_Energy', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Renewable_Energy_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849c8a-1968-11ec-ae66-7bb9b7b2502b', 'Reptiles', 1, NULL, 'Reptiles_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Reptiles', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Reptiles_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849cd0-1968-11ec-ae66-4775313519f8', 'Rivers and Streams', 2, NULL, 'Rivers_and_Streams_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Rivers_and_Streams', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Rivers_and_Streams_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84aacc-1968-11ec-ae66-d336293bcac5', 'Tents', 1, NULL, 'Tents_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Tents', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Tents_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849dde-1968-11ec-ae66-3be2c1a6bdfd', 'Robotics', 1, NULL, 'Robotics_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Robotics', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Robotics_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849e4c-1968-11ec-ae66-97a79c460275', 'Rock Climbing', 2, NULL, 'Rock_Climbing_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Rock_Climbing', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Rock_Climbing_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849f3c-1968-11ec-ae66-133a5f9f8aa5', 'Rural Development', 2, NULL, 'Rural_Development.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Rural_Development', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Rural_Development.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849f64-1968-11ec-ae66-3b25b19a6109', 'Sabbath Appreciation', 1, NULL, 'No_Patch.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Sabbath_Appreciation', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:No_Patch.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849f8c-1968-11ec-ae66-efe3e29eb19a', 'Sailing', 2, NULL, 'Sailing_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Sailing', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Sailing_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c849fb4-1968-11ec-ae66-a3d4a89e0f23', 'Sanctuary', 2, NULL, 'Sanctuary_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Sanctuary', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Sanctuary_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a28e-1968-11ec-ae66-d3459ca06f7b', 'Sign Language', 1, NULL, 'Sign_Language_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Sign_Language', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Sign_Language_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a2de-1968-11ec-ae66-3391e97b8b1a', 'Silk Screen Printing', 2, NULL, 'Silk_Screening_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Silk_Screen_Printing', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Silk_Screening_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a32e-1968-11ec-ae66-5fed7142630e', 'Skateboarding', 2, NULL, 'Skateboarding_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Skateboarding', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Skateboarding_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a374-1968-11ec-ae66-337c69f565e7', 'Skiing Downhill', 2, NULL, 'Skiing_Downhill_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Skiing_Downhill', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Skiing_Downhill_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a39c-1968-11ec-ae66-0b9d23a43845', 'Skin Diving', 2, NULL, 'Skin_Diving_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Skin_Diving', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Skin_Diving_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a3e2-1968-11ec-ae66-abc56182a12e', 'Small Engines', 2, NULL, 'Small_Engine_Repair_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Small_Engines', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Small_Engine_Repair_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a4d2-1968-11ec-ae66-9f5fee8dc1bd', 'Small Fruit Growing', 2, NULL, 'Small_Fruit_Growing_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Small_Fruit_Growing', '255b66bc-1969-11ec-a0d5-739a59556038', 'https://wiki.pathfindersonline.org/w/File:Small_Fruit_Growing_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a504-1968-11ec-ae66-c7c529f7988b', 'Small Group Bible Study', 1, NULL, 'Small_Group_Bible_Study_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Small_Group_Bible_Study', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Small_Group_Bible_Study_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a57c-1968-11ec-ae66-cb7071f406fc', 'Small Mammal Pets', 2, NULL, 'Small_Mammal_Pets_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Small_Mammal_Pets', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Small_Mammal_Pets_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a59a-1968-11ec-ae66-eb4c99608887', 'Snowshoeing', 1, NULL, 'Snowshoeing_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Snowshoeing', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Snowshoeing_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a5ea-1968-11ec-ae66-43512e1e7dae', 'Soap Craft', 1, NULL, 'Soapcraft_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Soap_Craft', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Soapcraft_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a630-1968-11ec-ae66-d3bd8b1158e5', 'Soap Making', 3, NULL, 'Soap_Making_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Soap_Making', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Soap_Making_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a8c4-1968-11ec-ae66-f35528ac3458', 'Swimming', 2, NULL, 'Swimming_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Swimming', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Swimming_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a9a0-1968-11ec-ae66-db9554b4abd6', 'Taiga', 1, NULL, 'Taiga_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Taiga', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Taiga_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84a9e6-1968-11ec-ae66-d7f6167457ce', 'Tailoring', 3, NULL, 'Tailoring_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Tailoring', '255b66ee-1969-11ec-a0d5-1f44980dd72a', 'https://wiki.pathfindersonline.org/w/File:Tailoring_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84aa0e-1968-11ec-ae66-77b37d98f653', 'Tapa Cloth', 1, NULL, 'Tapa_Cloths_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Tapa_Cloth', '255b66ee-1969-11ec-a0d5-1f44980dd72a', 'https://wiki.pathfindersonline.org/w/File:Tapa_Cloths_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84aa2c-1968-11ec-ae66-4f4be59c0f03', 'Teaching', 2, NULL, 'Teaching_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Teaching', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Teaching_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84aa54-1968-11ec-ae66-cbf901a193d2', 'Temperance', 2, NULL, 'Temperance_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Temperance', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Temperance_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84aa86-1968-11ec-ae66-b3003e5287ec', 'Temperate Deciduous Forests', 1, NULL, 'Temperate_Deciduous_Forests_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Temperate_Deciduous_Forests', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Temperate_Deciduous_Forests_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84aaa4-1968-11ec-ae66-f34cd25d8418', 'Tennis', 2, NULL, 'Tennis_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Tennis', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Tennis_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84aaf4-1968-11ec-ae66-57f0fb9badc1', 'Textile Painting', 2, NULL, 'Textile_Painting_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Textile_Painting', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Textile_Painting_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84abee-1968-11ec-ae66-f76def266a16', 'Thatching', 2, NULL, 'Thatching_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Thatching', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Thatching_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84ac7a-1968-11ec-ae66-231677b60d2c', 'Tile Laying', 3, NULL, 'Tile_Laying_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Tile_Laying', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Tile_Laying_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84aca2-1968-11ec-ae66-075bf3a7612d', 'Tole Painting', 1, NULL, 'Tole_Painting_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Tole_Painting', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Tole_Painting_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e264-1968-11ec-ae66-93400b9b6a10', 'Amphibians Advanced', 3, NULL, 'Amphibians_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Amphibians_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Amphibians_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c831c7a-1968-11ec-ae66-0338273fb3eb', 'Communications Advanced', 3, NULL, 'Communications_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Communications_-_Advanced', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Communications_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8326de-1968-11ec-ae66-1ba97a3f110a', 'Dcoupage', 1, NULL, 'Decoupage_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/D%C3%A9coupage', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Decoupage_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e41c-1968-11ec-ae66-4b3d69d586e2', 'Animal Tracking Advanced', 2, NULL, 'Animal_Tracking_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Animal_Tracking_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Animal_Tracking_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e340-1968-11ec-ae66-9f0f09bc68fd', 'Animal Camouflage Advanced', 2, NULL, 'Animal_Camouflage_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Animal_Camouflage_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Animal_Camouflage_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c82e4bc-1968-11ec-ae66-43b11bf3d91c', 'Antelopes Advanced', 2, NULL, 'Antelopes_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Antelopes_-_Advanced', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Antelopes_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c832242-1968-11ec-ae66-d32acf295c39', 'Cycling Advanced', 2, NULL, 'Cycling_Advanced.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Cycling_-_Advanced', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Cycling_Advanced.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c8300e6-1968-11ec-ae66-8bf5403db0ce', 'Braiding', 1, NULL, 'Braiding.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Braiding', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Braiding.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84acca-1968-11ec-ae66-d7ba8c647432', 'Toy Boat Regatta', 1, NULL, 'Toy_Boat_Regatta_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Toy_Boat_Regatta', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Toy_Boat_Regatta_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84ad38-1968-11ec-ae66-7fc613a58b62', 'Travel', 1, NULL, 'Travel_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Travel', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Travel_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84ad7e-1968-11ec-ae66-afbf51ff6ddd', 'Tree Climbing', 2, NULL, 'Tree_Climbing_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Tree_Climbing', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Tree_Climbing_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84ada6-1968-11ec-ae66-03996ecff999', 'Trees', 1, NULL, 'Trees_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Trees', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Trees_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84adf6-1968-11ec-ae66-fbd089a43b64', 'Triathlon', 2, NULL, 'Triathlon_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Triathlon', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Triathlon_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84aeaa-1968-11ec-ae66-ef8130e8248c', 'Tutoring', 2, NULL, 'Tutoring_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Tutoring', '255b669e-1969-11ec-a0d5-5f9c3808e737', 'https://wiki.pathfindersonline.org/w/File:Tutoring_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84af36-1968-11ec-ae66-fbcff0560d98', 'Unicycling', 2, NULL, 'Unicycle_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Unicycling', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Unicycle_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84af7c-1968-11ec-ae66-e3a56f58a604', 'Upholstery', 2, NULL, 'Upholstery_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Upholstery', '255aaac4-1969-11ec-a0d5-a352e347d53f', 'https://wiki.pathfindersonline.org/w/File:Upholstery_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84afa4-1968-11ec-ae66-ebbafdcaaf20', 'Video', 1, NULL, 'Video_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Video', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Video_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84aff4-1968-11ec-ae66-5745322d29df', 'Viruses', 2, NULL, 'Viruses_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Viruses', '255b6702-1969-11ec-a0d5-bf81259bde60', 'https://wiki.pathfindersonline.org/w/File:Viruses_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b01c-1968-11ec-ae66-73e99ff15f9c', 'Visual Media Critique', 2, NULL, 'Visual_Media_Critique_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Visual_Media_Critique', '255b6680-1969-11ec-a0d5-c7e787d35665', 'https://wiki.pathfindersonline.org/w/File:Visual_Media_Critique_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b03a-1968-11ec-ae66-8f3e8445e6cb', 'Volleyball', 1, NULL, 'Volleyball.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Volleyball', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Volleyball.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b062-1968-11ec-ae66-ef6f422bee8f', 'Wakeboarding', 1, NULL, 'Wakeboarding_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Wakeboarding', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Wakeboarding_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b0a8-1968-11ec-ae66-7f58eaf3868c', 'Water Safety Instructor', 3, NULL, 'Water_Safety_Instructor_AY_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Water_Safety_Instructor', '255b6630-1969-11ec-a0d5-5fc80e78c28e', 'https://wiki.pathfindersonline.org/w/File:Water_Safety_Instructor_AY_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1c84b0f8-1968-11ec-ae66-43333c18a899', 'Water Science', 1, NULL, 'Water_Science_Honor.png', 'https://wiki.pathfindersonline.org/w/AY_Honors/Water_Science', '255b66d0-1969-11ec-a0d5-3348b7692dd6', 'https://wiki.pathfindersonline.org/w/File:Water_Science_Honor.png'); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('07657254-7fa6-46b7-a1c3-5a543810ab80', 'tickling', 1, NULL, 'string.png', 'string', NULL, NULL); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('f58a1704-52ae-4ef2-a7b9-11b0baf36294', 'tickling', 1, NULL, 'string.png', 'string', NULL, NULL); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('51fc0b07-dc25-40cf-8a1e-39f0231b30dc', 'tickling', 1, NULL, 'string.png', 'string', NULL, NULL); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('951734ba-955a-435e-a869-0507abbbee76', 'tickling', 1, NULL, 'string.png', 'string', NULL, NULL); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('1ca24d10-9b31-40fe-9a61-0366405c34e2', 'tickling', 1, NULL, 'string.png', 'string', NULL, NULL); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('b6150bc0-fbc4-4426-aba1-494bac93d3e9', 'tickling', 1, NULL, 'string.png', 'string', NULL, NULL); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('4b20ab51-93bf-4ba6-91eb-cb57c1355d8e', 'tickling', 1, NULL, 'tickler.png', 'https://localhost:5001/swagger/index.html', NULL, NULL); -INSERT INTO public.honor (honor_id, name, level, description, patch_path, wiki_path, category_id, patch_image_page_path) VALUES ('93529dab-f55e-47aa-bf6e-e150ab0a2930', 'tickling 2', 2, NULL, 'tickler.png', 'https://localhost:5001/swagger/index.html', NULL, NULL); - - --- --- TOC entry 3649 (class 0 OID 16541) --- Dependencies: 213 --- Data for Name: pathfinder; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO public.pathfinder (pathfinder_id, first_name, last_name, email, create_timestamp, update_timestamp, grade, club_id, is_active) VALUES ('7b2183ee-ea8a-4374-98b0-4d7ad6c32d33', 'string', 'string', 'strin2g@string.com', '2023-01-23 21:27:02.453983-05', '2023-01-23 21:27:02.453983-05', 10, 'db08e49e-9aaa-11ed-afd1-d7d02de32d93', true); - --- --- TOC entry 3650 (class 0 OID 16547) --- Dependencies: 214 --- Data for Name: pathfinder_class; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO public.pathfinder_class (grade, name) VALUES (5, 'Friend'); -INSERT INTO public.pathfinder_class (grade, name) VALUES (6, 'Companion'); -INSERT INTO public.pathfinder_class (grade, name) VALUES (7, 'Explorer'); -INSERT INTO public.pathfinder_class (grade, name) VALUES (8, 'Ranger'); -INSERT INTO public.pathfinder_class (grade, name) VALUES (9, 'Voyager'); -INSERT INTO public.pathfinder_class (grade, name) VALUES (10, 'Guide'); -INSERT INTO public.pathfinder_class (grade, name) VALUES (11, 'Guide'); -INSERT INTO public.pathfinder_class (grade, name) VALUES (12, 'Guide'); - - --- --- TOC entry 3651 (class 0 OID 16552) --- Dependencies: 215 --- Data for Name: pathfinder_honor; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO public.pathfinder_honor (pathfinder_honor_id, pathfinder_id, honor_id, status_code, create_timestamp) VALUES ('8fbecbe3-750d-422e-ae74-0cc361f7d3ca', '7b2183ee-ea8a-4374-98b0-4d7ad6c32d33', '1c84b4c2-1968-11ec-ae66-9b7512432107', 300, '2023-05-01 20:43:10.463918-04'); -INSERT INTO public.pathfinder_honor (pathfinder_honor_id, pathfinder_id, honor_id, status_code, create_timestamp) VALUES ('e76a19e9-729c-4c3b-b044-5d50f0d7e181', '7b2183ee-ea8a-4374-98b0-4d7ad6c32d33', '1c84b49a-1968-11ec-ae66-b7eca09d4b8c', 300, '2023-05-01 20:43:10.540187-04'); -INSERT INTO public.pathfinder_honor (pathfinder_honor_id, pathfinder_id, honor_id, status_code, create_timestamp) VALUES ('b15c8399-fd67-4fea-b728-ff575bdd87e5', '7b2183ee-ea8a-4374-98b0-4d7ad6c32d33', '1c84b4e0-1968-11ec-ae66-076fe75b5194', 300, '2023-05-01 20:43:10.599004-04'); -INSERT INTO public.pathfinder_honor (pathfinder_honor_id, pathfinder_id, honor_id, status_code, create_timestamp) VALUES ('a4f39a1c-1435-40ad-9873-1c0dbc6807a2', '7b2183ee-ea8a-4374-98b0-4d7ad6c32d33', '1c84b508-1968-11ec-ae66-3f5b45b283c0', 300, '2023-05-01 20:43:10.616-04'); -INSERT INTO public.pathfinder_honor (pathfinder_honor_id, pathfinder_id, honor_id, status_code, create_timestamp) VALUES ('550cf61d-0dd3-4a41-a1c9-e764ba565987', '7b2183ee-ea8a-4374-98b0-4d7ad6c32d33', '1c84b526-1968-11ec-ae66-1f80a536b4f7', 300, '2023-05-01 20:43:10.627774-04'); -INSERT INTO public.pathfinder_honor (pathfinder_honor_id, pathfinder_id, honor_id, status_code, create_timestamp) VALUES ('35ce9ff6-f7cb-4687-bef8-e0af619a4dbc', '7b2183ee-ea8a-4374-98b0-4d7ad6c32d33', '1c84b54e-1968-11ec-ae66-6b134bdbc8c8', 300, '2023-05-01 20:43:10.663585-04'); - - --- --- TOC entry 3652 (class 0 OID 16556) --- Dependencies: 216 --- Data for Name: pathfinder_honor_status; Type: TABLE DATA; Schema: public; Owner: postgres --- - -INSERT INTO public.pathfinder_honor_status (status_code, name) VALUES (100, 'Planned'); -INSERT INTO public.pathfinder_honor_status (status_code, name) VALUES (300, 'Awarded'); -INSERT INTO public.pathfinder_honor_status (status_code, name) VALUES (200, 'Earned'); - - --- --- TOC entry 3659 (class 0 OID 0) --- Dependencies: 5 --- Name: SCHEMA public; Type: ACL; Schema: -; Owner: postgres --- - --- Role: dbuser -DROP ROLE IF EXISTS dbuser; - -CREATE ROLE dbuser WITH - LOGIN - NOSUPERUSER - INHERIT - NOCREATEDB - NOCREATEROLE - NOREPLICATION; - -GRANT pg_read_all_data, pg_write_all_data TO dbuser; - -REVOKE USAGE ON SCHEMA public FROM PUBLIC; -GRANT ALL ON SCHEMA public TO PUBLIC; - - --- Completed on 2023-07-23 11:09:05 EDT - --- --- PostgreSQL database dump complete --- diff --git a/README.md b/README.md index 6aaaf9b..208d517 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,6 @@ ASP.NET Core API for managing Pathfinder clubs, pathfinders, honors, achievement ## Project Layout - `PathfinderHonorManager/`: API project (controllers, services, EF Core, DTOs, validators, health checks). - `PathfinderHonorManager.Tests/`: NUnit test project with in-memory EF helpers and controller/service tests. -- `PathfinderHonorManager/Pathfinder-DB/`: database scripts. - `EF_MIGRATIONS_README.md`: migration workflow and baseline setup details. ## Prerequisites From 56cfbdf6d414ae28094af2f0683aee700ddefe95 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Jan 2026 15:51:15 +0000 Subject: [PATCH 4/5] chore: Bump the nuget-dependencies group with 15 updates Bumps Microsoft.AspNetCore.Authentication.JwtBearer from 10.0.1 to 10.0.2 Bumps Microsoft.AspNetCore.Authentication.MicrosoftAccount from 10.0.1 to 10.0.2 Bumps Microsoft.AspNetCore.Authorization from 10.0.1 to 10.0.2 Bumps Microsoft.AspNetCore.Mvc.Testing from 10.0.1 to 10.0.2 Bumps Microsoft.Data.Sqlite.Core from 10.0.1 to 10.0.2 Bumps Microsoft.EntityFrameworkCore from 10.0.1 to 10.0.2 Bumps Microsoft.EntityFrameworkCore.Design from 10.0.1 to 10.0.2 Bumps Microsoft.EntityFrameworkCore.InMemory from 10.0.1 to 10.0.2 Bumps Microsoft.EntityFrameworkCore.Proxies from 10.0.1 to 10.0.2 Bumps Microsoft.EntityFrameworkCore.Sqlite from 10.0.1 to 10.0.2 Bumps Microsoft.Extensions.DependencyInjection from 10.0.1 to 10.0.2 Bumps Microsoft.Extensions.Diagnostics.HealthChecks from 10.0.1 to 10.0.2 Bumps Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore from 10.0.1 to 10.0.2 Bumps Microsoft.Extensions.Logging from 10.0.1 to 10.0.2 Bumps Microsoft.Extensions.Logging.AzureAppServices from 10.0.1 to 10.0.2 --- updated-dependencies: - dependency-name: Microsoft.AspNetCore.Authentication.JwtBearer dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.AspNetCore.Authentication.MicrosoftAccount dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.AspNetCore.Authorization dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.EntityFrameworkCore dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.Extensions.DependencyInjection dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.Extensions.Logging dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.EntityFrameworkCore.Design dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.EntityFrameworkCore.Proxies dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.Extensions.Diagnostics.HealthChecks dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.Extensions.Logging.AzureAppServices dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.AspNetCore.Authentication.JwtBearer dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.AspNetCore.Authentication.MicrosoftAccount dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.AspNetCore.Authorization dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.AspNetCore.Mvc.Testing dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.Data.Sqlite.Core dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.EntityFrameworkCore dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.Extensions.DependencyInjection dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.Extensions.Logging dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.EntityFrameworkCore.Design dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.EntityFrameworkCore.InMemory dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.EntityFrameworkCore.Proxies dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.EntityFrameworkCore.Sqlite dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.Extensions.Diagnostics.HealthChecks dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Microsoft.Extensions.Logging.AzureAppServices dependency-version: 10.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies ... Signed-off-by: dependabot[bot] --- .../PathfinderHonorManager.Tests.csproj | 10 +++++----- .../PathfinderHonorManager.csproj | 20 +++++++++---------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/PathfinderHonorManager.Tests/PathfinderHonorManager.Tests.csproj b/PathfinderHonorManager.Tests/PathfinderHonorManager.Tests.csproj index 50bf685..04f0036 100644 --- a/PathfinderHonorManager.Tests/PathfinderHonorManager.Tests.csproj +++ b/PathfinderHonorManager.Tests/PathfinderHonorManager.Tests.csproj @@ -18,14 +18,14 @@ - - + + - - + + - + diff --git a/PathfinderHonorManager/PathfinderHonorManager.csproj b/PathfinderHonorManager/PathfinderHonorManager.csproj index 1adba2d..b9ee1fe 100644 --- a/PathfinderHonorManager/PathfinderHonorManager.csproj +++ b/PathfinderHonorManager/PathfinderHonorManager.csproj @@ -12,26 +12,26 @@ - - + + runtime; build; native; contentfiles; analyzers; buildtransitive all - - + + - + - + - - - - + + + + From 8c12a032ad38c9d28e155050f4eec557bf517b9c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Feb 2026 18:26:55 +0000 Subject: [PATCH 5/5] chore: Bump the nuget-dependencies group with 1 update Bumps Swashbuckle.AspNetCore from 10.1.0 to 10.1.1 --- updated-dependencies: - dependency-name: Swashbuckle.AspNetCore dependency-version: 10.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies - dependency-name: Swashbuckle.AspNetCore dependency-version: 10.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-dependencies ... Signed-off-by: dependabot[bot] --- PathfinderHonorManager/PathfinderHonorManager.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PathfinderHonorManager/PathfinderHonorManager.csproj b/PathfinderHonorManager/PathfinderHonorManager.csproj index b9ee1fe..53ed861 100644 --- a/PathfinderHonorManager/PathfinderHonorManager.csproj +++ b/PathfinderHonorManager/PathfinderHonorManager.csproj @@ -25,7 +25,7 @@ - +