Re-edited HH templates to change the link back. Ran some scripts for cin7, courtney, and a few others. Downloaded GoGuardian templates to help Nergis.

This commit is contained in:
Norm Rasmussen
2024-01-08 16:41:01 -05:00
parent a5fe4bd2c8
commit bf9d065f3b
37 changed files with 1401 additions and 952 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,72 @@
<div class="np-card np-no-horizontal-padding">
<div class="np-card-container">
<div class="np-learning-path">
<div class="lp-image">
<img
alt="{{ learning_path.name }}"
class="np-card-image learning-path-image"
src="{{ learning_path.image_url }}"
/>
</div>
<div class="np-card-text-wrapper">
<div class="np-hidden-desktop np-card-header">
<i class="np-card-header-icon far fa-road"></i>
<div class="np-card-header-type">{% t shared.learning_path.title %}</div>
<div class="np-hidden-desktop np-card-header-items-count">
{{ learning_path.items.count }} {% t .items %}
</div>
</div>
<div class="np-hidden-mobile np-card-header">
<div class="np-card-header-type">{% t shared.learning_path.title %}</div>
<i class="np-card-header-icon far fa-road"></i>
</div>
<div class="np-card-content np-card-padding np-card-content-vertical">
<h3 class="np-card-content-title">
{{ learning_path.name }}
</h3>
<div class="np-card-content-subtitle">
{{ learning_path.instructor_names }}
</div>
<div class="np-hidden-mobile np-card-content-description">
{{ learning_path.description }}
</div>
<div class="np-hidden-mobile np-card-content-progress
np-button-color">
{% t shared.progress, count: learning_path.progress %}
</div>
<div class="np-hidden-mobile np-card-progress-bar-container">
<div
style="width: {{ learning_path.progress }}%"
class="np-button-background-color np-card-progress-bar">
</div>
</div>
<div class="np-card-content-footer">
<div class="np-hidden-desktop np-card-content-progress
np-button-color">
{% t shared.progress, count: learning_path.progress %}
</div>
<a class="np-button" href="{% route learning_path, id: learning_path.id %}">
{% t shared.view %}
</a>
<span class="np-hidden-mobile np-learning-path-items">
<i class="np-button-color np-learning-path-items-icon far fa-graduation-cap"></i>
<span class="np-learning-path-items-count">
{{ learning_path.items.count }} {% t .items %}
</span>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="np-card-stack">
<div class="np-card-stack-level-1"></div>
<div class="np-card-stack-level-2"></div>
</div>
</div>

View File

@ -0,0 +1,20 @@
{% if courses.enrolled.any? %}
<div class="row row-with-thumbnails">
{% for course in courses.enrolled %}
{% for category in course.categories %}
{% unless category.name == 'Pear Deck Resource' or category.name == 'GoGuardian Resource' or category.name == 'Edulastic Resource'%}
<div class="{{ class }}">
{% include "cards_course" with course %}
</div>
{% endunless %}
{%endfor%}
{% endfor %}
</div>
{% else %}
{% capture message %}
{% t shared.zero_state.courses.index,
key: current_school.course_vocabulary
%}
{% endcapture %}
{% include "courses_zero_state", message: message %}
{% endif %}

View File

@ -0,0 +1,64 @@
{% if learning_path.enrolled? and course.unlocked? %}
<div class="np-learning-path-outline-bar np-hidden-mobile"></div>
<a
class="np-learning-path-outline-item np-card-container"
href="{% route learning_path_course, learning_path_id: learning_path.id, id: course.id %}"
>
<div class="np-card-content np-card-padding">
<img
src="{{ item.image }}"
alt="{{ course.name }}"
class="np-learning-path-outline-course-image"
>
<div class="np-learning-path-outline-content">
<div class="np-learning-path-outline-name np-top-title">
{{ course.name }}
</div>
{% if course.instructors %}
<div class="np-learning-path-outline-caption">
{{ course.instructors }}
</div>
{% endif %}
<div class="np-learning-path-outline-progress
{% if course.completed? %} np-color-success {% else %} np-button-color {% endif %}
">
{% t shared.progress, count: course.progress %}
</div>
{% comment %} {% for key in courses.enrolled %}
{% if key.id == course.id %}
{% if key.properties.course_duration > 0 %}
{{key.properties.course_duration}} mins
{%endif%}
{% endif %}
{% endfor %} {% endcomment %}
</div>
<i class="fas fa-chevron-right np-learning-path-outline-icon"></i>
{% if course.optional? %}
<div class="np-optional-ribbon">
{% t shared.optional %}
</div>
{% endif %}
</div>
</a>
{% else %}
<div class="np-learning-path-outline-item np-learning-path-outline-inactive-item np-card-container">
<div class="np-card-content np-card-padding">
<img
src="{{ item.image }}"
alt="{{ course.name }}"
class="np-learning-path-outline-course-image"
>
<div class="np-learning-path-outline-content">
<div class="np-learning-path-outline-name np-top-title">
{{ course.name }}
</div>
</div>
{% if course.optional? %}
<div class="np-optional-ribbon">
{% t shared.optional %}
</div>
{% endif %}
</div>
</div>
{% endif %}

View File

@ -0,0 +1,35 @@
<div class="np-resource-header np-resource-header-card np-card-padding-large">
<div class="np-top-vocabulary np-text-title">
{% t shared.learning_path.title %}
<i class="far fa-road np-button-color np-learning-path-icon"></i>
</div>
<div class="np-top-title lp-title">
<a href="{% route home %}" class="np-back-button" aria-label="{% t shared.go_back %}">
<i class="far fa-arrow-left np-icon-back"></i>
</a>
{{ learning_path.name }}
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-6">
<div class="np-card-container">
<img
src="{{ learning_path.image_url }}"
class="np-top-image"
alt="{{ learning_path.name }}"
/>
<div class="np-card-padding-dynamic">
{% include "learning_path_description" %}
{% include "learning_path_instructors" %}
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 np-grid-spacing">
<div class="np-top-cta">
{% include "learning_path_progress_and_cta" %}
</div>
{% include "learning_path_outline" %}
</div>
</div>

View File

@ -0,0 +1,37 @@
<div class="np-resource-header np-card-padding-large">
<div class="np-top-vocabulary np-text-title">
{% t shared.learning_path.title %}
<i class="far fa-road np-button-color np-learning-path-icon"></i>
</div>
<div class="np-top-title lp-title">
{{ learning_path.name }}
</div>
<img
src="{{ learning_path.image_url }}"
class="np-top-image"
alt="{{ learning_path.name }}"
/>
<div class="np-top-cta">
{% include "learning_path_progress_and_cta" %}
</div>
</div>
{% if learning_path.in_progress? %}
{% include "learning_path_outline" %}
<div class="np-card-container np-card-padding np-card-spacing">
{% include "learning_path_description" %}
</div>
{% else %}
<div class="np-card-container np-card-padding np-card-spacing">
{% include "learning_path_description" %}
</div>
<div class="np-card-spacing">
{% include "learning_path_outline" %}
</div>
{% endif %}
{% if learning_path.instructors.any? %}
<div class="np-card-container np-card-padding np-card-spacing">
{% include "learning_path_instructors" %}
</div>
{% endif %}

View File

@ -0,0 +1,27 @@
<div class="np-learning-path-outline training-session-lp">
<div class="session_lock">
{%include "learning_path_training_session_locked"%}
</div>
<div class="session_unlock">
{%include "learning_path_training_session_unlocked"%}
</div>
</div>
<div class="np-learning-path-outline">
{% for item in learning_path.items %}
{% if item.course? %}
{% include "learning_path_course", course: item %}
{% endif %}
{% endfor %}
</div>
<style>
.session_unlock {
display: flex;
flex-direction: column;
}
.session_lock {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 10px;
}
</style>

View File

@ -0,0 +1,58 @@
{% assign webinar_string = '' %}
{% if training_session.name and training_session.name contains 'Webinar' %}
{% assign webinar_string = 'webinar' %}
{% endif %}
{% if learning_path.enrolled? and training_session.unlocked? %}
<div class="np-learning-path-outline-bar np-hidden-mobile" ></div>
<a
class="np-learning-path-outline-item np-card-container"
href="{% route training_session, id: training_session.id %}"
>
<div class="np-card-content np-card-padding">
<div class="np-events-content-date np-button-background-color">
<div class="np-events-content-month">
{{ training_session.month }}
</div>
<div class="np-events-content-day">
{{ training_session.day }}
</div>
</div>
<div class="np-learning-path-outline-content">
<div class="np-learning-path-outline-name np-top-title">{{ training_session.name }}</div>
<div class="np-learning-path-outline-caption">{{ training_session.instructors }}</div>
<div class="np-events-content-time np-learning-path-outline-time np-button-color">
{{ training_session.time }} {{ training_session.time_zone }}
</div>
</div>
<i class="fas fa-chevron-right np-learning-path-outline-icon"></i>
{% if training_session.optional? %}
<div class="np-optional-ribbon">
{% t shared.optional %}
</div>
{% endif %}
</div>
</a>
{% else %}
<div class="np-learning-path-outline-item np-card-container np-learning-path-outline-inactive-item webinar-outline">
<div class="np-card-content np-card-padding">
<div class="np-events-content-date np-button-background-color">
<div class="np-events-content-month">
{{ training_session.month }}
</div>
<div class="np-events-content-day">
{{ training_session.day }}
</div>
</div>
<div class="np-learning-path-outline-content">
<div class="np-learning-path-outline-name np-top-title">{{ training_session.name }}</div>
<div class="np-learning-path-outline-caption">{{ training_session.caption }}</div>
</div>
{% if training_session.optional? %}
<div class="np-optional-ribbon">
{% t shared.optional %}
</div>
{% endif %}
</div>
</div>
{% endif %}

View File

@ -0,0 +1,34 @@
{% for item in learning_path.items %}
{% if item.training_event? %}
{% assign webinar_string = '' %}
{% assign training_session = item %}
{% if training_session.name and training_session.name contains 'Webinar' %}
{% assign webinar_string = 'webinar' %}
{% endif %}
{% if learning_path.enrolled? and training_session.unlocked? %}
{% else %}
<div class="np-learning-path-outline-item np-card-container np-learning-path-outline-inactive-item webinar-outline">
<div class="np-card-content np-card-padding">
<div class="np-events-content-date np-button-background-color">
<div class="np-events-content-month">
{{ training_session.month }}
</div>
<div class="np-events-content-day">
{{ training_session.day }}
</div>
</div>
<div class="np-learning-path-outline-content">
<div class="np-learning-path-outline-name np-top-title">{{ training_session.name }}</div>
<div class="np-learning-path-outline-caption">{{ training_session.caption }}</div>
</div>
{% if training_session.optional? %}
<div class="np-optional-ribbon">
{% t shared.optional %}
</div>
{% endif %}
</div>
</div>
{% endif %}
{% endif %}
{% endfor %}

View File

@ -0,0 +1,40 @@
{% for item in learning_path.items %}
{% if item.training_event? %}
{% assign webinar_string = '' %}
{% assign training_session = item %}
{% if training_session.name and training_session.name contains 'Webinar' %}
{% assign webinar_string = 'webinar' %}
{% endif %}
{% if learning_path.enrolled? and training_session.unlocked? %}
<div class="np-learning-path-outline-bar np-hidden-mobile" ></div>
<a
class="np-learning-path-outline-item np-card-container"
href="{% route training_session, id: training_session.id %}"
>
<div class="np-card-content np-card-padding">
<div class="np-events-content-date np-button-background-color">
<div class="np-events-content-month">
{{ training_session.month }}
</div>
<div class="np-events-content-day">
{{ training_session.day }}
</div>
</div>
<div class="np-learning-path-outline-content">
<div class="np-learning-path-outline-name np-top-title">{{ training_session.name }}</div>
<div class="np-learning-path-outline-caption">{{ training_session.instructors }}</div>
<div class="np-events-content-time np-learning-path-outline-time np-button-color">
{{ training_session.time }} {{ training_session.time_zone }}
</div>
</div>
<i class="fas fa-chevron-right np-learning-path-outline-icon"></i>
{% if training_session.optional? %}
<div class="np-optional-ribbon">
{% t shared.optional %}
</div>
{% endif %}
</div>
</a>
{% endif %}
{% endif %}
{% endfor %}

View File

@ -0,0 +1,59 @@
<div class="np-card">
<div class="np-card-container">
{% if course.ribbon %}
<div class="np-card-ribbon">
{{ course.ribbon }}
</div>
{% endif %}
<img
class="np-card-image"
alt="{{ course.name }}"
src="{{ course.image_url }}"
>
<div class="np-card-content np-card-content-vertical np-card-padding">
<h3 class="np-card-content-title">
{{ course.name }}
</h3>
<div class="np-card-content-subtitle">
{{ course.instructor_names }}
</div>
<div class="np-card-content-footer">
<div class="np-card-content-progress np-button-color">
{% t shared.progress, count: course.progress %}
</div>
{% capture course_path %}{% route course, id: course.id %}{% endcapture %}
{% if course.has_to_restart? %}
{% include "course_version_outdated_popup", path: course_path %}
{% endif %}
{% if course.learner_can_retake? %}
<form action="{% route course_retake, id: course.id %}" method="POST">
{% form_authenticity_token %}
<button type="submit" class="np-button np-button-wide">
Retake Course
</button>
</form>
{% else %}
<a
class="np-button np-button-wide"
{% if course.enrolled? %}
href="{% route course_viewer, course_id: course.id, learning_path_id: params.learning_path_id %}"
{% else %}
href="{% route course_enrollment, code: course.enrollment_code %}"
{% endif %}
>
{% if course.enrolled? == false %}
{% t shared.enroll %}
{% elsif course.started? == false %}
{% t shared.course.start, key: current_school.course_vocabulary %}
{% elsif course.completed? %}
{% t shared.course.view, key: current_school.course_vocabulary %}
{% else %}
{% t shared.continue %}
{% endif %}
</a>
{% endif %}
</div>
</div>
</div>
</div>

View File

@ -0,0 +1,73 @@
<nav class="np-sub-navigation">
<div class="np-sub-navigation-content">
{% for link in navigations.sub_navigation %}
{% if link.label != 'Dashboard' and link.label != "Learning Paths"%}
<div class="np-sub-navigation-content-item {{ link.active_class }}">
<a class="np-sub-navigation-content-item-link" href="{{ link.url }}">
<i class="{{ link.icon }} np-button-color np-sub-navigation-content-item-icon"></i>
{% if link.label == 'Home' %}
My Learning
{%else%}
{{ link.label }}
{% endif %}
</a>
<div class="np-sub-navigation-content-item-bar np-button-background-color"></div>
</div>
{% endif %}
{% endfor %}
<div id='communication' class="np-sub-navigation-content-item np-sub-navigation-content-item-inactive">
<a class="np-sub-navigation-content-item-link" href="/app/communication">
<i class="far fa-address-card np-button-color np-sub-navigation-content-item-icon"></i>
Communication
</a>
<div class="np-sub-navigation-content-item-bar np-button-background-color"></div>
</div>
<div id='resources' class="np-sub-navigation-content-item np-sub-navigation-content-item-inactive">
<a class="np-sub-navigation-content-item-link" href="/app/resources">
<i class="far fa-book-open np-button-color np-sub-navigation-content-item-icon"></i>
Resources
</a>
<div class="np-sub-navigation-content-item-bar np-button-background-color"></div>
</div>
<div id='explore' class="np-sub-navigation-content-item np-sub-navigation-content-item-inactive">
<a class="np-sub-navigation-content-item-link" href="/app/explore">
<i class="far fa-search np-button-color np-sub-navigation-content-item-icon"></i>
Explore
</a>
<div class="np-sub-navigation-content-item-bar np-button-background-color"></div>
</div>
</div>
</nav>
<script>
document.addEventListener('DOMContentLoaded', () => {
const catalog = document.getElementById('catalog');
const communication = document.getElementById('communication');
const explore = document.getElementById('explore');
const resources = document.getElementById('resources');
if (window.location.href.split('/')[4] === "catalog") {
catalog.classList.add('np-sub-navigation-content-item-active');
catalog.classList.remove('np-sub-navigation-content-item-inactive');
} else if (window.location.href.split('/')[4] === "communication") {
communication.classList.add('np-sub-navigation-content-item-active');
communication.classList.remove('np-sub-navigation-content-item-inactive');
}
else if (window.location.href.split('/')[4] === "explore") {
explore.classList.add('np-sub-navigation-content-item-active');
explore.classList.remove('np-sub-navigation-content-item-inactive');
}
else if (window.location.href.split('/')[4] === "resources" || window.location.href.split('/')[4] === "edulastic" || window.location.href.split('/')[4] === "goguardian" || window.location.href.split('/')[4] === "pear-deck") {
resources.classList.add('np-sub-navigation-content-item-active');
resources.classList.remove('np-sub-navigation-content-item-inactive');
}
else {
catalog.classList.remove('np-sub-navigation-content-item-active"');
communication.classList.remove('np-sub-navigation-content-item-active');
}
});
</script>

View File

@ -0,0 +1,13 @@
{% include "header" %}
{% include "course_version_outdated_alert", courses: courses.in_catalog %}
{% include "sub_navigation" %}
<main class="np-main np-catalog np-subpage-container np-max-width">
<div class="np-catalog-header-wrapper">
<div class="np-catalog-header">
<div class="np-resource-title">Catalog</div>
{% comment %} <div class="np-resource-subtitle">{{ catalog.subheadline }}</div> {% endcomment %}
</div>
</div>
{% include "courses_catalog" %}
</main>
{% include "footer" %}

View File

@ -0,0 +1,250 @@
{% include "header" %}
{% include "sub_navigation" %}
<main class="communication-page">
<div class="advocacy">
<div class="heading">Certified Coach Program Contacts</div>
<div class="subheading">For all Coach related questions</div>
<div class="advocacy-content-wrapper">
<div class="advocacy-member">
<img class="icon-image" src="https://s3.amazonaws.com/static.northpass.com/Educator's+Hub/communication-page/pear.png" alt="">
<div class="content-block">
<span class="team-member">Amber Trout, Manager, Customer Marketing</span>
<span>Pear Deck Specialist</span>
<span>Email: <a class="communication-link" href="mailto:amber@goguardian.com">amber@goguardian.com</a></span>
<span>Twitter: <a class="communication-link" href="https://twitter.com/AmberPearDeck">@AmberPearDeck</a></span>
</div>
</div>
<div class="advocacy-member">
<img class="icon-image" src="https://s3.amazonaws.com/static.northpass.com/Educator's+Hub/communication-page/goguardian.png" alt="">
<div class="content-block ">
<span class="team-member">Mary Alys Foutz, Senior Customer Marketing Manager</span>
<span>GoGuardian Teacher Certified Coach Program Specialist</span>
<span>Email: <a class="communication-link" href="mailto:malysfoutz@goguardian.com">malysfoutz@goguardian.com</a></span>
<span>Twitter: <a class="communication-link" href="https://twitter.com/MA_PearDeck">@MA_PearDeck</a></span>
</div>
</div>
<div class="advocacy-member">
<img class="icon-image" src="https://s3.amazonaws.com/static.northpass.com/Educator's+Hub/communication-page/edulastic.png" alt="">
<div class="content-block ">
<span class="team-member">Gary Giordano, Customer Marketing Manager</span>
<span>Edulastic Certified Coach Program Specialist</span>
<span>Email: <a class="communication-link" href="mailto:gary@goguardian.com">gary@goguardian.com</a></span>
<span>Twitter: <a class="communication-link" href="https://twitter.com/GaryPearDeck">@GaryPearDeck</a></span>
</div>
</div>
</div>
</div>
<div class="information-wrapper">
<div class="info">
<img class="icon-image" src="https://s3.amazonaws.com/static.northpass.com/Educator's+Hub/communication-page/newsletter.png" alt="">
<div class="info-text">
<div class="bold-heading info-heading">Coach Newsletters</div>
<div class="content">You'll receive the Pear Deck, GoGuardian Teacher, or Edulastic Coach newsletter in your inbox on a quarterly basis with announcements about new features before they're publicly released, opportunities to present at conferences, invitations to write for our blog, and more! Don't worry about signing up — you are automatically subscribed!</div>
</div>
</div>
{% comment %} <div class="heading">Stay Connected</div>
<div class="info">
<img class="icon-image" src="https://s3.amazonaws.com/static.northpass.com/Educator's+Hub/communication-page/slack.png" alt="">
<div class="info-text">
<div class="bold-heading info-heading">Slack</div>
<div class="content">Slack is an instant messaging platform that Coaches use to stay connected. During your training, youll be part of a private group with other educators from your cohort. Join the broader Coach community <a class="communication-link" href="https://educatorshub.slack.com/archives/CQ0UD78UD">here</a>!</div>
</div>
</div> {% endcomment %}
</div>
<div class="general-contacts">
<div class="heading">General Contacts</div>
<div class="subheading">For all non-Coach related questions</div>
<div class="general-contacts-content-wrapper">
<div class="general-contact-member">
<div class="content-block">
<span class="team-member">Jacklyn Grummel</span>
<span>Manager, Customer Education</span>
<span>Email: <a class="communication-link" href="mailto:jgrummel@goguardian.com" target="_blank">jgrummel@goguardian.com</a></span>
</div>
</div>
<div class="advocacy-member">
<div class="content-block ">
<span class="team-member">Elizabeth Navarro</span>
<span>Senior Customer Education Specialist</span>
<span>Email: <a class="communication-link" href="mailto:enavarro@goguardian.com" target="_blank">enavarro@goguardian.com</a></span>
</div>
</div>
</div>
</div>
{% comment %} <div class="heading">General News</div>
<div class="content text-center">Want to be in the know about everything Pear Deck, GoGuardian, or Edulastic? Sign up for the general newsletter to get your name on the list. </div>
<div class="sub-container">
<div class="subscribe">
<div class="bold-heading sub-heading">Subscribe to Pear Deck news</div>
<div class="sub-link-container">
<a class="communication-link sub-link" href="https://www.peardeck.com/newsletter">Subscribe</a>
</div>
</div>
<div class="subscribe">
<div class="bold-heading sub-heading">Subscribe to GoGuardian news</div>
<div class="sub-link-container">
<a class="communication-link sub-link" href="https://www.goguardian.com/newsletter">Subscribe</a>
</div>
</div>
<div class="subscribe">
<div class="bold-heading sub-heading">Subscribe to Edulastic news</div>
<div class="sub-link-container">
<a class="communication-link sub-link" href="https://edulastic.com/newsletter/">Subscribe</a>
</div>
</div>
</div> {% endcomment %}
</main>
{% include "footer" %}
<style>
.text-center {
text-align: center;
}
.communication-page {
margin: 20px 4%;
}
.communicaton-heading {
background: #0c65b8;
color: #fff;
font-weight: bold;
padding: 1rem 1.5rem;
font-size: 1.5rem;
text-align: center;
}
.bold-heading {
font-weight: bold;
color: #000;
}
.content-block, .info {
margin: 1rem 0;
}
.content-block br {
margin: 3px;
}
.info {
display: flex;
max-width: 1000px;
background: #fff;
padding: 1.5rem 0;
border-radius: 12px;
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.info-text {
display: flex;
flex-direction: column;
justify-content: center;
}
.advocacy,
.general-contacts {
display: flex;
flex-direction: column;
align-items: center;
}
.advocacy-content-wrapper {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 15px;
grid-row-gap: 0px;
}
.general-contacts-content-wrapper {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 15px;
grid-row-gap: 0px;
}
@media only screen and (max-width: 1040px) {
.advocacy-content-wrapper {
grid-template-columns: repeat(1, 1fr);
}
}
@media only screen and (max-width: 740px) {
.advocacy-content-wrapper,
.general-contacts-content-wrapper {
grid-template-columns: repeat(1, 1fr);
}
}
.content-block {
display: flex;
flex-direction: column;
padding: 1rem;
}
.team-member {
font-weight: bold;
margin-bottom: 5px;
}
.information-wrapper {
display: flex;
flex-direction: column;
align-items: center;
}
.info-heading {
margin-bottom: 0.5rem;
font-size: 1.2rem;
}
.subscribe {
background: #fff;
margin: 1rem 0;
padding: 1.5rem;
border-radius: 12px;
text-align: center;
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.sub-heading {
margin-bottom: 1.5rem;
}
.sub-link {
background: #0c65b8;
color: #fff;
text-decoration: none;
padding: 10px 15px;
border-radius: 8px;
font-weight: bold;
font-size: 0.85rem;
}
.sub-link-container {
display: flex;
justify-content: center;
}
.sub-container {
display: flex;
flex-wrap: wrap;
width: 100%;
justify-content: center;
gap: 15px;
margin-bottom: 2rem;
}
.heading {
text-align: center;
font-size: 1.5rem;
font-weight: bold;
color: #000;
margin: 32px 0 12px;
}
.subheading {
text-align: center;
font-size: 18px;
color: #000;
margin: 0 0 1rem;
}
.advocacy-member,
.general-contact-member {
display: flex;
background: #fff;
padding: 0.5rem;
border-radius: 12px;
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
margin: 10px;
align-items: center;
}
.icon-image {
height: 100px;
padding: 1rem;
}
</style>

View File

@ -0,0 +1,3 @@
<script>
window.location.replace("https://goguardian-academy.northpass.com/app");
</script>

View File

@ -0,0 +1,34 @@
{% include "header" %}
{% include "course_version_outdated_alert", courses: courses.in_catalog %}
{% include "sub_navigation" %}
<main class="np-main np-catalog np-subpage-container np-max-width">
<div class="np-catalog-header-wrapper">
<div class="np-catalog-header">
<div class="np-resource-title">Edulastic Resource</div>
{% comment %} <div class="np-resource-subtitle">{{ catalog.subheadline }}</div> {% endcomment %}
</div>
</div>
{% assign any_courses = false %}
<div class="np-catalog-courses row row-with-thumbnails">
{% for course in courses.in_catalog %}
{% for category in course.categories %}
{% if category.name == 'Edulastic Resource' %}
{% assign any_courses = true %}
<div class="col-xs-12 col-md-6 col-lg-4 np-stretch-content">
{% include "resources_cards_course" with course %}
</div>
{% endif %}
{% endfor %}
{% endfor %}
</div>
{% if any_courses == false %}
{% capture message %}
{% t shared.zero_state.courses.catalog,
key: current_school.course_vocabulary
%}
{% endcapture %}
{% include "courses_zero_state", message: message %}
{% endif %}
</main>
{% include "footer" %}

View File

@ -0,0 +1,31 @@
{% include "header" %}
{% include "course_version_outdated_alert", courses: courses.in_catalog %}
{% include "sub_navigation" %}
<main class="np-main np-catalog np-subpage-container np-max-width">
<div class="np-catalog-header-wrapper">
<div class="np-catalog-header">
<div class="np-resource-title">Interest Forms</div>
{% comment %} <div class="np-resource-subtitle">{{ catalog.subheadline }}</div> {% endcomment %}
</div>
</div>
{% if courses.in_catalog.any? %}
<div class="np-catalog-courses row row-with-thumbnails">
{% for course in courses.in_catalog %}
{% if course.properties.featured_courses == true %}
<div class="col-xs-12 col-md-6 col-lg-4 np-stretch-content">
{% include "cards_course" with course %}
</div>
{% endif %}
{% endfor %}
</div>
{% else %}
{% capture message %}
{% t shared.zero_state.courses.catalog,
key: current_school.course_vocabulary
%}
{% endcapture %}
{% include "courses_zero_state", message: message %}
{% endif %}
</main>
{% include "footer" %}

View File

@ -0,0 +1,34 @@
{% include "header" %}
{% include "course_version_outdated_alert", courses: courses.in_catalog %}
{% include "sub_navigation" %}
<main class="np-main np-catalog np-subpage-container np-max-width">
<div class="np-catalog-header-wrapper">
<div class="np-catalog-header">
<div class="np-resource-title">GoGuardian Resource</div>
{% comment %} <div class="np-resource-subtitle">{{ catalog.subheadline }}</div> {% endcomment %}
</div>
</div>
{% assign any_courses = false %}
<div class="np-catalog-courses row row-with-thumbnails">
{% for course in courses.in_catalog %}
{% for category in course.categories %}
{% if category.name == 'GoGuardian Resource' %}
{% assign any_courses = true %}
<div class="col-xs-12 col-md-6 col-lg-4 np-stretch-content">
{% include "resources_cards_course" with course %}
</div>
{% endif %}
{% endfor %}
{% endfor %}
</div>
{% if any_courses == false %}
{% capture message %}
{% t shared.zero_state.courses.catalog,
key: current_school.course_vocabulary
%}
{% endcapture %}
{% include "courses_zero_state", message: message %}
{% endif %}
</main>
{% include "footer" %}

View File

@ -0,0 +1,81 @@
{% include "header" %}
{% include "course_version_outdated_alert", courses: courses.featured %}
<main class="np-main np-homepage">
<div class="np-homepage-hero">
<img class="np-homepage-hero-image"
src="{{ homepage.artwork_url }}"
alt="{{ homepage.headline }}"
/>
<div class="np-homepage-hero-content">
<div class="np-homepage-headline np-header-font-color">
{{ homepage.headline }}
</div>
<div class="np-homepage-subheadline np-header-font-color">
{{ homepage.subheadline }}
</div>
</div>
</div>
{% if current_person.signed_in? %}
{% include "sub_navigation" %}
{%endif%}
{% comment %} <div class="np-homepage-featured np-max-width">
<div class="np-homepage-featured-text">
<div class="np-homepage-headline">
{{ homepage.featured_courses_headline }}
</div>
<div class="np-homepage-subheadline">
{{ homepage.featured_courses_subheadline }}
</div>
</div>
{% if courses.featured.any? %}
<div class="np-homepage-featured-courses row">
{% for course in courses.featured %}
<div class="col-xs-12 col-md-6 col-lg-4 np-stretch-content">
{% include "cards_course" with course %}
</div>
{% endfor %}
</div>
{% else %}
<div class="np-homepage-featured-empty">
<div class="np-zero-state-text">
{% t .empty, key: current_school.course_vocabulary %}
</div>
<img
class="np-zero-state-courses"
alt="{% t .empty, key: current_school.course_vocabulary %}"
/>
</div>
{% endif %} {% endcomment %}
<div class="np-main np-dashboard np-subpage-container np-max-width">
<div class="row np-flex-center">
<div class="col-xs-12 col-sm-8">
{% if features.learning_paths? %}
<div class="np-dashboard-resources-title">
{% t shared.learning_paths %}
</div>
{% if current_person.signed_in? %}
{% include "learning_paths_index", items: learning_paths.enrolled %}
{% endif %}
{% endif %}
<div class="np-dashboard-resources-title">
{% t shared.course_vocabulary.plural, key: current_school.course_vocabulary %}
</div>
</div>
{% if features.training_events? %}
<div class="np-grid-spacing col-xs-12 col-sm-4">
<div class="np-dashboard-resources-title">
Upcoming Events
</div>
{% if current_person.signed_in? %}
{% include "training_events_dashboard" %}
{% endif %}
</div>
{% endif %}
{% if current_person.signed_in? %}
{% include "courses_index", class: "col-xs-12 col-md-6 col-lg-4 np-stretch-content" %}
{% endif %}
</div>
</div>
</div>
</main>
{% include "footer" %}

View File

@ -0,0 +1,20 @@
{% include "header" %}
<main class="np-main np-max-width np-page-container">
<div class="np-hidden-mobile" id="learning-path-desktop">
{% include "learning_path_desktop_view" %}
</div>
<div class="np-hidden-desktop" id="learning-path-mobile">
{% include "learning_path_mobile_view" %}
</div>
</main>
{% include "footer" %}
<script>
const title = document.querySelector('.lp-title')
const banner = document.querySelectorAll('.np-optional-ribbon')
banner.forEach((e) => {
e.style.display="none";
})
</script>

View File

@ -0,0 +1,34 @@
{% include "header" %}
{% include "course_version_outdated_alert", courses: courses.in_catalog %}
{% include "sub_navigation" %}
<main class="np-main np-catalog np-subpage-container np-max-width">
<div class="np-catalog-header-wrapper">
<div class="np-catalog-header">
<div class="np-resource-title">Pear Deck Resource</div>
{% comment %} <div class="np-resource-subtitle">{{ catalog.subheadline }}</div> {% endcomment %}
</div>
</div>
{% assign any_courses = false %}
<div class="np-catalog-courses row row-with-thumbnails">
{% for course in courses.enrolled %}
{% for category in course.categories %}
{% if category.name == 'Pear Deck Resource' %}
{% assign any_courses = true %}
<div class="col-xs-12 col-md-6 col-lg-4 np-stretch-content">
{% include "resources_cards_course" with course %}
</div>
{% endif %}
{% endfor %}
{% endfor %}
</div>
{% if any_courses == false %}
{% capture message %}
{% t shared.zero_state.courses.catalog,
key: current_school.course_vocabulary
%}
{% endcapture %}
{% include "courses_zero_state", message: message %}
{% endif %}
</main>
{% include "footer" %}

View File

@ -0,0 +1,218 @@
{% include "header" %}
{% include "sub_navigation" %}
<main class="communication-page">
<div class="information-wrapper">
<div class="heading">Resource Library</div>
<div class="info info-resource">
<div class="info-text">
<div class="bold-heading info-heading text-center">Welcome to the Resource Library! Explore the sections below to find product specific training courses and resources.</div>
<div class="content"></div>
</div>
</div>
</div>
<div class="information-wrapper">
<div class="information-container">
<a class="info info-connected" href="/app/pear-deck">
<img class="icon-image" src="https://s3.amazonaws.com/static.northpass.com/Educator's+Hub/communication-page/pear.png" alt="">
<div class="info-text info-text-connected">
<div class="bold-heading info-heading text-center">Pear Deck</div>
<div class="content"></div>
</div>
</a>
<a class="info info-connected" href="/app/goguardian">
<img class="icon-image" src="https://s3.amazonaws.com/static.northpass.com/Educator's+Hub/communication-page/goguardian.png" alt="">
<div class="info-text info-text-connected">
<div class="bold-heading info-heading text-center">GoGuardian</div>
<div class="content"></div>
</div>
</a>
<a class="info info-connected" href="/app/edulastic">
<img class="icon-image" src="https://s3.amazonaws.com/static.northpass.com/Educator's+Hub/communication-page/edulastic.png" alt="">
<div class="info-text info-text-connected">
<div class="bold-heading info-heading text-center">Edulastic</div>
<div class="content"></div>
</div>
</a>
</div>
</div>
{% comment %} <div class="heading">General News</div>
<div class="content text-center">Want to be in the know about everything Pear Deck, GoGuardian, or Edulastic? Sign up for the general newsletter to get your name on the list. </div>
<div class="sub-container">
<div class="subscribe">
<div class="bold-heading sub-heading">Subscribe to Pear Deck news</div>
<div class="sub-link-container">
<a class="communication-link sub-link" href="https://www.peardeck.com/newsletter">Subscribe</a>
</div>
</div>
<div class="subscribe">
<div class="bold-heading sub-heading">Subscribe to GoGuardian news</div>
<div class="sub-link-container">
<a class="communication-link sub-link" href="https://www.goguardian.com/newsletter">Subscribe</a>
</div>
</div>
<div class="subscribe">
<div class="bold-heading sub-heading">Subscribe to Edulastic news</div>
<div class="sub-link-container">
<a class="communication-link sub-link" href="https://edulastic.com/newsletter/">Subscribe</a>
</div>
</div>
</div> {% endcomment %}
</main>
{% include "footer" %}
<style>
.info-text-connected {
margin: 1rem;
}
.text-center {
text-align: center;
}
.communication-page {
margin: 20px 4%;
}
.communicaton-heading {
background: #0c65b8;
color: #fff;
font-weight: bold;
padding: 1rem 1.5rem;
font-size: 1.5rem;
text-align: center;
}
.bold-heading {
font-weight: bold;
color: #000;
}
.content-block, .info {
margin: 1rem 0;
}
.content-block br {
margin: 3px;
}
.info {
display: flex;
max-width: 1000px;
background: #fff;
padding: 1.5rem;
border-radius: 12px;
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
flex-direction: column;
align-items: center;
justify-content: center;
}
.info-connected {
max-width: 300px;
margin: 1rem;
text-decoration: none;
transition: transform .2s
}
.info-connected:hover {
transform: scale(1.20);
}
.info-text {
display: flex;
flex-direction: column;
justify-content: center;
}
.advocacy {
display: flex;
flex-direction: column;
align-items: center;
}
.advocacy-content-wrapper {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 15px;
grid-row-gap: 0px;
}
@media only screen and (max-width: 1040px) {
.advocacy-content-wrapper {
grid-template-columns: repeat(2, 1fr);
}
}
@media only screen and (max-width: 740px) {
.advocacy-content-wrapper {
grid-template-columns: repeat(1, 1fr);
}
}
.info-resource {
padding-right: 1.5rem;
padding-left: 1.5rem;
}
.content-block {
display: flex;
flex-direction: column;
padding: 1rem;
}
.team-member {
font-weight: bold;
margin-bottom: 5px;
}
.information-wrapper {
display: flex;
flex-direction: column;
align-items: center;
}
.info-heading {
margin-bottom: 0.5rem;
font-size: 1.2rem;
}
.subscribe {
background: #fff;
margin: 1rem 0;
padding: 1.5rem;
border-radius: 12px;
text-align: center;
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.sub-heading {
margin-bottom: 1.5rem;
}
.sub-link {
background: #0c65b8;
color: #fff;
text-decoration: none;
padding: 10px 15px;
border-radius: 8px;
font-weight: bold;
font-size: 0.85rem;
}
.sub-link-container {
display: flex;
justify-content: center;
}
.sub-container {
display: flex;
flex-wrap: wrap;
width: 100%;
justify-content: center;
gap: 15px;
margin-bottom: 2rem;
}
.heading {
text-align: center;
font-size: 1.5rem;
font-weight: bold;
color: #000;
margin: 1rem 0;
}
.information-container {
display: flex;
}
.advocacy-member {
display: flex;
background: #fff;
padding: 0.5rem;
border-radius: 12px;
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
margin: 10px;
align-items: center;
}
.icon-image {
padding: 1rem;
max-width: 150px;
}
</style>

View File

@ -0,0 +1,38 @@
/*
Put your custom overlay styles in here
You can use your northpass color palette in this file
{{ color_palette.button_font_color }}
{{ color_palette.button_color }}
{{ color_palette.button_hover_color }}
{{ color_palette.header_font_color }}
{{ color_palette.header_font_hover_color }}
{{ color_palette.header_color }}
*/
.np-card {
padding: 12px !important;
}
.np-sub-navigation {
margin-bottom: 0px;
}
.training-session-lp {
margin-top: 1rem;
}
.webinar-outline {
margin-top: 0;
}
@media screen and (min-width: 768px) {
.lp-image {
width: 100%;
display: flex;
}
.np-learning-path-image {
object-fit: unset;
width: 100% !important;
}
.learning-path-image {
object-fit: contain;
}
}

View File

@ -1,4 +1,4 @@
{%- comment -%}
{%- comment -%}
BHG Rand Realty - Mortgage 8f637c703ec45ac5dec70ee9517155aa0d9775c2
Howard Hanna | Rand Realty 613932dbeb1595c00b78de8d1860a3bfdb479b22
Howard Hanna Rand Realty 176629fa82da1d03f3d58c81e751e61b9836a46d
@ -17,7 +17,7 @@
{% for group in current_person.groups %}
{% if group.enrollment_code == "1817d8c96780f13abbf0f2023e3b26b3bd43d248" %}
{% assign isAllenTate = true %}
{% elsif group.enrollment_code == "ccd2aa2f1e41ebbac8fa878f806e3ccc20ae3f38" or
{% elsif group.enrollment_code == "ccd2aa2f1e41ebbac8fa878f806e3ccc20ae3f38" or
group.enrollment_code == "aa6fe8d22ec1e75d2e8c54c6d5452dcd585e415d" %}
{% assign isHowardHanna = true %}
{% elsif rand_realty_groups contains group.enrollment_code %}
@ -34,4 +34,4 @@
{% elsif isRandRealty %}
{% include "header_rand" %}
{% endif %}
{% endfor %}
{% endfor %}

View File

@ -190,7 +190,7 @@
</li>
<li>
<a href="https://in.leadingre.com" target="_blank" class="marketing-nav__item marketing-nav__item--user" itemprop="name">
<a href="https://sso.moxiworks.com/saml/0469dfc6-6b26-42ab-9d3d-266a7748852d/initiate" target="_blank" class="marketing-nav__item marketing-nav__item--user" itemprop="name">
Institute by LeadingRE
</a>
</li>

View File

@ -170,7 +170,7 @@
{% for group in current_person.groups %}
{% if group.enrollment_code == "176629fa82da1d03f3d58c81e751e61b9836a46d" %}
<div class="white-background">
<a href="https://in.leadingre.com" target="_blank">Institute by LeadingRE</a>
<a href="https://sso.moxiworks.com/saml/0469dfc6-6b26-42ab-9d3d-266a7748852d/initiate" target="_blank">Institute by LeadingRE</a>
</div>
{% elsif group.enrollment_code == "ccd2aa2f1e41ebbac8fa878f806e3ccc20ae3f38" or
group.enrollment_code == "aa6fe8d22ec1e75d2e8c54c6d5452dcd585e415d" %}

View File

@ -105,7 +105,7 @@
<a href="" class="marketing-nav__item marketing-nav__item--user" itemprop="name">
Affiliated Learning Links
</a>
<div class="survey-tooltip">
<div class="survey-tooltip">
<div class="white-background">
<a href="https://sso.moxiworks.com/saml/0469dfc6-6b26-42ab-9d3d-266a7748852d/initiate" target="_blank">Institute by LeadingRE</a>
</div>
@ -150,7 +150,7 @@
</div>
</div>
</li>
{%- comment -%}
{%- comment -%}
<li class="live-workshops">
<a href="https://www.hannauniversity.com/#ChecklistResources" class="marketing-nav__item marketing-nav__item--user" itemprop="name">
Checklists & Resources
@ -373,7 +373,7 @@
}
.live-workshops:hover .survey-tooltip {
visibility: visible;
visibility: visible;
}
.survey-tooltip:hover {
@ -397,5 +397,5 @@
line-height: 2;
padding: 10px 20px;
}
</style>
</style>

Binary file not shown.

View File

@ -485,3 +485,10 @@ DONE: Add standard header navigation back into templates - remove all words.
84% of people who have taken a G2U course renew with them.
## 01/08/2024
Certifications per Quarter: 50
Currently at: 35
Going to do a big push the week of the 23rd. "Continue your year of professional growth"
Influenced $6.1m in prospects and customers - retention, revenue, new revenue.

BIN
Scripts/.DS_Store vendored

Binary file not shown.

View File

@ -21,3 +21,4 @@ BIRCHSTREET = "WpMV3jF4q9Om5FjUsrzZifduE"
G2 = "JRDpCGQ7vSRiva6t5OkWDr5eJ"
DOUGLASELLIMAN = "Bknf8kidbluRfcKu3m3lKoxS8"
CIN7 = "51BNlRsLYKQxSu1q1UQq7F63j"
FULLSTORY = "ePChrDWLegENa2qnfb259O2Ki"

View File

@ -1,35 +1,35 @@
import Apikeys
import requests
APIKEY = Apikeys.ANTHOLOGY
APIKEY = Apikeys.CIN7
HEADERS = {
"accept": "application/json",
"X-Api-Key": APIKEY,
}
COURSES=[
"Build a Product Analytics Dashboard",
"FullStory 101",
"FullStory 201",
"FullStory Quick Wins",
"Integration and APIs",
"Page Flows & Pages",
"Private by Default",
"Privacy in FullStory",
"Product Analytics in FullStory",
"Using Page Flow Cards",
"Using Conversions",
"Using Dashboards",
"Using Defined Events",
"Using Metrics",
"Using Funnels",
"Using Segments and Funnels Together",
"FullStory for Marketers ",
"FullStory for Product Managers ",
"FullStory for Customer Support ",
"FullStory for Engineers ",
"FullStory for Account Management",
"Product Analytics in FullStory",
]
COURSES = [
"Build a Product Analytics Dashboard",
"FullStory 101",
"FullStory 201",
"FullStory Quick Wins",
"Integrations %26 APIs",
"Page Flows %26 Pages",
"Private by Default",
"Privacy in FullStory",
"Product Analytics in FullStory",
"Using Page Flow Cards",
"Using Conversions",
"Using Dashboards",
"Using Defined Events",
"Using Metrics",
"Using Funnels",
"Using Segments %26 Funnels Together",
"FullStory for Marketers",
"FullStory for Product Managers",
"FullStory for Customer Support",
"FullStory for Engineers",
"FullStory for Account Management",
"Product Analytics in FullStory",
]
def get_courses():
@ -39,25 +39,26 @@ def get_courses():
count = 0
list_of_ids = []
# while True:
for course_name in COURSES
# count += 1
url = f"https://api.northpass.com/v2/courses/?limit=100&name={course_name}"
# url = f"https://api.northpass.com/v2/courses/?limit=100&page={count}"
while True:
# for course_name in COURSES:
count += 1
# url = f"https://api.northpass.com/v2/courses/?filter[name][eq]={course_name}"
url = f"https://api.northpass.com/v2/courses/?limit=100&page={count}"
response = requests.get(url, headers=HEADERS)
response = response.json()
nextlink = response["links"]
for item in response["data"]:
print(item["id"])
# idict = { item["attributes"]["name"] : item["id"] }
idict = {item["attributes"]["name"]: item["id"]}
# id = item["id"]
# name = item["attributes"]["name"]
# list_of_ids.append(idict)
list_of_ids.append(idict)
if "next" not in nextlink:
break
# print(list_of_ids)
# print(len(list_of_ids))
if __name__ == "__main__":

BIN
Scripts/GAS_GS/.DS_Store vendored Normal file

Binary file not shown.

View File

@ -8,918 +8,83 @@ const rl =
})
var userEmail= 'nrasmussen@northpass.com';
var userPassword= 'ecx5pmy!MAN2vgh2knc';
var otp = '645795';
var schoolUUID = '52d19519-103f-45e3-9fa8-d21baa0f8aaa';
var otp = '229118';
var schoolUUID = '5692537e-4921-40e8-9c8d-1218b0ffa2da'
var courseUUIDs = [
"320c7e25-0477-49fc-baf0-1b374b7eeabd",
"2790ee3a-507d-405b-8ce7-d3cb1128f64a",
"485b417b-c8e5-4034-943c-437e392e56d6",
"5f671fa9-1eca-42e5-833d-30010481b669",
"627aae1d-d35f-4cb4-82ac-a23cb9a59b97",
"33c5e0a1-6b01-4566-bf72-bdd77ef3ebee",
"e66a9a05-4aa5-4e2c-9dbd-246c6763eadc",
"f870c9af-7185-46b1-9648-2e412d622cb1",
"96576a68-9a61-466e-81bb-9a136e68aeaa",
"42343d69-5de9-440a-8938-b77180b7548d",
"bb1e60ec-7c00-4f09-985d-a7ac7dd3fd6f",
"9533c7e8-aa55-40f6-b007-793ddb4cb65a",
"3cd5f57b-da6e-400a-9f47-094bf08bcf89",
"8dabb292-7554-44ae-aef4-d5feb838f8ac",
"ac95b658-b525-4beb-b54d-6d7e94d44f04",
"1699671d-eba3-44eb-9f52-777b4af99108",
"b5fbe704-556e-472c-92e8-541f3a154491",
"4921947a-8ec4-4d2d-ba05-335714ad648f",
"6c8f70f1-8402-4b4b-aac0-2470d92616f9",
"12d8acf5-2b88-4a3f-a3b1-88ec76dfd613",
"6d859112-a036-4ebc-b6e9-b5aa1e690367",
"1684b014-a66a-4580-827b-826afba7bc67",
"d6de86ed-b578-4269-8939-cdc6e4828ac4",
"1f9b7369-14f2-4bab-b92f-ca8d7da25641",
"7d2abdf2-0285-48f2-9b3f-436c9ab51eb2",
"81575e9b-be82-4fc6-ac97-a5380e7ac872",
"840483fc-4c8a-448e-8290-2441fbc480ba",
"c7e173ff-e5a7-4361-bfb9-f5ab03274c6d",
"a30b6c76-94fb-46f9-b307-6493e98380f6",
"a6c9fc4c-9475-4777-af27-e173dabd82ff",
"c8ee42eb-218e-4109-b60b-e768d19dc03f",
"e47ed5e0-1f3d-4a73-ad0e-f518a11c2d94",
"0b7a0537-4ca2-44ee-b186-fee1e3f36373",
"397a95c2-6c28-4ffb-97f5-550083a5bd6d",
"82535e3c-288b-4431-abf7-f13ba6c7447b",
"49fa6468-89ff-4834-b5e3-53dc095cb483",
"5b0a0ef8-8875-45a7-bb41-d2cb8b969790",
"783699e4-0e0a-4fef-8481-06f533a672de",
"38fd8cf1-39a0-4124-b980-d03f927b35e1",
"da90d425-b9db-48dc-a05b-50cb8f5ad426",
"81b183da-c71f-4dee-ba53-76cda341ff27",
"b72165bd-0900-4b73-928b-b6a3e779f9bb",
"30542e21-02e3-4ae2-8b75-b2e5d4ab2c56",
"c361273e-f61a-4f81-804c-052c5e1528b4",
"8a010c07-2680-41b0-8170-f4e603326643",
"ab8e87e6-e2d1-455b-888f-3bd5f92a1b07",
"70062bde-4370-479e-8078-e38f218527d9",
"0f70e318-4884-46e8-8182-0adab212f859",
"c1215c90-da9e-4766-bbe3-9f592716d906",
"5f167c9a-f9d0-40b1-9ddc-f88f3a5b7182",
"e9f686f9-588f-458c-8c10-3d15a2f53bd2",
"a9f2a34a-95e7-487f-b83c-5d2477875673",
"26aed4b0-732c-4fb1-adfb-9d0665f465cb",
"5e388843-5258-43f5-a818-52ddd3b71593",
"890a35f8-66f0-4011-85fa-07eef9b4f716",
"d61cf500-7458-4d2f-aff5-ed85bb18b486",
"c21aa481-cf72-400f-a033-220a6ef0a683",
"3de77578-992f-4c2c-9d65-3019819ea78a",
"e6cb6bb5-059d-4d84-8c78-bd009a3866c5",
"9f283134-1ae2-4b8e-b5da-df93964cb5b4",
"c1c93238-17ef-4d2c-9b99-fbfcca65695a",
"cc72bcae-5c0b-4d62-9963-459c1e8a2fae",
"2e1db7d3-af93-4832-b465-74c28c382f17",
"bca954dd-66f2-46b0-82ac-17fade2a8084",
"edd503f7-bb1a-462f-b89f-17657a488c46",
"ef8fc4ce-cea8-4d01-af3f-7beca39431dd",
"d928a184-9553-46f3-82aa-ce616125216a",
"ee622978-7144-4767-bfae-63d2edcb712c",
"969190ac-63e9-4af8-bf20-016af2424de7",
"e4e343ec-66a1-44e5-8d52-c9768678760c",
"acdea6a3-f104-42c6-a9ea-b6ccb848a1df",
"2df21dcc-2d56-488f-be22-97c6decbe67a",
"d1193a67-96ab-4182-9710-e76b7eb81947",
"7db78cb7-194e-4988-9f52-a90805cddc93",
"2bf0f0da-da2b-4119-a939-a8a51b658255",
"43ff589a-724b-434b-ad50-c7eedeace049",
"b485b7a8-f572-4078-91bc-c6f83c831100",
"e6343bce-8f5e-4d0e-83b8-8226b553cbbb",
"3e1cc5e3-f002-4120-b121-7c9616a69958",
"5fe0ad0c-c42f-4dc2-8168-eee485a0df45",
"5fb0dccf-d830-4747-b461-fb5c7ffb9fa9",
"3a2d049b-4877-48a8-b870-2d02db7449d4",
"03314307-28ad-4617-a537-d5ffacc26a39",
"17d99239-ca53-4348-9175-79fa47591b46",
"ad4411e6-ca5b-4178-9500-7f3d43139b4c",
"dca8122b-2a6e-4da1-a24c-45facf035326",
"54fa7e72-99a4-4eff-a2b0-52f713aff9ec",
"2a116c42-5726-4d16-9a39-f67c94d4b7af",
"99c8dc03-1f8a-418f-afee-48277906cf74",
"96cc5750-eaf1-4ac9-936e-62df7475d8c5",
"417ed4e6-36d0-471f-80b9-9198069cb5b7",
"324e59bb-aee9-4d26-8f66-224fd741c012",
"cd07ac5f-1607-49e8-ab32-9ac92cab230d",
"d8b394d6-5d90-4cf4-8d83-0b58210ba478",
"cde68f2a-b331-45fe-b922-926a4f0b0fd3",
"cbc30995-1fd2-459e-9e81-cfd2547ebaf4",
"a06af57e-88ca-4a7f-9ccd-6fe39a806ba3",
"73b88817-c375-45b1-ae30-3b8573d304ab",
"15fbd385-6bba-45d8-bdee-782f6a0f2e47",
"86e089ee-1a65-48b5-afef-b7e9ac919d1d",
"7260ad4a-2dca-47b9-b43e-a8a873e680fa",
"8abea736-0564-4fc5-82c1-ffbf1a371962",
"d161c367-9d27-45aa-a5fc-960833c861b6",
"e676ae32-bc09-4476-a38c-41873deb6512",
"144df04f-7867-4b23-9ba0-77bfce3537fe",
"3cf797f6-1843-4e82-8d86-4bae4bd4e3b7",
"91237724-c307-4c3f-beb1-733a99c549ad",
"301725e1-2ac7-4961-82cc-1b0ee7aecb6b",
"96e5000d-fff4-49ff-bf21-834cae9ac508",
"e9687bf5-9f6c-4b2e-a751-047555f9acda",
"0450e883-2175-4275-ada4-4098fd956898",
"4f786a1c-445f-45a9-823c-b351e81c017c",
"2dfa854e-5e98-4a0a-8d30-c458d786707a",
"75463dca-a588-46e9-946a-f53fee831887",
"21c1f8ea-9c98-4161-8705-edc39d9576c0",
"71d304de-bfbd-43db-a82e-e1fe8cc9d954",
"6b9cfc26-8996-4a2f-96bb-8c244553da19",
"3280f156-0520-4b6d-a4b2-b43b35b5d6bb",
"a57b7dad-f2e1-4411-bccb-db8e07d733f3",
"0dfcd074-77f1-4658-b4f9-318c4aaef8bd",
"de37871d-1332-4281-bb13-22ccfd196dc7",
"24152a6b-fda3-4b98-a73c-ad06b659c7b1",
"80fddffa-6654-45f4-80d9-692ce0a05b65",
"7197a95e-9336-48e4-a36f-2997e8a45618",
"b29e1e43-047c-461d-8e62-a10264199055",
"895d4077-82ac-400b-af48-eb77f6677217",
"3ac6d3a0-d902-429d-9f0a-62201bc7ab1e",
"d7597720-e5a9-48a1-9788-6820809747b7",
"41e98b8b-097c-42c3-a8c1-208c7aec9e94",
"13b9655f-87c9-400a-a85d-0f98d90d57da",
"a0233c81-5056-4e37-9199-253fc5c71df8",
"da04110e-dff6-49f3-9660-30ab0255c44d",
"8b18ed18-7445-4551-9550-cd5865ff77b9",
"801f109c-3191-4757-8d07-1fca56877c81",
"59eaeaeb-5319-48ed-bf14-c8b2917cdc2e",
"4f74b638-7715-45c8-9c78-3639f7a48cbf",
"ef47d5e2-8af0-4a99-b6e7-19e6d0486bf6",
"e75dd5a5-7e21-4977-8e0d-94737e6f7cb2",
"d7e3a7c3-9c44-4097-baa2-8234e9898e7d",
"18d47aa2-da95-40c8-8f0a-e155ce10813e",
"a9db30a6-55f3-4a36-bf66-7e27c76860a3",
"1af2e6a6-9f38-4401-a091-f065d0551cf6",
"0889b292-174c-4685-9f05-522efd6f8282",
"f62c03d0-f907-4b5c-8295-db628f2dc970",
"5c2bcb1b-4c6b-4f71-a4fe-a4912e4a0959",
"7928e51a-6f62-4a91-9021-0771ba5d8054",
"daf4efd3-db70-4fa5-8961-ba0379949224",
"7332e506-c556-4b8d-8926-0fe55c74f3fd",
"dad7b7ec-8fbc-45db-bc66-315b7ee16029",
"e9ac4344-a0a3-49ae-9f1d-019c20b56c6b",
"2d268832-14a4-49b5-921e-1f8c65fe228d",
"efa0aab5-c25c-4cfc-afd8-cde37af032d8",
"e85236c0-e4ef-4e8f-8471-9b4329a8b9af",
"33e027d8-107c-444b-aebb-c618db19c069",
"7a6736c4-6f7c-4e25-b3b6-2257fad68475",
"dc5b475a-406c-4355-b2d8-2218ba5ce46d",
"2f72bc67-a787-48ca-ac5a-de16af3ce82f",
"751b5b26-af08-4ee4-8343-6f0e4e9c4a56",
"86a36105-2fed-4cf8-8e11-bdb9f054fc2e",
"f97af92e-f5a5-402e-9f98-1dafba0a4ced",
"8b25972b-3232-444b-be95-1e9c61f40443",
"a3fcd355-a7fd-45ae-a3f0-e133a568b070",
"9e0b0df5-f4c1-4fe4-ba00-b58289a42ca8",
"2325b080-6ecf-40e4-a167-be2ffb87fcb3",
"0215bc16-3179-4a46-bff3-3d6a3541a10d",
"0318a824-ec06-44fe-bcc1-bb83d911dc06",
"b69cfa75-8cdb-4cde-a8f3-cc5faa6208fc",
"b8d1331d-8e53-4531-8224-4057ccd107c1",
"d9b42557-6c90-4be5-adf0-6c6773e6194d",
"8456f8e0-47c2-433d-b3d5-e4783f9d52b8",
"48fc9f07-d5ae-4c00-b571-9a132ad006a7",
"906c6bd3-c12b-4883-9417-9732b7efed40",
"9a6f0ad6-8821-47ce-a5d7-ea63bb6994bc",
"7210cbfc-bd25-4ebb-8fe4-f5416ebeadd5",
"62a18cfe-bc44-462e-9fc8-e58fcb7c263c",
"21c05d98-95bd-4d1b-aaec-e91fe1b5d61f",
"9eda52e3-aa47-436b-a165-a5b40993c398",
"4bd75f3d-505a-40b2-84ae-00a8fba86cbf",
"231ebdd2-d424-495b-8216-0268f38e32c4",
"a1d5a10b-6a4a-4ea9-9f17-9d35d54d2734",
"9a54cbd8-2c19-4f6e-8b9d-90a53689dd36",
"cbe3aea6-5bb5-479c-aecf-ecde3ed00c9a",
"aea9e087-2649-4367-8d6e-7ebd292bedec",
"b7b95d0f-8f0f-47a5-be73-630d3187dde4",
"aa481cd9-f658-41bc-af46-59c6cc73cba2",
"9ca695f2-a777-46d0-8b92-98f63d967179",
"54f8b683-5322-4b64-a899-22bbe6aa61fc",
"9a02e8f3-4244-4fa4-8d85-b8528751a04a",
"f47dcf6e-1b1e-4654-8cba-a301b8901e39",
"38d7f320-967b-49ef-a04e-497db3aa9ede",
"c7060bbe-2d01-4010-976b-e64e66fc6203",
"28b9a120-4b5c-49a3-8815-fd17ead90d24",
"2560c331-1f69-4b76-ae45-08c611fc708c",
"a278b64b-1417-4f20-b6df-ddbdee6df364",
"1da1bce7-4454-4c28-b1e1-6ee5536dba13",
"b2f38d8e-9262-4b30-8674-3c1e6a79bf54",
"aa7d84cb-d2c6-475a-961e-19233ed01b40",
"45e3aeba-3923-46f7-853a-a9317692339a",
"55841904-8c6a-4676-a43f-b5cdd360973e",
"12726370-7082-401f-b45f-c91bf03db79a",
"7edfe3cf-db22-4476-9791-8fe066680733",
"c19a3ced-d66b-4524-bc96-7a7aa7443151",
"8f743b2c-d32e-462a-8a55-0c4e7bcf24f4",
"9bcd07fa-9027-49e0-93bb-beb6b5170086",
"a77f8e9f-230e-4729-ab53-bd8aede74653",
"6d20dd98-99d1-4659-83d8-2354e096b90e",
"27a3dd65-409e-4983-a2de-4269d3b490e3",
"0a6fc36a-0399-4729-b397-77df906918ad",
"07320a74-9af8-4ad3-820c-5e875238b8a3",
"a583648b-a9a0-4bd8-bfb8-3889381e8790",
"f03ffc3c-2519-4747-9fd6-5c2053b061a7",
"0710b9bb-3d66-4a6b-9c76-42f7fcf1620d",
"b967cd9b-bdcb-4ce1-bee3-96ede31452b1",
"4810eadb-2bb7-4df7-ba87-444a18bc31b2",
"52a7865f-e9e5-42ea-a683-8f13397871b0",
"e0069917-8607-48e6-b740-d8a38e63f18b",
"456320fd-1c1d-4adc-9fc5-3b3e367ba2c2",
"ac616744-b43e-4973-bf49-e0da9824d22d",
"35adc326-b113-4195-870a-5321f480901a",
"8e1aaedd-875c-4bfc-913c-9aa566b2e0c8",
"81de68a5-21ce-4dcb-8894-8129b8da4614",
"93063e3b-0e73-42ac-b1ad-cbfbd27ea6bd",
"361929c1-7849-4190-91da-a1c383e448a4",
"8022f999-844e-4c44-91d7-c116d34efea8",
"8dbc928e-5b84-4a67-a226-0fc11009a932",
"0e17da60-2a6d-49d8-95e9-8f7f173a06e6",
"995a2837-2848-45c8-861f-47b08a4c71f3",
"1f36f421-8f67-485f-a88d-4196234f8004",
"ed105613-068b-43e3-b6f0-9db514c5f599",
"a76c2d5c-3e6a-4659-a0b5-28829ab72b81",
"50b9fbfd-7422-4d78-bdb0-dd54792607de",
"e60cd22f-e73f-4a9b-9c9f-830ef65a02d6",
"632eb257-5420-4391-a77d-f207674933ea",
"cb2a95c6-2787-4eed-96b3-44f572d71eb0",
"3d4f0d13-e4d0-40cc-bfc5-92bc002346dc",
"99470c3f-9f74-49d8-b0ba-5f9c467736e6",
"bf401b76-ffad-4e58-9926-89b8ecca2618",
"da4e05e3-df61-4231-9136-dc91b3dc7338",
"8b4b5c85-b732-49fb-a051-87baddc81b29",
"b53e9983-0ccf-4fde-945b-aec1ee86259c",
"7b76fec5-17b4-4491-94c2-47f02eeae07e",
"8bacf6e3-c238-45f7-90ab-969e7eea76e7",
"df59440e-e532-41a4-9da8-aba7d0d6786f",
"00236cd2-3c9c-44e5-b3f5-ae5322b2955b",
"27b40281-acf8-497a-88fc-29fbcd734f48",
"c00e3095-8dd6-4734-b5eb-068472d9fba8",
"5a918d4b-3d5c-4bee-a615-78a301ad2bf8",
"7ae0c123-cde1-45fe-89bc-1aefbda98fd2",
"3bc88e52-dee5-4988-9dc1-36c44e13a932",
"c2546ab8-f06b-4995-afd8-43f0579923bb",
"db792448-5c17-4cfd-81c9-65263fbdba6a",
"633844f5-dff4-4bde-be8d-7f3914376111",
"cffedfef-e776-4ef8-89f1-19ecdd19e739",
"c70e46a6-b844-400e-89b0-6a19a4dd8ee1",
"1b7baad0-1e6f-45aa-8c2d-b2836197c9cc",
"da6afa8f-9591-4052-994e-119a398a5557",
"64be7edf-8dda-4ad8-9401-cd5ece0067e9",
"90cdc265-7503-453a-b17b-1bf2c4eb95aa",
"c95ca4e2-f75c-46ff-9913-c5545613cffa",
"31cb63a1-c386-48ad-a9a9-9c4cf12ad773",
"612466ea-f556-4b1d-b631-751bc08d14ca",
"1c8bf041-b137-4359-a665-fb89fa43b9c1",
"1b30762d-4913-4ffc-b106-aa5dedbef1cd",
"91e0de20-00e9-44ee-9caa-3ec107345610",
"7c4eb01f-d939-471b-9338-060d7ff504fa",
"1af38526-2f35-45be-b221-dbf4dd5e4b2d",
"1ad7948b-1111-4c55-b7f2-56dc14e03b91",
"6ad88b70-8466-4100-8c07-a4dd2899989b",
"6a6dd5d2-362f-465e-8ca3-f5a97eb2910f",
"f774e64b-6870-4d37-a531-d1b84c3da06c",
"f5b0554b-3884-418f-b61f-235151f79c9e",
"a8af6474-2605-4522-a5a3-5d38d2938837",
"a225a1f8-65e4-4db9-badf-f6af82673eee",
"0f91a61b-7076-46ba-bfc9-b10b90213767",
"0e4c67d5-7621-43f2-ab6e-fc969a6fa3a1",
"48058025-e6a5-4884-a625-d614aee791ea",
"450beaec-d92a-470c-a994-edc228e6a5fd",
"6604c498-6ea0-4c59-b55d-77f68ba42ed9",
"0eff70e6-07d9-4d80-b05c-be5d91c22a96",
"634e2c83-174b-4259-9fc2-48162f4d2c19",
"5ff6e5f2-3475-48b6-bbdd-dc3f7251c033",
"30a415c2-0cbf-4a6d-a172-9712b938afcd",
"f30bf898-576b-49c1-81dc-8fe2c6e8cd7e",
"e614d83f-7302-42df-ad0b-22c691e9f9f0",
"cc81cbd9-349e-48df-9873-a32ff12bc222",
"d1e99c72-fcb1-43fe-9e4a-e46dff88eeba",
"432c6456-f36c-49ba-b291-c6280c0d52e8",
"5f78be50-190c-4285-b636-4e48858e5917",
"914ed7bf-9ea7-460c-bf72-b7b1044243f9",
"9e91f612-4765-4a5c-b6b6-5401a40ce5d1",
"52e5c11b-2503-4226-8177-a87128f5ca6d",
"f070b646-2d7e-44f8-bca4-7cce77e56cd7",
"8579f9a4-ad00-4d45-9f38-19802ac3799f",
"046ef056-0dc0-4e6b-9fb8-201174c3b7e5",
"5537288e-8aa4-43da-948e-15c46d4bbf1d",
"0cd41af5-fab1-4619-a985-81cce621ad59",
"40e8034f-ffd6-43ce-868a-54a9f5ad22fe",
"654726fc-b7f9-4c66-b2ac-6121dc81009d",
"c32807f7-e452-465e-a493-0186bd86b75a",
"b5e27a06-8417-40d6-9886-7e1e0236b1ad",
"ea44f2b8-0bef-43d4-8e60-4145e018028b",
"33c143bd-027d-4e00-a6b7-98a041aa302f",
"f9e37835-6c0e-449c-87e1-bb85df141340",
"1b1c80b9-ee54-4ee3-8177-91b357003205",
"3bbf3c44-12e9-4779-b63c-5ed4fde41feb",
"ba2cd552-e76d-4a8f-8579-31e0debe5c55",
"fe6a25ed-73ec-4c67-8ebb-8d484f887e9e",
"4b08bb82-58aa-4630-b4c6-b6661ec218c8",
"c72b5e1b-c9a4-4170-a622-b8b6ec1d8677",
"288bdabd-3441-4098-b394-2ccd2b6557a5",
"fa1b7616-c45e-4940-80cd-4c70d6f56447",
"396100d7-9545-4174-8274-d54971733dc8",
"c387ec46-6599-4715-a802-8d05a2097daa",
"61ad663b-b838-409c-890e-f79b79cf7d0f",
"9ff90aa4-0008-4e37-bdec-09d28d4e6adf",
"54269782-9012-4458-8a75-3d34cff77613",
"3bfd977e-3d94-4e46-ad6f-5bb7350df301",
"cc6bc40e-4535-4d5a-b0e3-f3ac99ffe003",
"973e96e5-b13d-40ef-961c-af75a7d0e5e0",
"375e6ce9-656e-420b-b7cf-3a457f310a24",
"9860b45b-7600-4c85-9ab4-453427fc954d",
"f2fd15e9-d9be-495b-86cf-7994fcf414f9",
"259efdf4-1981-4129-ab0c-c3e5aa753a52",
"2e039761-a658-4633-99d6-839b5ec1a0fa",
"36c118e7-b11c-42e3-a620-e6789e42111c",
"f63a66d9-cc4f-45d4-9d4c-58412675279f",
"bfdcec73-9fa5-4ed6-baee-3cc673958255",
"7ea29ba2-170f-4226-8237-a162c892c333",
"98d6cc3d-c83f-47fa-8100-04b35c4d313f",
"f0cc5465-c2c4-4e83-b402-3b6d9711f443",
"e2981040-80d8-43d1-99b6-07d2738269e9",
"31b826fb-15ee-419e-a338-7c6d6d8699b8",
"f92a4545-56dd-4e06-9a28-f55049f32749",
"3701259b-44bf-4e39-aa02-5d0c4d75ec9c",
"011f69e7-4a96-4176-9863-d8be40c195cb",
"faf5afe3-c9c6-4902-b0cf-bad79aab0c98",
"4b7fd30f-74b5-4473-aa39-bb0454fc28b0",
"3f2910d8-f334-479d-a87a-3f31bd1e9d28",
"f10b41a1-b362-4e88-8864-27e6be714ef1",
"9181dde6-2b59-43f8-9493-d13f7833e804",
"6bbe31ac-05c9-4f38-823f-c79185321b68",
"dc846bca-929a-4092-a3e7-38be2120e6f2",
"cd0bdaad-c3f3-461f-a639-28f9d30fe70c",
"0b7c5af3-07e3-4819-ba7a-46de41a58cd3",
"2aca1757-bdab-464c-9bfb-a3351d2ef62c",
"454d0a9e-d5bf-4fb0-8a33-3f03388ae941",
"e129943e-dba4-4c8f-b9c0-442466d90fd4",
"bb798e3d-ba72-4e45-8614-9338e7603206",
"90eced81-ad71-4aed-8abe-b8a6fb969e42",
"b7c7dd91-0123-43aa-acf9-a20bdd73d87b",
"d4b3f99d-5fbb-4b72-8fed-ef35c50cf329",
"027e7ebd-d986-4fe1-b4b9-3c003b2af30e",
"7ba7bb12-e089-4867-9c62-37ce487ba11d",
"fc8b0e92-6711-4733-b3a5-96aee6ee022d",
"b49bc95d-fd11-489d-ab83-8307b83db665",
"5abefe2a-2210-4307-92e4-b544d0858cb1",
"f2828616-4d11-48b1-9028-130a8563659f",
"0c773b20-9b1f-41b1-b576-2290d632f5cd",
"efa34aed-e89e-4f45-b323-2e7f1f72e3ea",
"813d4ad8-4a2a-45c5-b38d-ee2b8d1cce6f",
"7d8fa749-b779-4b35-9b9b-cebc7fe1935a",
"98d0ff3e-987a-4406-9f42-025c585c17a5",
"28efab89-f1b7-4abe-b119-c0c91afd8a29",
"2bfa79ff-989b-43f3-93be-3c2e6a3d24f0",
"a86c7694-9654-42be-b932-03dcca06ecca",
"7037f84d-c9a7-4ba4-9517-04d19de6127d",
"4a0f93e8-2c70-4f52-9309-e0ec5b2e2b8d",
"a3a9ec4d-4501-40da-9f31-d80b0e53aa56",
"83ec5305-2903-4a1e-89da-ad290860284a",
"31ea2b34-d951-476b-90b1-26f0263218d8",
"cc8e5a29-4070-4345-a944-4740b26b4f70",
"fd962d87-c368-4502-b173-511916f2ff6d",
"b191b57d-ada0-45a0-95f5-bba0104733b9",
"70d21a4a-b31f-45fc-b0e8-7cc979858c6d",
"52b77849-b265-4286-9d0f-deeba62c42d5",
"61e1d6fd-66ac-4666-9e38-22ed6604ab87",
"088f8ef3-b7c9-458f-b2fa-d3bb94115ae2",
"9d9db90e-f78a-4dbe-8f0d-f03fd07f1d01",
"d069e347-35e9-4062-bd87-7423210f88aa",
"569a6279-7c7c-460a-8ea9-e7302a8033e0",
"63918b2f-b150-47df-8408-bb03fb354b00",
"275b809b-916b-4677-a2ad-a39a6b45b4dd",
"dba483dd-3dc1-4c49-8fbb-6caa957c99f0",
"dc439333-4f2b-4578-8f25-b1b8448c3e80",
"bc961f89-0bc7-4d11-a57a-4a289f103900",
"c8352fd3-4520-4c12-8d24-b4f6abff585e",
"30c52174-ddc0-4045-8f3d-7a288948afd1",
"38d2309b-3190-4271-a2db-72de6648e70d",
"6210207b-d09e-429e-a704-5fc3344ca0f4",
"cf5dee17-5133-4a0c-bc70-7de9e228fdc5",
"a4171c20-d39b-40cd-bcb2-3d6099d64058",
"507556dd-5f8c-42d1-b587-2a69105287ad",
"897af15a-8b8d-4e9b-885c-1cccf60e45b5",
"05129870-5baa-47dd-a274-e0faef3d1a74",
"92127262-72ea-45de-b0a7-8f9cd7c8675f",
"f253decc-3270-4653-ace0-ee9b6fb2766c",
"ea3862fb-3020-42fa-844e-1c8378b53c95",
"067810a9-caf9-4aac-a6a1-6940b490ce08",
"73c6c51a-f508-4822-9c75-32d59a3cf436",
"eded18b6-31c3-4e18-b07e-e4de5060c6cb",
"71ecd6fb-5943-4236-a242-6b0e0bfa8798",
"becc4729-7942-4aa4-9c98-805602cae7ca",
"d839b35e-f414-46f1-8f43-87154efff202",
"b8e175ea-c2c3-47a7-ae39-8cc5845e5f29",
"808a936c-dc3b-4d53-9136-65d23a92fc35",
"35d8f6c6-c1a0-4909-bc2d-6538bf4f4592",
"21e689d5-cf01-4dcb-ade5-a4c3451aa279",
"86833ec9-f9d0-40d9-9819-bcc508ec84e4",
"1d42d9a5-7906-4f4e-92bc-f9fc77b6a23c",
"1f91ebaf-c671-4600-8b5d-b0a012eab142",
"073ced9e-47c7-45e9-918e-73a958389f74",
"94f707dd-731f-4df2-b58d-447f1465d7f5",
"d3aa7dbd-742a-4e16-acb3-47485a083c43",
"3964f6db-56f1-432c-81e2-e470d963f7a6",
"a9cc32a0-ecaa-47bb-b5a5-378c8e45920f",
"b04b6c80-08a3-4783-89ed-5314aede690d",
"1527fb5a-8e2a-41c7-87ab-85907c8906f9",
"1d38e0c3-9003-45e0-a800-1a2abd4228e3",
"0273fff0-12be-4dd2-9898-92bf245720ef",
"97903971-56ab-42d0-9f9a-3b0454866551",
"c8706cfa-2362-48d0-a6b2-2b62e1a44c76",
"35797fe6-5fa5-43a3-a672-730aba459cb4",
"0d929110-4d30-472c-bc07-46d560823bae",
"8859cbb3-72c2-4cce-abc3-f5b434b4c523",
"25fa946f-2ba3-4a6c-984a-06c35201cbae",
"1a291333-f77a-4eb8-934b-1749eafa9f8c",
"fb0a9268-36da-493e-994d-04a366fc3f6b",
"be0817e4-fcc5-4d57-9063-c7e0a76d2a3d",
"56ac072d-4e56-4bf3-a415-09eee04d4a7c",
"853aa3ec-c35f-4b09-a491-2ed3471f46a0",
"9172322b-c420-4d5c-96e2-9e7932e699a0",
"b8ce96a5-f895-4d5f-ad50-4e92912998c4",
"1fb19801-5fc7-4d51-b2fc-fe05667812dd",
"ddf88f38-2956-444e-a68b-62f8df0627d9",
"836c6f50-6142-4433-b2cf-fbdd2d823808",
"ef457ac9-3bf7-415f-87cd-edf86adef14d",
"d91c3a85-80ab-41c1-85a7-462ab1b25d7e",
"f9856c21-0b45-4b4d-b7f5-73b9477394f0",
"dd66255e-3495-4002-959e-f8a2bc790b4d",
"a0007e9f-9dd1-4e38-9659-c9d9aacb7846",
"474fc555-bf43-4fb8-b7a6-279a1b94c4c5",
"bb9c3f2a-f051-4a51-a8d7-d81d2947ddcb",
"7a3fc895-11d0-4440-9ec4-30471a86ee64",
"7010bfb3-121e-4c8a-b988-03f24c684068",
"7304dbb8-481b-4c1f-bb0e-779417d4ea23",
"bbd5bb1f-b3bf-45a2-a047-c4ee93af18f8",
"73a4386a-6783-4425-9d80-f1da41da83fc",
"66e4c297-2645-4e2f-94cb-92faaa5e74b4",
"7fdc8e90-7e0c-4f63-afeb-72c26df1d528",
"5913d308-8ebc-41ef-aeab-3e0c7e6c07bf",
"17be26aa-0c84-4a4e-9fa1-33110843b5d4",
"15af1c44-b4b3-49db-af6f-9b5960e4bf9e",
"9bedb4d9-f8fd-4617-abbb-8c85db7c070f",
"80d25d9d-fe55-430c-9041-3256b9fc877e",
"06677647-c9b1-4aaf-ab6a-a3407020ce41",
"778bcff0-db51-4b5c-9c3a-716fe5e3c024",
"e862745f-0499-40f7-9227-4149ac74d96c",
"802f616a-3d90-4070-ae23-16fa96c922f1",
"dfc2f492-b28b-4ddd-83a2-881d4b23fa07",
"de9979fe-ea09-4d54-8099-18d1ee85811f",
"db9288e2-9eb2-47e2-8f96-4864cc47b060",
"bbe175b9-9c44-4d72-be8d-2fc87488788d",
"e12e48e2-fb96-49e1-9cac-f66e3f1dff0f",
"5e8676e4-2528-43cd-ab5c-800c764258db",
"f0db991e-04ab-4b7b-ac29-b5b56c8a5228",
"706e5a2d-8733-4ef6-8448-cbd95eb9234b",
"c5f755ae-399c-4592-99b9-66b9316f1f9e",
"67287d5c-8893-464c-9c1a-41c7df87595c",
"7a2a0e2b-63b0-4218-95ed-659fb0c723ea",
"d4767db0-fd62-4878-b706-7a1b2b1038b5",
"b3e43294-49e2-4623-8da5-e5f0139ba5ed",
"0e691f64-47cb-4c6d-b0a7-9ab9d2721e04",
"034601a1-ae63-46d4-8da6-d4be54a75205",
"b4ef9116-fbfa-4f6e-9d79-7742ce7f18a0",
"151a6e15-b6eb-4c5a-878d-a33f0bbff6f7",
"337a3c6c-4a4c-47e7-b5a4-bb6905e6e61c",
"db59c6ef-371f-4c92-8cf1-937b189dd917",
"85019eff-fb71-4c21-9ffa-a699c9762671",
"770b3680-9962-4f87-850d-1b779c68b39f",
"7a8e0094-28d8-4645-aa51-3a3924a9f42b",
"e4fd1bcc-af36-4e1e-bb9b-746f22ab974f",
"f321a195-b6b9-40a3-b296-7b80f52f2909",
"9e03ddbf-9587-4200-8b3f-35f023718a7e",
"a26491db-4057-4f0c-bfc5-17be4ed06a79",
"2aa0474d-93ba-4583-afa4-f298324ea947",
"da022be3-af6a-4968-98ac-6ebcfb9b2987",
"642851dc-a50a-4bf2-824b-2720ee2c59e5",
"6456ae3a-0b5c-4722-a250-f3e319d30005",
"04e9374f-5981-453c-9977-8cd2d284f01c",
"c802bc4d-400a-421b-b847-132d5d593797",
"99d6d0fa-a317-4aa9-b073-78933eb2ba86",
"46360a31-6346-4704-bb1d-b043b95b9256",
"4aefbe70-f741-46e9-94db-0186d70e9d84",
"ee57ec1d-8217-4b9f-bf44-c7c3e472adfe",
"ef55d6f1-12cf-4ef5-a1c7-66915f3844b3",
"c4e96bff-dbc8-4522-8d04-6165eaff15f7",
"673ccfaa-11b5-4de4-8ebc-d21c5547ac11",
"834a774b-2aa1-42a0-9b23-04de2eb2d298",
"c95f2838-3b9b-4c2c-95d6-0d2a903111b7",
"2a1fadea-a5d0-4581-8589-727bf4e37a1c",
"20f9585e-cd09-4647-aafa-7ec542ac48cb",
"577b199b-5347-48e9-aa6a-998f366240fa",
"0b1fb18e-d18b-4946-88c4-67f74700ccac",
"464d2209-f330-46c7-a372-bd21c3f0df07",
"8d8a8a96-f055-4377-82ed-eb66ecf18206",
"049b182c-e1cf-44e4-a486-cf5fcc3fdac4",
"13b75ec0-2813-4c30-bcb6-845ffcaf4a2e",
"5408272f-84f1-4a76-97f1-a00a7731f4b9",
"cb759c8e-7e91-493c-82ca-4efe2e7b16c2",
"6832a4f8-e66c-44d9-b2a5-01ed235aabd4",
"5b320de3-b87e-4c6c-a90a-9d906dd33925",
"b2cab756-603a-4597-9e60-0b65508e211e",
"599c93ad-99ad-4f1d-98af-af4324f9b845",
"48898888-1fe1-4ce9-81d0-de9399811f4b",
"7e7445c4-f914-404f-a403-d580bb856960",
"77f59b23-78f0-4408-bce7-50c6d74c292d",
"4acb7a12-0c0a-472c-8470-3e33acf93a57",
"71bfe8ca-48eb-4e3b-93de-7222fa257fc0",
"31285e0e-8e63-43de-a4e1-abed62c16289",
"64914b3f-6446-49bd-9c24-7ef5868d851b",
"024c7926-7ce6-4ccf-a02a-9fcdb42c181e",
"e0ebe926-2afd-4c2b-b23d-0bc5bc30ec33",
"a04c4591-163a-418e-b7ba-b9a5e6e427fe",
"1bb1367d-cae5-41dd-bdf2-2829a12d9a61",
"63445682-376b-4805-8430-61a9f360c8dd",
"c22d12d2-8ad6-4bc5-962a-b98d9a6f9158",
"d433af5e-7ef0-4a33-8ef4-e81ef8d04ba4",
"da891d8a-bc4f-41d8-a934-e956b5ed822e",
"04ad577e-474d-432a-b4f5-76f3f5b77f9a",
"c125dc08-69f2-4b18-bcee-9cc6dc41d9c1",
"cb2b7351-04ad-48e8-a426-9fd780044f3c",
"cae75ac0-1e66-4450-b39a-bb2bfbd8037c",
"986db51f-db15-41bb-8a5b-b16668b31d44",
"af7126d7-3fb4-4712-bc01-ebd7ccf7e580",
"12cae222-51d0-4c6f-9922-216436a4ea5c",
"9b75d75d-1108-41f2-999b-0210031ec2dd",
"bbdf1b6f-b19a-4470-bc9c-2c60ffb533de",
"afafc5da-ce60-4bd0-87c7-80c77b3e9d69",
"caa27155-fb3e-4b34-bc0b-2529cd34bf9b",
"a6022002-ad87-4508-b4c9-a4252cea8916",
"ed82754e-1f79-4e6d-bc03-fd84b4c2a411",
"2acfd337-adc9-437b-a174-acf90c4309d3",
"48831e70-42af-4373-883c-d00c77c7aa05",
"94f80bdd-8f80-4b9a-82e3-69994da28cf9",
"983e904f-3532-4843-8bbb-e8da8d17efd8",
"abd58c3b-f6a7-431d-b520-c5aac67e7416",
"ee12d1a6-ba80-4fbd-b290-0b0eca814f97",
"c497c037-aea4-4461-8989-601f8ad686f4",
"989b4c39-8200-4370-9ec2-5a0b38b36e0e",
"631ef38e-b509-47b8-aa29-f89747996d5d",
"5abce3e7-16b2-4513-bd26-3b6818015730",
"f7ea88ae-028c-46b5-94b5-c6f2faebae2e",
"c98e1870-5033-47ac-8e44-fd3575581560",
"c2572a17-43cd-402c-8519-4e572b49b61a",
"f822062c-4315-47b0-aef1-8929ba705380",
"63897368-8a20-4964-9ec4-1bcaaefde6b0",
"237363c2-df39-40e2-861f-8f0818a4d5e1",
"40c85fd7-de2a-4df7-9aa0-5c4578bdc676",
"7154f9b9-922d-4b1d-9368-53b32f3730ed",
"2f26b351-05b8-473b-ad6b-8565a99d03f3",
"0360db61-319f-49f1-b13f-82b96d0f6e1c",
"661bec80-593b-4515-9c68-cb9b00c42ee3",
"40edcf65-3134-4e47-90c3-93f6d12a8ac3",
"ff5e90c7-1cda-4a0b-87fa-423614ef6abc",
"1309ffea-32d4-47e0-a880-54833ce5a35c",
"c3da2ea2-2a11-44b8-b9b8-841244400dd1",
"4c594ab4-3b10-4d1d-bad6-a248c5eaf845",
"f2f6ef1c-4f91-4b8c-8a6d-a1bc32a016a4",
"04a7992b-5ee8-4960-9359-9da7131780e9",
"c218d9d0-0141-4748-887c-9662cf1d1d68",
"becae72e-17b5-4d1a-a665-d64a1e97a621",
"cdf72771-eb06-49c6-8d23-a9322eb54ea1",
"b8ad9f52-ee1b-4f3a-9adf-db3c91a2e467",
"06fe0a1a-1423-4c1c-b914-6b3dfcff2551",
"14ba7d99-e93d-4861-bdd6-c09ff8524ad1",
"2a263ad1-0972-4697-907d-72b7c1e54b2c",
"f7a3908a-0b61-471d-9b24-b34460b89fb1",
"baea07cd-a547-45b5-bb64-4cbf0f171fa8",
"fc38e3c8-faa6-43ac-a66c-afdfd461d810",
"88ef86a9-7e00-4a6b-a8f1-2c507b4873ec",
"120755e9-cb3b-4a3d-8f88-3cdb12625eed",
"44dc48d5-6b87-48b8-8da7-0f681122390e",
"1ed8358e-8460-48f4-9e27-b55bc6b4aacf",
"aa9f3460-430c-4f61-8259-58ced3554351",
"a9d1afb5-c16b-41f9-abcf-80f198246b79",
"f6e5db86-596a-4475-9299-d32d26e23290",
"c3889947-ffec-41e9-ade2-89dd7af379e0",
"dd2fa865-894f-450e-904d-2f683fa55b00",
"17053837-37f8-4efc-9bef-8bce7955f8f3",
"b7e08c12-18e2-4197-8b9a-b0571735f437",
"321efa08-4a1e-4a2a-b889-1cc4830f6453",
"357facaa-d550-4e0a-9cb9-d8fff35dcb72",
"ea8d4a8f-9b34-49df-b31c-ce7911c3f0cd",
"f70836cc-9064-413d-84fa-6a831ee16c44",
"b7678625-8a3d-4583-8126-1479c471c7a4",
"0e32150a-9c6a-489e-a49f-39bef1563c9d",
"5ba00e12-a6d4-44b3-b294-80f9fb46ce71",
"5e8de2df-067f-4770-802b-ae586a8916e0",
"68a884e6-168c-44fa-b639-f52c29c3e9de",
"c2436044-c2e6-4b7b-ae5c-5ebb4c819efc",
"6e466f09-cd67-4704-b79c-876d2735b124",
"033e17be-73f8-475c-8f98-ab61fdc8a0b1",
"1ec4c50e-f913-4fcd-a7d6-ca6cdff96f54",
"b69806b8-45be-40a0-b33d-d8e6baaa87e5",
"6de3870d-5acb-40e9-9f0e-0c6cea141f7b",
"c7fb94de-9555-489d-a1ae-051d9125b2ff",
"894a3fd7-9b26-4ccb-96e0-b4d4ef5e85c9",
"ed3244c4-c2c1-4882-82fb-18a7d33ddc0f",
"12989ff4-c941-48e0-b48d-cbb832349cdd",
"40d7d2fe-dd1e-4da4-b497-17aff4e60b80",
"9291ca87-df43-4573-a13d-a64c5d239040",
"2c41bcf8-0c73-4d22-9d0b-b4eda261abeb",
"91363651-9494-4b83-941f-a6ad63ad8087",
"1ea6d029-fd1d-45b6-bbf2-673377ccd7ae",
"f438cf02-6c57-4bed-b645-6b9889ce971b",
"0b11c0fb-aaf3-4f27-844a-b3afb3cbe3ff",
"69d43047-f5ac-49e1-85c8-b2cdccbed80c",
"e234cdc6-a762-4462-a4d0-7425db4a0815",
"de778ec3-ed10-4c4a-b7c7-aacc60829f24",
"88afd4c8-1edd-4e37-9b80-69979c372190",
"a249af33-4dca-440f-8919-6e3646e0eab4",
"908a529c-b455-43eb-b1b6-2ff5218ed6a6",
"1977da1d-678d-4885-bcbc-01a994049d09",
"5a798732-d411-4f2b-88c0-a7b0b136063e",
"4fa2ad8b-581f-486b-8bf2-3321fde00024",
"2c4d8911-8ef6-4f63-9ecb-c93c0836bbda",
"75623292-48fd-434f-a3f7-ccbb3873ace8",
"4392da61-91bc-46f5-975f-5b05c7bec2b8",
"ee9a621f-e318-40f5-b758-c314b6ea9345",
"d3fa50e8-e4dd-4817-8e81-59c6b0dd1db6",
"29c38294-d7b2-4724-96b2-8438419d61b5",
"18090d42-27a5-49ba-80d7-9d24b94d21b1",
"4c795957-e1c5-4c5e-83ff-c7892ac4f4a8",
"ae6b7a70-dd33-42d6-a904-7f3b88a78d9f",
"4f8acb9c-1df1-40ce-a437-b7d8ba66297e",
"83df76b7-dd07-4fe9-be28-47d54ea92080",
"d33d0379-4344-45c9-ad4f-702e52b333d7",
"440a6527-1653-47e8-9001-9b5327d22718",
"6100de98-af3b-4248-ba0d-cff44c41829a",
"9558d6cf-ed70-4627-b37e-1b7ee537e377",
"40f236c1-59cd-49f2-ba07-84efba70c9c3",
"76f4497b-e288-4413-9345-49a6df163363",
"05fdf013-ac05-4b83-84f5-939f043d9b10",
"88b01b13-d443-4f12-8269-274f6be40b66",
"91072796-27a5-4f9a-a07c-90bc45153c2b",
"7bc72e69-1114-43e7-abf6-baf989b8a03d",
"a9cfcc4a-c427-4fd8-b5f5-a035812c3be3",
"f4330318-4aa4-43b6-87d8-407b943fdd25",
"95eed3e4-0d07-4954-aba8-01ce0aa0fb36",
"7f98d1f0-7c4f-46bd-9ddd-1682fe65e5e7",
"3cb192f4-f254-4304-bde0-329f4086c8f7",
"cba31afb-a1f3-4387-a6ec-bfb9007ac079",
"a79021b0-b1d3-4300-9787-46d71232ccdc",
"4c23686e-a3d1-4fa8-847d-c0977f64c683",
"25845247-a412-41d1-9544-9fc263bac7bd",
"22027dae-f4b3-44ae-b883-bc15e741beb4",
"85666636-e467-4522-9b1e-d3db10effd6b",
"a4baf6ab-ff82-45a7-b581-3917fd708585",
"3d499a5e-a705-4567-846d-5b85396db576",
"e621deda-3aa9-4935-bf7a-8cc113d85fa8",
"ec4ef59d-91eb-4342-bf96-af70459aa7f9",
"68f09e33-5342-4b52-ae00-75e4fc5522d2",
"58dd849b-2cb0-44ca-a270-cf3b6e796fa0",
"fd02e770-f998-416b-b16b-3c999901c69b",
"d3614335-69b4-4a7c-8485-f2f04d953e2e",
"f61ee63a-7aca-40fb-a93c-07fcb6ff7c60",
"c5f1c923-e7db-4a91-a950-9e3929fff292",
"0fbf005e-c5d8-4853-a5f3-6ea00caaf6ca",
"37391325-c959-4de6-bcd0-4fc87707c284",
"3e684b30-65de-41e8-9922-ff220113487a",
"d78e5736-329a-414f-b791-30006a962862",
"469c09ba-0ed0-4606-a505-9259ac9936f7",
"0d7a61f6-8901-4b7c-be49-02a754b15013",
"c467d110-7898-4fc4-8ac8-72d2f877b008",
"31c2929e-3f58-4002-93cf-8c27fdd9f921",
"0ff6ef2c-8805-4ef5-9c36-aa2d07af69e2",
"e231adb2-7f1b-4a60-a417-4bd96540881d",
"c63c316b-9278-4a70-9b9f-2af9d468c9e8",
"399f8b2e-6b51-4668-8211-a13e6cc6f51c",
"2e85ae6a-4ab3-481f-84ad-6702bed85a62",
"d7460b55-033f-409d-882d-a8f99772b04a",
"e5f5fa69-9814-4b74-8f3e-7191af4253bc",
"83ea7f73-dbca-46c9-b970-7cab3dfe2bd9",
"9ade0a87-28d0-4ae4-aede-dd94bc9f92cf",
"12dd1ebd-9726-496f-a9a5-1ed60c9f6125",
"55518aff-8502-4cf7-9bf2-cd9b80fc14ad",
"899ebcd5-f45c-4213-b91b-be5689288b5d",
"ed8149fc-e2ed-4716-b4fc-64f363bbc51a",
"401f5d48-7602-4a16-8ce6-ba19204b4bd2",
"730dcf32-27ee-404a-bd75-ebc7dc70129a",
"e9a70ad2-3637-43e6-abb4-075c2d06b735",
"9d996036-1fc7-44d3-99c0-6f56fdf5ee90",
"79e2774f-3ca6-432b-8d3f-a68959501438",
"cf282c58-2f0b-49c7-83a5-9d058378106d",
"f100dc86-25b4-46d2-8983-8e03d4231462",
"9ec2dd79-c4b2-4fe9-9888-307aa665762f",
"c001df63-08b6-4582-bd5c-55555fbce6de",
"034fde66-b33c-4a2d-8468-fa0cf7f468b5",
"5bbc478e-821c-484d-ad21-ca3eac1028e7",
"624b268c-686c-4515-80f0-05c89a19b134",
"5cb08177-42a3-4d28-b34b-73dec1a72cf0",
"a7a7c788-92a9-4cce-852e-3c11a80a558e",
"b330e92f-16f0-479e-b3c8-5afbb6b0b472",
"4b9fb6ec-ecb7-4e86-b926-283b1b17cae2",
"4bcdb9dc-01ba-41af-961c-56e71c6cc9b5",
"bfe5a502-9dba-48bf-a365-0f60e21ac25c",
"c06663dd-15c6-4726-91c2-0a0d53de26b7",
"ce7d0556-2577-480e-ac43-003c4f771861",
"a1fb1c15-3724-49b6-bf27-a0fc5cb7ec47",
"915f749e-1e06-4cde-b32f-1f6eced5b130",
"fd17532c-94a0-44e8-b142-95590d522f7f",
"f10ca810-edf2-4945-8c41-ddd0693da274",
"18aa0db2-0c0c-45f7-b5db-3cd800151d21",
"83a35da3-dc4c-4e20-b62d-739fe037039e",
"33f0809a-4535-4adc-af9d-9dcf9fa3e17d",
"0a50db76-ac51-4a85-ae5b-6579e1c88b00",
"e6fc11fe-fa3a-41ab-bd98-cb351e20d247",
"c0ff76ca-d284-4bd7-ba5f-abcf591709ba",
"aa39386f-140e-4268-951e-716faa1a7ebd",
"ced081f5-e6ba-437a-8b91-3a257ac748ba",
"1c6805ba-0d2c-4195-94ee-ddc71dd56894",
"edcdef23-76fa-4b3a-b500-50a8923b4781",
"66046cb5-c66b-465b-8588-2bebc19cf841",
"1a7788ac-e6ec-4820-834b-b5fe9d2f8f71",
"e6612df6-1e0c-4328-b223-ab8e5e10720d",
"0de555b8-2a69-47ae-b2c1-17529c7bd293",
"456ddec7-5edf-4bb9-8e7d-6cbe0fb1762a",
"e15e5a79-4167-4d7e-870e-b54082c5081f",
"bb65cce0-1a6d-4d1a-9f4b-9f98697bc0d9",
"b7337395-3335-4989-a230-0ba4d148abed",
"489cb63b-a4eb-4d42-a98a-76046932cbed",
"926f5272-5ce5-4c1d-9db9-a66afcaec98c",
"593aab52-9b89-4252-b9ac-09de2b2d6e1e",
"fc291774-c70d-489d-8986-0d53ffdd8d22",
"ad93aa26-a135-4216-a2e2-59ea8d69ba46",
"5a1f6ded-7a90-4114-a8e4-374d7a698fce",
"a8e4c85b-539c-4dd2-b069-d9e90f943353",
"9052e430-e48e-4688-8cfc-ab57e551abe2",
"a75e33d3-ee64-42b4-a1b7-8df3244158be",
"42fdb8e9-6366-45f0-a943-82a5e2b8fcb4",
"db1597c0-a67b-4617-b527-461b5cdf2d65",
"ba499906-c064-4491-9703-8b37e50d59e8",
"9ccb6c93-6aa4-4357-a8c8-5189bad2253b",
"6906ebcd-f16c-49ac-87a1-2f541f387a14",
"bc90379b-67e1-41c7-ab8c-77a6af993c89",
"7163e578-9e4f-4d5f-a0f3-a06eb301a086",
"a251d360-8946-43af-a3f2-7c503aa8598c",
"ee18e3c9-f1fb-4d31-a8c3-24aedf5935b6",
"878e8c15-d96a-43ae-98aa-a46e7630d575",
"d3338072-a2af-49b0-8fdd-cbc6fe0cb7ef",
"c06cce78-812a-4e3b-b03b-608f55219491",
"244cffff-c1ae-4032-be7f-18652b91cb9b",
"d8d5fcc7-f51b-42ba-9842-0324e68be7ac",
"5998e1c7-7abb-4ab9-8907-7467c691b883",
"2f415b98-ad0f-45d6-9c92-6d1e945c17f9",
"ff38986c-5089-49cb-83aa-8da8d657475b",
"01c499ba-99db-4714-beeb-0b2bd58116dc",
"b7ab9c45-fea3-43c0-842d-67e290cdea25",
"36fa80c5-abde-45eb-be34-20fd2e96916d",
"0c2b0d64-a607-4e7b-8618-cdfe2851ae65",
"2ddfa89c-dc7e-4c5e-89a8-f6e2815c6f03",
"fc99462f-703a-4ec5-9e36-606bf88d8aee",
"1b13bd02-8dfd-4496-93ee-4d7cff3a5d81",
"0b9ded34-3967-4635-815a-92d1c8f41141",
"77a1d683-8750-459c-b290-196e16dfacf8",
"8da4ee29-464a-4d2b-8af2-6b1539bbd71f",
"a1b91edc-da60-4fb6-bfb3-4663d30b97fa",
"ee8dc204-7f92-4311-8d90-cf95b3f735fa",
"dceaab9a-d62a-44f5-95d4-09e04910ccd6",
"9d329098-f1e2-4043-8c01-779b62575868",
"3fe2f7cb-32b3-4037-b97b-3a09f5820d7d",
"b7365e19-7c0c-4ed6-842a-658b76704510",
"12a1cdf9-2506-4a22-827c-4904376cb0ac",
"5971176b-cd78-441f-aa6f-e20428e72f26",
"acc1e122-6b8b-42c3-8489-a34e6a81cd6f",
"76991922-2a73-4df4-bfe1-62a140f1d5ad",
"c2f83ca6-8308-4e86-9085-88f836b14eb0",
"f5bbf1b1-ed82-4e86-8aaa-ebb8e67a5c16",
"66e18ade-2042-4d22-9ad7-7e203090e85f",
"ffb204d1-9e9e-4eba-96b1-57989e4b4f14",
"3f577571-d384-45a0-9b0b-dcb2944ca2a9",
"9e8148d7-cb69-49b2-a44a-b7b15c8796b6",
"0e2120d4-972a-4b16-9be0-72ed9c366599",
"45ef67f2-fec9-422f-b684-5abe9d8744de",
"4036f050-8404-4bf5-95e9-0be2c0fb79a4",
"f2d06c06-3ff8-4417-878d-aa5949cbe26a",
"213c22c8-a757-40c6-bedc-15f78d4a5f73",
"38982671-590f-4e91-9c7d-41d37b9adbff",
"59a0087d-5dcb-4f88-98c0-a077a96575d9",
"7d9a81f3-9d5b-4e05-ac99-fbfdda5980a5",
"2f41111f-3571-489f-b782-01be43eb1b37",
"0d92a532-aad0-4159-a8c9-fb259bfa04f1",
"6c965109-00e7-4539-bd8b-40bb758b67e4",
"a17d6848-4fa9-4c04-bb4d-44ea5d40ce37",
"68146370-aa09-4cbf-8c5e-d43b016950cb",
"4a1c9e4c-500f-44ac-9613-e1623ba3ee4c",
"59c4e100-4845-4ccc-925f-8f7a1c32bb08",
"8184e557-2aa5-450b-be2e-9d64aa686e90",
"f00b5b03-df85-4db6-a753-61d599ceab8d",
"d61ee5a3-c2fa-44e9-ba02-a8d33361b690",
"e02b77b0-7866-4e8a-aaf0-1c401c045e1e",
"e93240a4-ceac-4758-98fd-22fba406cdcf",
"462e2684-4e39-4a9a-bb74-d10c1a1577a9",
"9ced83b9-3181-4b51-884f-d7f507974d4b",
"9e2e0d43-5a3f-4d0a-88f9-38a3ea588b1d",
"f65d9ec1-d33b-44c4-b006-0277631ec425",
"0f69873b-1173-4281-94c6-7448e2d4c6a0",
"64eb148a-65e2-4ec2-bd32-d723cab41499",
"bc14d0cf-eb3e-4181-b1f4-22b7bd4abead",
"e63dfec3-e7a4-4e77-b1a3-ae38d2cacade",
"09afa220-4509-4b03-b4a6-323d5f7cc972",
"12cd8c3a-749d-45cc-a59a-4ce9f61b2a7a",
"bf7b727a-e99b-4966-ad10-0c45f6d82833",
"e239445a-32b5-42eb-b20c-362fea7e2e69",
"9479cb66-f3af-43b5-a6a3-caef45e87bf0",
"d616193e-f292-4a97-9de1-a96c7399fe0b",
"a00332fa-4d1c-4b0f-8ac3-e118781724c8",
"c45ab63d-57f0-49e5-976a-4477f2129bf7",
"72db9ed2-2c25-4252-803f-ce292a6f93eb",
"c6930c25-4bb6-427a-9b61-94e36ffd9f0b",
"5ee94a15-1c2b-4791-84fb-54eca94f0966",
"f0a00011-3b69-4d1e-9723-aff8d73a951b",
"9bf90913-ab3e-448c-a701-df43bddd3c18",
"7a3d04dd-c35a-43f4-86e8-de5c5b4e2802",
"a5eb130c-171e-4b77-bd99-f738672ec1be",
"3d3ccf84-2b33-427b-8df9-8c6de85f7b9c",
"9b2195fd-4b86-4f63-9cb4-866a23ef9acc",
"2c97bf8f-fd9e-4a99-8f33-0c006253453f",
"86c3225b-bd2b-40a8-9a84-53cf4ef23848",
"12f70fb2-637a-4190-91dd-b2172e6afc81",
"c22789ae-841b-499d-ab0f-39d930809a81",
"0890aae5-5ace-45a5-88ce-29435e559e00",
"fbb2974a-4f80-4e7a-a90c-7d5a4e4a9a03",
"f3fb8bcc-d5bb-48f4-a2dd-3eea51e9deb5",
"e8215287-1849-401a-b6cc-b0367261ef3d",
"365e2102-b4f5-479e-a2c1-cff6ed75ed7f",
"dcd0ee9d-5ac4-4a5e-a833-9018e20427d7",
"b681abcc-1cef-41b9-a936-043c26ae6bb9",
"d16fa14a-8443-4c90-b4c3-e6e4200e0dbe",
"4460adc3-3978-4020-a58e-c7fa5584600d",
"e6188c76-0977-4cdd-98b9-520d80eb218a",
"c304a73d-defa-4c9d-bac6-79f2a89e237c",
"dcf6dc9d-9155-46e7-9e6b-239b61a24734",
"5da1697f-7896-444c-9e84-5ba7318ec627",
"a3eba79a-0c61-43bf-b3e3-43b9a8cbcc8a",
"89a8c61b-3ca7-45e5-ba9b-f9daed1180fa",
"fb15bc56-eb33-4d93-89ba-cf0fbaf1c651",
"49426fb5-9e95-4e1f-ba3d-4134032945c1",
"bdd60408-30f9-4a65-b14a-9b1bef42a7e7",
"56af9543-cc8e-4d15-ab69-a286c4b84f02",
"7de842d9-5482-4b3a-bffc-d01d8d683dfd",
"4b9f55d5-448e-413b-842d-8922799099c7",
"7c5720ba-40f7-4cf1-980e-50e608d84679",
"363a8d96-38df-4c90-8c44-d6f6cb956c8f",
"1bfd8d39-ef05-4161-a0e8-1f52f0ef6f00",
"706093f4-090c-4238-9a07-ed187e158cd2",
"b97ac18a-f6d6-4b1b-9e0f-f1059dadac91",
"1c4b54f6-ee34-43e3-baf6-a83d3baef2c9",
"b883069c-a41d-4274-b8a4-72bfb510b6a2",
"f6fb2fc2-d5d9-4d9e-a448-bba616201ed5",
"09cccc5f-c352-4245-9413-8deb63fe6bf4",
"50771f13-55ab-4dac-a32e-60aad558504b",
"ec7b060a-2e8a-496f-b6d4-71ea99dbf914",
"40c509f9-5f1c-42b8-8dff-514611901ec7",
"d97736b8-54c6-49b8-9db0-6d2616aa92ae",
"a9a4e820-671a-458e-91b5-a1e760de06bb",
"20567586-7216-43f7-bb8c-4dec9523d017",
"9b1b0c1e-2ff9-4308-94a9-ff344ce5f03d",
"298631ef-e020-470d-8fdf-96524796d453",
"d8f4c95c-e63d-4d02-bb7a-fe881a5a980f",
"06a9fff2-0867-4410-9f1f-26ab68f6eeb4",
"1231beb6-f3fd-40f7-b88d-fac2106b57cf",
"04ded7ef-a29d-4811-b95c-2c16c90813f4",
"2cde02cc-8d0a-4a18-b237-48a163ad43be",
"5aa04022-34db-456e-a6ea-2bf1eb3c4838",
"3fd4d505-fd63-4d0c-9137-f74601faf99b",
"1b040bde-fb88-46c9-abd8-374b064ed6e5",
"14f774f3-fab5-4c1d-90fc-809c947e58d4",
"1091ed20-4584-420e-aaba-f55a2a7a3284",
"33b98f49-c665-42df-8b9b-82efff9a5feb",
"5191373b-1064-446c-8377-9787c5e2894c",
"30891ec6-2936-4261-9825-7dd3bbd49ca2",
"57fde909-9f15-4c66-bac6-c96ae0f45c32",
"b0022586-7c37-4818-a028-c811f79d0d4b",
"68a5fc37-4f19-47ca-95f4-ae9f195acc85",
"7c1e1cf7-206e-400b-819a-86cb12f8eb5c",
"31ce6589-dceb-4511-b3ab-d2c0402c2373",
"d1a617df-92f1-43b9-b745-dfa68aa939c4",
"39ac0c77-6586-4d48-9c21-9624720b2c33",
"1a72b1d9-3f8f-4a0b-bfe1-1b1d65011a4b",
"663050fd-c8a5-4e80-875b-ed1e848ebe01",
"0c41e358-4f8e-46c8-b3f3-1bc6021fd1e0",
"a3c83b90-547f-40bf-91f7-a1ac85c139b4",
"ab2fb4ba-3931-48a5-bce3-0b248b385474",
"8fd5e74c-5792-4098-9010-7925403c2f7c",
"b64bfa20-1027-4bc9-ad02-6fdca7f6a9c9",
"fdd2672d-a93c-4041-ae3e-6a55cb7a0fe7",
"2246653f-476e-40aa-a426-246658630938",
"ec0fb2d6-d7c5-4fd7-b800-bd69eb0cc392",
"2d17a598-7fec-47f2-afe0-9a2485ec3e79",
"1d6cdf4e-539d-42fa-a65f-7ac0a5560a03",
"76d46f6e-4a6c-41d9-a1c9-09c41682b548",
"c151c75c-29d7-41b5-ad0d-fdd2818ba6d6",
"f6944ab5-bcae-4bcd-8322-b96a5dbf1923",
"8eedf5b7-fe46-4fce-b4f0-61e9cc0ec182",
"6cc7897e-a14e-4d12-89b5-f575d5ae74d1",
"12517a7b-ea13-4829-8c8c-e1ae235e9a39",
"06c8e5a5-26d9-4214-9f35-dbf3ea8da931",
"8c0221aa-0718-465e-a800-e590285bf9d1",
"4ac669fc-8e01-489d-b327-cbcaa3b67975",
"d577ea44-661b-4b89-80bc-630a066dfcc1",
"77859990-e51a-41d7-939a-04f383c0c073",
"327cfac4-f494-44bf-aaf6-8a80e0def612",
"c26d9d69-06c8-42d0-9257-6852c56b1c7f",
"ccd7a749-2a78-4b13-b2f4-814573b5689f",
"9cc2586b-f827-49d7-b684-da7abd7ddc29",
"2d28e7e3-3e5d-42e1-b87c-1cc1b045d091",
"7afcf1bd-3100-4618-91f9-98dc31e91aa8",
"9afa158f-37e2-4c62-b576-0094e50ce02b",
"3af1f33c-b01f-4e01-a340-2610d6114143",
"c7c56608-4e2c-48e6-b356-194f4bbbbbc6",
"cbd96726-ae59-4a77-92cf-0f8d92e927f4",
"e3e0072d-b244-475b-baf2-b361811bb363",
"5ec2b7a7-5d63-4c5b-8eeb-88d73a9a48b9",
"d5352c96-999a-47c7-adac-01f389a278e1",
"7cbfb110-6ec2-4cf8-bbf9-beb02ff2d110",
"7c46b945-f565-47f7-9439-bbf3b505e62d",
"94e70a5e-faaa-4f37-be21-602a97db19b5",
"fbad0e38-bf11-47b4-ab13-51874459019b",
"e08b168e-28ea-4a9a-a12f-4d57c85ca1c3",
"902314bc-821b-4931-a84e-68402c52b8b9",
"0323460c-0c4b-4a0c-9126-6698f4865c87",
"62b09bed-b48c-4f81-8430-5826239487d5",
"da5c49d3-01f8-400e-9b28-a31ebd03a416",
"0a2f27bd-ead3-45ff-9fc7-cac77ccd7160",
"b57db417-7356-4bac-8c71-5600032d004b",
"02dca5d0-a6df-42ab-b26c-87d8779025e5",
"ee9aa66c-8584-4bab-9521-8d23a26df805",
"de04635c-eaf4-48d6-bc89-a6d1b3807de3",
"5358df6f-2bd0-4a59-92ca-a57a84e2404c",
"1d487a98-6c22-46e9-b855-3251cdf56f78",
"c72d9690-07f9-4b8a-9ce9-b124195c6342",
"b5f2dace-2b07-4327-852b-260446eb6100",
"f615c2fb-d99f-43ef-8aaa-e5fc2087e7a7",
"863671e1-2ba5-463e-9853-63dcd47a789d",
"5e6296ec-dafd-4199-862c-32028ef5e7ca",
"a57077de-e9eb-4f80-ae20-4d9011e45f39",
"6a8b920e-583d-45b1-ab4c-4878d4ea7b7b",
"f008b6bb-9a8b-4580-9335-fb025e4fbd70",
"18f00f05-0bc2-4f97-a0a4-43a85760aa0d",
"5bcde7e9-66c5-422a-94d5-4d3b475c4460",
"be31bc42-ef66-47ea-a45d-6bb58803c855",
"228d2c69-43bb-4af6-b22f-12b805c2bbf6",
"fc7b5bb6-0044-46fc-9cfd-906cc5aa77cd",
"ce9b4857-9c39-43f2-9d0e-3fe3590fcd34",
"75a127aa-1fd5-43b3-ad67-d89c3ea813e5",
"cb4d4645-fea2-415e-8414-6c6533423187",
"14d788bc-fb20-4d3f-b1b7-d4ebe5021c86",
"4509c6aa-6160-48be-8069-07cf89815326",
"602de67f-1400-48e4-8639-d6f35da24f0d",
"588f62d0-7271-4ed1-ad06-1677f9b1ddd4",
"7076705a-ae1a-457c-b358-f07406712024",
"c65eb095-ce2a-4a3d-a96c-8fd0b3c77513",
"d7d83ddc-9527-4157-9a62-305473c0db9c",
"ed7b45eb-2287-46e8-baa7-5b62e547b3fa",
"51fd0631-6ebe-4f57-9c7c-e6227c302e93",
"c14ee0b4-a884-43b1-842a-41ed1719707b",
"d6518dc3-668a-4825-bc7e-f80e997fb187",
"76283906-c5aa-4d98-b862-cee30766fb3e",
"891c5a4d-18b9-44d0-bd12-57a8f0b47525",
"e6adae9b-7517-4317-a3fb-879cf14e761d",
"749fbdc2-8987-4d4a-83dd-703867182e40",
"3e05211c-1212-43d7-9744-836534a052ce",
"cb54c8ad-a872-44da-88f6-01434c3cfd57",
"93e2f246-660c-4591-9b4b-42525eb151c7",
"1e377f2d-5e78-4d9b-8eba-e13ce55c8eb1",
"571d86c2-ca86-487d-ad35-2394569113dd",
"b2a5ad9a-7a51-45be-840a-0b77e4ca8c07",
"c29a1111-9e89-4f64-8752-12f1d1b80451",
]
var schoolNameToCloneTo = 'Anthology Internal';
var schoolNameToCloneTo = 'Cin7 Employee Academy';
function wait(ms) {
return new Promise(r => setTimeout(r, ms));