www.signupgenius.com
Open in
urlscan Pro
2606:4700:10::6816:839
Public Scan
URL:
https://www.signupgenius.com/go/60b044babad2ea3f94-bjcaws1
Submission: On October 23 via manual from US — Scanned from DE
Submission: On October 23 via manual from US — Scanned from DE
Form analysis
1 forms found in the DOMPOST /index.cfm?go=s.PreProcessSignup
<form action="/index.cfm?go=s.PreProcessSignup" method="post" id="signupForm" class="ng-pristine ng-valid">
<div class="spacer-sm"></div>
<div data-ng-controller="topAdController" style="z-index:9000" class="ng-scope">
<div align="center" id="signuptop_dynamicbanner" network="sortable" platform="desktop" category="signups" section="sheet" type="dynamicbanner" themeid="18850" position="top" class="ng-isolate-scope"><span>
<div class="ad-tag" data-ad-name="Desktop_SignUps_Sheet_970x90_Top" data-ad-size="970x90" data-ad-refresh="time 30s" data-ad-processed="1" id="Desktop_SignUps_Sheet_970x90_Top_0" style="min-height: 90px;"></div>
<script type="text/javascript">
(deployads = window.deployads || []).push({});
</script>
</span></div>
</div>
<div class="spacer-sm"></div>
<div class="container ng-scope" style="min-width:970px !important;" data-ng-controller="sideAdLayoutController" id="sugBasicWrap">
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<!-- ngIf: objConfig.showleft == true -->
<!-- ngIf: objConfig.showleft == true -->
<td class="SUGmain" valign="top" style="position:relative" id="signupcontainer">
<link rel="stylesheet" href="/css/angular/ngmodal-v1.css">
<style>
/* Still current */
.tb-shadow {
filter: drop-shadow(0 12px 12px rgba(0, 0, 0, 0.45));
}
.tb-shadow-safari {
-webkit-filter: drop-shadow(0 12px 1.5em rgba(0, 0, 0, 0.35));
/*Fix for Safari's harsh shadow's*/
}
.tb-shadow-half {
filter: drop-shadow(0 6px 6px rgba(0, 0, 0, 0.45));
}
t .tb-shadow-half-safari {
-webkit-filter: drop-shadow(0 6px 0.75em rgba(0, 0, 0, 0.35));
/*Fix for Safari's harsh shadow's*/
}
.rendering {
image-rendering: auto;
}
</style>
<script>
(function() {
var desktopSignup = function($scope, $timeout) {
$scope.image1 = {};
$scope.image2 = {};
$scope.image3 = {};
var ua = navigator.userAgent;
/* use Chrome's shadow settings */
$scope.tbshadow = "tb-shadow";
$scope.tbshadowhalf = "tb-shadow-half";
if ((ua.indexOf("Safari") > -1) && !(ua.indexOf("Chrome") > -1)) {
$scope.tbshadow = "tb-shadow-safari";
$scope.tbshadowhalf = "tb-shadow-safari";
}
$scope.image1 = {
"IMAGEPOSITION": 1,
"IMAGETYPEID": 1,
"THEMEIMAGE": "/images/theme/B221883767EAB04F36C863EA182349AA_0.jpg",
"PAIRVALUE": 1538057191,
"ISAPPROVED": 1,
"SERVERFILENAME": "B221883767EAB04F36C863EA182349AA_0.jpg",
"desktopMemberImage": "https://www.signupgenius.com/images/theme/B221883767EAB04F36C863EA182349AA_0.jpg",
"IMAGEHEIGHT": 217,
"ID": 1519849,
"THEMEID": 18850,
"PAIREDIMAGEWIDTH": 600,
"isCustomImage": 0,
"PAIREDIMAGEFILENAME": "3AD40A1C9A78AE33FEF27B5C6ADB3A8D_0.jpg",
"stockThemeImage": "/images/theme/B221883767EAB04F36C863EA182349AA_0.jpg",
"mainImagePath": "",
"DISABLED": 0,
"PAIREDIMAGEID": 1519850,
"mobileMemberImage": "https://www.signupgenius.com/images/theme/B221883767EAB04F36C863EA182349AA_0.jpg",
"IMAGECROPCOORDS": [0.0, 0.0, 325.0, 217.0, 325.0, 217.0],
"IMAGEWIDTH": 325,
"IMAGECUSTOM": 0,
"IMAGETYPE": "Main",
"IMAGERATIO": 1.5,
"CLIENTFILENAME": "Autumn Fall Red Leaves",
"PAIREDIMAGEHEIGHT": 400
};
//Displays the MaskView. It's MaskViewController is at the base of this document.
$scope.displayMaskView = function(originalImageData, MaskViewTitle, imageKey, aspectRatio, coords) {
$scope.MaskOpen = true;
var confirmationWindow = $modal.open({
templateUrl: '/view/tools/prothemeMaskwindow.html?v1.6',
controller: MaskViewController,
resolve: {
originalImageData: function() {
return originalImageData;
},
MaskViewTitle: function() {
return MaskViewTitle;
},
aspectRatio: function() {
return aspectRatio;
},
coords: function() {
return coords;
}
}
});
confirmationWindow.result.then(function(result) {
$scope.MaskOpen = false; // Can spawn a new Mask window
if (result.success) {
$scope.createCoordinates(imageKey, result.coordinates, originalImageData);
}
});
};
$scope.getImageSize = function(key, url) {
var image = new Image();
image.src = url;
image.onload = function() {
/* fix for images that do not have images set */
$scope[key].IMAGEWIDTH = image.width;
$scope[key].IMAGEHEIGHT = image.height;
$scope.createCoordinates(key, $scope[key].IMAGECROPCOORDS);
}
}
// This method figures out the placement, and scale of the image inside its container / mask.
$scope.createCoordinates = function(imageKey, coordinates) {
//Vertical align value for Templates 1 and 2 -tb 2/15/17
try {
$scope.col2height = $('#col2id').height();
} catch (e) {
$scope.col2height = 350;
}
$scope[imageKey].coords = coordinates;
$scope[imageKey].containerwidth = $('#' + imageKey).width();
$scope[imageKey].containerheight = $('#' + imageKey).height();
$scope[imageKey].x1 = $scope[imageKey].coords[0];
$scope[imageKey].y1 = $scope[imageKey].coords[1];
$scope[imageKey].x2 = $scope[imageKey].coords[2];
$scope[imageKey].y2 = $scope[imageKey].coords[3];
$scope[imageKey].coordw = $scope[imageKey].coords[4];
$scope[imageKey].coordh = $scope[imageKey].coords[5];
//set coordinates
$scope[imageKey].width = $scope[imageKey].IMAGEWIDTH;
$scope[imageKey].height = $scope[imageKey].IMAGEHEIGHT;
$scope[imageKey].left = ($scope[imageKey].containerwidth / $scope[imageKey].coordw) * $scope[imageKey].x1 * -1;
$scope[imageKey].top = ($scope[imageKey].containerheight / $scope[imageKey].coordh) * $scope[imageKey].y1 * -1;
$scope[imageKey].newwidth = ($scope[imageKey].containerwidth / $scope[imageKey].coordw * $scope[imageKey].width);
$scope[imageKey].newheight = ($scope[imageKey].containerheight / $scope[imageKey].coordh * $scope[imageKey].height);
}
$scope.setupCoords = function() {
if ($scope.image1 && $scope.image1.IMAGECROPCOORDS) {
if ($scope.image1.IMAGEHEIGHT < 2 || $scope.image1.IMAGEWIDTH < 2) {
/* if the image size is missing, load the image to get its size and continue there */
var imagesize = $scope.getImageSize('image1', $scope.image1.THEMEIMAGE)
} else {
$scope.createCoordinates('image1', $scope.image1.IMAGECROPCOORDS);
}
}
if ($scope.image2 && $scope.image2.IMAGECROPCOORDS) {
if ($scope.image2.IMAGEHEIGHT < 2 || $scope.image2.IMAGEWIDTH < 2) {
/* if the image size is missing, load the image to get its size and continue there */
var imagesize = $scope.getImageSize('image2', $scope.image2.THEMEIMAGE);
} else {
$scope.createCoordinates('image2', $scope.image2.IMAGECROPCOORDS);
}
}
if ($scope.image3 && $scope.image3.IMAGECROPCOORDS) {
if ($scope.image3.IMAGEHEIGHT < 2 || $scope.image3.IMAGEWIDTH < 2) {
/* if the image size is missing, load the image to get its size and continue there */
var imagesize = $scope.getImageSize('image3', $scope.image3.THEMEIMAGE);
} else {
$scope.createCoordinates('image3', $scope.image3.IMAGECROPCOORDS);
}
}
}
$scope.setupCoords();
//** Auto Rescales the crops when the window resizes **//
//
//This technique can be used for responsive headers
$(window).resize(function() {
$timeout(function() {
$scope.setupCoords();
}, 1);
});
// make fundlyurl available as an angular variable for template headers
$scope.fundlyurl = '';
};
//allows angular to work with script minifiers
desktopSignup.$inject = ['$scope', '$timeout'];
//register controller with AngularJS
angular.module('SUGApp').controller('desktopSignup', desktopSignup);
}());
</script>
<div ng-controller="desktopSignup" class="ng-scope">
<style>
.col-body-100 {
width: calc(100% - 350px);
/* This works for 325 images */
}
.col-image,
.mod-1-image-1 {
width: 325px;
max-width: 325px;
}
</style>
<style>
/* Image column - inline for this sign up only */
.col-image {
margin-top: 0;
margin-right: 25px;
float: left;
}
.col-body-100 {
float: left;
}
</style>
<style>
.col-body-100,
.col-image {
margin-bottom: 25px;
}
</style>
<div class="col-parent">
<div class="col-image">
<!-- We are not using image masks on templates 1-4 -->
<div id="image1">
<img class="mod-1-image-1 zoom-in" src="/images/theme/B221883767EAB04F36C863EA182349AA_0.jpg" alt="" border="0">
</div>
</div>
</div>
<div class="col-body-100 SUGmain" id="col2id">
<div class="SUGbold">BJC</div>
<h1 class="SUGHeaderText">BJC AWS Furniture Pick Up</h1>
<p style="text-align: inherit;">Please review the available slots below and click on the button to sign up. Thank you!</p>
<strong>Date: </strong>10/27/2022 (Thu.) <p></p>
<strong>Time:</strong> 7:00am - 5:00pm CDT <p></p>
<strong>Location: </strong> BJC, Commons, Parking Lot <p></p>
<table>
<tbody>
<tr>
<td><strong>Created by:</strong> </td>
<td valign="top">
<profile-pic
dataset="{"id":1,"value":"JP","type":"initials","resource":{"small":"","medium":"","large":"","text":"JP","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JP <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}" crossorigin="anonymous"
class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td> Jewell Parker</td>
<td>
<div style="padding-top:
2px;"> <a href="https://www.signupgenius.com/index.cfm?go=c.help&eid=0FCACFD8FEC8FE61&cs=09B5BAAE8FBB8B6D7B7A640F5BB39BCF&id=38462298&urlID=60B044BABAD2EA3F94-bjcaws1" class="SUGlink"><span class="glyphicon glyphicon-envelope" style="font-size:15px;"><span></span></span></a>
</div>
</td>
</tr>
</tbody>
</table>
<div class="row">
<div class="col-md-12">
<div style="margin-top:18px; padding-top:18px;border-top: 1px solid #FFFFFF;"> Already signed up? You can
<a href="https://www.signupgenius.com/index.cfm?go=s.EditHelp&urlid=60b044babad2ea3f94-bjcaws1" class="SUGlink">change your sign up</a>. </div>
</div>
</div>
</div>
<div class="clearfix"></div>
<br>
</div>
<script>
// header/footer updates for the menu dropdown not to overlay ads
(function() {
$(document).ready(function() {
$('.nav-dropdown-menu').on('show.bs.dropdown', function() {
$('#SUGContainer').addClass('open-horizontal');
});
$('.nav-dropdown-menu').on('hide.bs.dropdown', function() {
$('#SUGContainer').removeClass('open-horizontal');
});
});
})();
</script>
<script>
<!--
// This allows you to check the box using the entire button
function checkTheBox(siid) {
var thischeck = document.getElementById('checkbox' + siid);
if (thischeck.checked == true) {
thischeck.checked = false;
} else {
thischeck.checked = true;
}
};
// This resets the hidden field called 'siids' everytime you click a button
function checkLIST(siid) {
var cboxes = document.getElementsByName('siid');
var idlist = '';
var restrict = restictQuantity(siid);
if (!restrict) {
for (i = 0; i < cboxes.length; i++) {
if (cboxes[i].checked == true) {
var tempval = idlist;
if (tempval == '') {
var idlist = cboxes[i].value;
} else {
var idlist = tempval + ',' + cboxes[i].value;
}
}
}
document.getElementById('siids').value = idlist;
saveSelectedToStorage(idlist);
}
};
function restictQuantity(siid) {
var result = false;
return result;
};
/** temporary storage for selected idlist **/
function saveSelectedToStorage(idlist) {
if (typeof(Storage) !== "undefined") {
window.sessionStorage.siidList = idlist;
}
};
/** this is specific to selected slot IDs **/
window.onload = function() {
window.sessionStorage.removeItem("calView");
if (typeof(Storage) !== "undefined" && ('siidList' in window.sessionStorage) && window.sessionStorage.siidList.toString().length > 0) {
var arrSiid = window.sessionStorage.siidList.split(',');
for (var i in arrSiid) {
var thischeck = document.getElementById('checkbox' + arrSiid[i]);
if (!thischeck.checked) thischeck.checked = true;
}
}
};
/** this is specific to selected slot IDs **/
window.onbeforeunload = function(e) {
if (typeof(Storage) !== "undefined" && ('siidList' in window.sessionStorage) && window.sessionStorage.siidList.toString().length > 0) {
if (!('calView' in window.sessionStorage) || !window.sessionStorage.calView) {
window.sessionStorage.removeItem("siidList");
}
}
};
/** This is alternative event for mobile Safari and mobile Chrome **/
window.onpagehide = function(e) {
if (typeof(Storage) !== "undefined" && ('siidList' in window.sessionStorage) && window.sessionStorage.siidList.toString().length > 0) {
if (!('calView' in window.sessionStorage) || !window.sessionStorage.calView) {
window.sessionStorage.removeItem("siidList");
}
}
};
/** this is specific to selected slot IDs and calendar view **/
function setCalView() {
window.sessionStorage.calView = true;
};
// End
-->
</script>
<style>
.link_cursor {
cursor: pointer;
}
.popover-content {
color: #000 !important;
}
.disabled {
opacity: .5;
}
</style>
<script>
$(document).ready(function() {
// $('[data-toggle="tooltip"]').tooltip();
try {
$('[data-toggle="popover"]').popover();
} catch (e) {}
});
</script>
<input name="URLID" id="URLID" type="hidden" value="60B044BABAD2EA3F94-bjcaws1">
<input name="useMultiple" type="hidden" value="true">
<input name="siids" id="siids" type="hidden" value="">
<table width="100%" cellspacing="0" align="center" class="SUGtableouter">
<tbody>
<tr>
<td bgcolor="#F5CC29" height="35" class="SUGtableheader"> Available Slot <span class="SUGheaddate"></span>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">7:00 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"CT","type":"initials","resource":{"small":"","medium":"","large":"","text":"CT","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> CT <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Carla Tobin </span>
<br>
<div class="SUGMemberComment">Please cancel my previously selected 10:15 appt. I prefer this time slot. Thank you!!</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"MD","type":"initials","resource":{"small":"","medium":"","large":"","text":"MD","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> MD <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Maureen Deves </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"MR","type":"initials","resource":{"small":"","medium":"","large":"","text":"MR","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> MR <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Maegan Rathmann </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"SF","type":"initials","resource":{"small":"","medium":"","large":"","text":"SF","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> SF <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Sarah Frank </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"CW","type":"initials","resource":{"small":"","medium":"","large":"","text":"CW","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> CW <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Christopher Weymer </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">7:15 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"RK","type":"initials","resource":{"small":"","medium":"","large":"","text":"RK","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> RK <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Ray Katke </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"KE","type":"initials","resource":{"small":"","medium":"","large":"","text":"KE","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> KE <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Kathryn Emge </span>
<br>
<div class="SUGMemberComment">Please remove me from the 2 PM slot. Thank you</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"KC","type":"initials","resource":{"small":"","medium":"","large":"","text":"KC","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> KC <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Kathryn Collins </span>
<br>
<div class="SUGMemberComment">please take me off the 3:30p time!</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"AJ","type":"initials","resource":{"small":"","medium":"","large":"","text":"AJ","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> AJ <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Adam Johnson </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"SM","type":"initials","resource":{"small":"","medium":"","large":"","text":"SM","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> SM <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Stephen Muenster </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">7:30 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"RS","type":"initials","resource":{"small":"","medium":"","large":"","text":"RS","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> RS <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Raymond Sippel </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JS","type":"initials","resource":{"small":"","medium":"","large":"","text":"JS","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JS <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> James Schoeberlein </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"BT","type":"initials","resource":{"small":"","medium":"","large":"","text":"BT","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> BT <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Burak Taysi </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"DL","type":"initials","resource":{"small":"","medium":"","large":"","text":"DL","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> DL <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Danielle Landewe </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JR","type":"initials","resource":{"small":"","medium":"","large":"","text":"JR","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JR <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Jane Reames </span>
<br>
<div class="SUGMemberComment">chair/file cabinet</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">7:45 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">1 of 5 slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"MC","type":"initials","resource":{"small":"","medium":"","large":"","text":"MC","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> MC <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Melissa Collins </span>
<br>
<div class="SUGMemberComment">desk/tower/file cabinet/monitor</div>
</td>
</tr>
</tbody>
</table>
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1182270197);checkLIST(1182270197);">Sign Up </span>
<input name="siid" type="checkbox" value="1182270197" id="checkbox1182270197" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1182270197);">
</span>
</div>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">8:00 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">1 of 5 slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"LJ","type":"initials","resource":{"small":"","medium":"","large":"","text":"LJ","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> LJ <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Lauren Jones </span>
</td>
</tr>
</tbody>
</table>
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1182270317);checkLIST(1182270317);">Sign Up </span>
<input name="siid" type="checkbox" value="1182270317" id="checkbox1182270317" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1182270317);">
</span>
</div>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">8:15 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">1 of 5 slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"LM","type":"initials","resource":{"small":"","medium":"","large":"","text":"LM","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> LM <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Laura Michelfelder </span>
</td>
</tr>
</tbody>
</table>
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1182270564);checkLIST(1182270564);">Sign Up </span>
<input name="siid" type="checkbox" value="1182270564" id="checkbox1182270564" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1182270564);">
</span>
</div>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">8:30 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">1 of 5 slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"BL","type":"initials","resource":{"small":"","medium":"","large":"","text":"BL","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> BL <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Beth LeCorgne </span>
</td>
</tr>
</tbody>
</table>
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1182270598);checkLIST(1182270598);">Sign Up </span>
<input name="siid" type="checkbox" value="1182270598" id="checkbox1182270598" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1182270598);">
</span>
</div>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">8:45 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"AR","type":"initials","resource":{"small":"","medium":"","large":"","text":"AR","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> AR <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> allison raskin </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"LK","type":"initials","resource":{"small":"","medium":"","large":"","text":"LK","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> LK <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Linda Khan </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"AK","type":"initials","resource":{"small":"","medium":"","large":"","text":"AK","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> AK <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Andrea Kuthe </span>
<br>
<div class="SUGMemberComment">desk and monitor</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"LW","type":"initials","resource":{"small":"","medium":"","large":"","text":"LW","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> LW <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Laurie Wood </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"CH","type":"initials","resource":{"small":"","medium":"","large":"","text":"CH","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> CH <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Cathy Heaps </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">9:00 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"LE","type":"initials","resource":{"small":"","medium":"","large":"","text":"LE","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> LE <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Laura Ebel </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"EA","type":"initials","resource":{"small":"","medium":"","large":"","text":"EA","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> EA <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Elizabeth Albertin </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"LB","type":"initials","resource":{"small":"","medium":"","large":"","text":"LB","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> LB <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Lorrie Burrow-Reynolds </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"CC","type":"initials","resource":{"small":"","medium":"","large":"","text":"CC","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> CC <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Candice Carver </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"CM","type":"initials","resource":{"small":"","medium":"","large":"","text":"CM","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> CM <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Crystal Mitchell </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">9:15 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"LL","type":"initials","resource":{"small":"","medium":"","large":"","text":"LL","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> LL <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Lisa Love </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JB","type":"initials","resource":{"small":"","medium":"","large":"","text":"JB","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JB <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Julia Bennett </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"FP","type":"initials","resource":{"small":"","medium":"","large":"","text":"FP","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> FP <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Felice Price </span>
<br>
<div class="SUGMemberComment">Request Chair with Arms</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"AW","type":"initials","resource":{"small":"","medium":"","large":"","text":"AW","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> AW <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Ann M Wilhelm Wilhelm </span>
<br>
<div class="SUGMemberComment">monitor and armchair</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"RK","type":"initials","resource":{"small":"","medium":"","large":"","text":"RK","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> RK <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Robin Kidder </span>
<br>
<div class="SUGMemberComment">Request chair with Arms if possible</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">9:30 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JH","type":"initials","resource":{"small":"","medium":"","large":"","text":"JH","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JH <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Jessica Hamilton </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"PH","type":"initials","resource":{"small":"","medium":"","large":"","text":"PH","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> PH <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Pam Hampton </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JH","type":"initials","resource":{"small":"","medium":"","large":"","text":"JH","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JH <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Joyce Haney </span>
<br>
<div class="SUGMemberComment">Chair with arm if possible</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"CH","type":"initials","resource":{"small":"","medium":"","large":"","text":"CH","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> CH <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Carl Harris </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"KB","type":"initials","resource":{"small":"","medium":"","large":"","text":"KB","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> KB <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Kashif Badar </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">9:45 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"LO","type":"initials","resource":{"small":"","medium":"","large":"","text":"LO","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> LO <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> LATOYRIA OLIPHANT </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"SH","type":"initials","resource":{"small":"","medium":"","large":"","text":"SH","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> SH <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> sandra hemphill </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"BC","type":"initials","resource":{"small":"","medium":"","large":"","text":"BC","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> BC <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Barbara Courte </span>
<br>
<div class="SUGMemberComment">desk chair</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JV","type":"initials","resource":{"small":"","medium":"","large":"","text":"JV","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JV <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Jessica Vanderlan </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"CJ","type":"initials","resource":{"small":"","medium":"","large":"","text":"CJ","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> CJ <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Craig Johnson </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">10:00 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"TB","type":"initials","resource":{"small":"","medium":"","large":"","text":"TB","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> TB <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Tanya Behrens </span>
<br>
<div class="SUGMemberComment">54" top and Pedestal</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"AL","type":"initials","resource":{"small":"","medium":"","large":"","text":"AL","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> AL <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> A.P. Lewandowski </span>
<br>
<div class="SUGMemberComment">Bookcase, Task/desk chair, 24" monitor</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"MG","type":"initials","resource":{"small":"","medium":"","large":"","text":"MG","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> MG <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Michelle Giesegh </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"BE","type":"initials","resource":{"small":"","medium":"","large":"","text":"BE","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> BE <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Brandon Eldridge </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"CG","type":"initials","resource":{"small":"","medium":"","large":"","text":"CG","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> CG <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Carol Guehring </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">10:15 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"ML","type":"initials","resource":{"small":"","medium":"","large":"","text":"ML","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> ML <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Maureen Lynam </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"PG","type":"initials","resource":{"small":"","medium":"","large":"","text":"PG","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> PG <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Peter Geiger </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JD","type":"initials","resource":{"small":"","medium":"","large":"","text":"JD","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JD <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Jennifer Derda </span>
<br>
<div class="SUGMemberComment">Desk/Chair</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JA","type":"initials","resource":{"small":"","medium":"","large":"","text":"JA","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JA <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Julie Arnold </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"DT","type":"initials","resource":{"small":"","medium":"","large":"","text":"DT","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> DT <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Danielle Tillis </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">10:30 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"RL","type":"initials","resource":{"small":"","medium":"","large":"","text":"RL","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> RL <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Ryan Lovell </span>
<br>
<div class="SUGMemberComment">Task/Desk Chair</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"SG","type":"initials","resource":{"small":"","medium":"","large":"","text":"SG","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> SG <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Shrisha Gopal Gopal </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"EW","type":"initials","resource":{"small":"","medium":"","large":"","text":"EW","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> EW <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Erica Walton </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"KS","type":"initials","resource":{"small":"","medium":"","large":"","text":"KS","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> KS <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Kathi Shelton </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"SF","type":"initials","resource":{"small":"","medium":"","large":"","text":"SF","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> SF <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Sarah Frank Frank </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">10:45 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"CW","type":"initials","resource":{"small":"","medium":"","large":"","text":"CW","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> CW <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Christopher Williams </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JM","type":"initials","resource":{"small":"","medium":"","large":"","text":"JM","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JM <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Jill Maldeney </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"RR","type":"initials","resource":{"small":"","medium":"","large":"","text":"RR","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> RR <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> rebecca rakers </span>
<br>
<div class="SUGMemberComment">24" monitor</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"DH","type":"initials","resource":{"small":"","medium":"","large":"","text":"DH","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> DH <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Denise Hinton </span>
<br>
<div class="SUGMemberComment">Will need connection cord</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"SH","type":"initials","resource":{"small":"","medium":"","large":"","text":"SH","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> SH <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Sindi Haxhi </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">11:00 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"TC","type":"initials","resource":{"small":"","medium":"","large":"","text":"TC","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> TC <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Taina Charleston </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JS","type":"initials","resource":{"small":"","medium":"","large":"","text":"JS","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JS <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> John Sutton </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JC","type":"initials","resource":{"small":"","medium":"","large":"","text":"JC","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JC <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Johnny Che </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"KM","type":"initials","resource":{"small":"","medium":"","large":"","text":"KM","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> KM <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Kristi Martin </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"NS","type":"initials","resource":{"small":"","medium":"","large":"","text":"NS","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> NS <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Nancy Swiney </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">11:15 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"KJ","type":"initials","resource":{"small":"","medium":"","large":"","text":"KJ","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> KJ <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Katrina Joseph </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"TJ","type":"initials","resource":{"small":"","medium":"","large":"","text":"TJ","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> TJ <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Tiffiny Johnson </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"BF","type":"initials","resource":{"small":"","medium":"","large":"","text":"BF","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> BF <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Brendon Farra </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"EA","type":"initials","resource":{"small":"","medium":"","large":"","text":"EA","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> EA <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Elizabeth Arnold </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"RS","type":"initials","resource":{"small":"","medium":"","large":"","text":"RS","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> RS <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Robert Stukenbroeker </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">11:30 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"FB","type":"initials","resource":{"small":"","medium":"","large":"","text":"FB","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> FB <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Felicia Barnes </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"TG","type":"initials","resource":{"small":"","medium":"","large":"","text":"TG","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> TG <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> TIMBERLY GILL </span>
<br>
<div class="SUGMemberComment">chair, bookcase, 24" monitor</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"AC","type":"initials","resource":{"small":"","medium":"","large":"","text":"AC","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> AC <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Abby Castillo </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"EG","type":"initials","resource":{"small":"","medium":"","large":"","text":"EG","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> EG <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Elizabeth Greco </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"KL","type":"initials","resource":{"small":"","medium":"","large":"","text":"KL","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> KL <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Kari Laux </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">11:45 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"KC","type":"initials","resource":{"small":"","medium":"","large":"","text":"KC","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> KC <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Kaleo Cobb-Adams </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"ED","type":"initials","resource":{"small":"","medium":"","large":"","text":"ED","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> ED <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Elizabeth Dennis </span>
<br>
<div class="SUGMemberComment">Prefer chair with arms</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"CC","type":"initials","resource":{"small":"","medium":"","large":"","text":"CC","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> CC <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Carrie Christ Christ </span>
<br>
<div class="SUGMemberComment">618-477-0990</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"SL","type":"initials","resource":{"small":"","medium":"","large":"","text":"SL","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> SL <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Steve Lattina </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"AP","type":"initials","resource":{"small":"","medium":"","large":"","text":"AP","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> AP <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Angie Perkins </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">12:00 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"LP","type":"initials","resource":{"small":"","medium":"","large":"","text":"LP","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> LP <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Larry Pry </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JP","type":"initials","resource":{"small":"","medium":"","large":"","text":"JP","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JP <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Jen Patton </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JR","type":"initials","resource":{"small":"","medium":"","large":"","text":"JR","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JR <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Jennifer Rellergert Rellergert </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"SR","type":"initials","resource":{"small":"","medium":"","large":"","text":"SR","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> SR <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Stacie Rupp </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"ML","type":"initials","resource":{"small":"","medium":"","large":"","text":"ML","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> ML <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> mike lodholz </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">12:15 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"HS","type":"initials","resource":{"small":"","medium":"","large":"","text":"HS","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> HS <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Hunter Smith </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"LH","type":"initials","resource":{"small":"","medium":"","large":"","text":"LH","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> LH <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Lisa Holmes </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"RW","type":"initials","resource":{"small":"","medium":"","large":"","text":"RW","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> RW <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Rachel Williams </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"CL","type":"initials","resource":{"small":"","medium":"","large":"","text":"CL","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> CL <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Cherylynne Liggins </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"HW","type":"initials","resource":{"small":"","medium":"","large":"","text":"HW","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> HW <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Hai Wright </span>
<br>
<div class="SUGMemberComment">pedestal</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">12:30 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JR","type":"initials","resource":{"small":"","medium":"","large":"","text":"JR","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JR <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Janet Rhoden </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"MH","type":"initials","resource":{"small":"","medium":"","large":"","text":"MH","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> MH <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Meagan Haverman </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"MR","type":"initials","resource":{"small":"","medium":"","large":"","text":"MR","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> MR <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Michele Rector-Politte </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"ML","type":"initials","resource":{"small":"","medium":"","large":"","text":"ML","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> ML <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Michele Longland </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JR","type":"initials","resource":{"small":"","medium":"","large":"","text":"JR","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JR <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Jackie Royer </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">12:45 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"CT","type":"initials","resource":{"small":"","medium":"","large":"","text":"CT","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> CT <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Chanda Taylor </span>
<br>
<div class="SUGMemberComment">Prefer chair with arms but will take either</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JH","type":"initials","resource":{"small":"","medium":"","large":"","text":"JH","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JH <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Jazmine Hope-Joiner </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"KK","type":"initials","resource":{"small":"","medium":"","large":"","text":"KK","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> KK <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Kacie Kleissle </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"BC","type":"initials","resource":{"small":"","medium":"","large":"","text":"BC","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> BC <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Beth Camp </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"CA","type":"initials","resource":{"small":"","medium":"","large":"","text":"CA","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> CA <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Christina Adler </span>
<br>
<div class="SUGMemberComment">Pedestal, 24" Monitor</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">1:00 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"TD","type":"initials","resource":{"small":"","medium":"","large":"","text":"TD","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> TD <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Tracy Delrosario </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"KL","type":"initials","resource":{"small":"","medium":"","large":"","text":"KL","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> KL <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Karen Lee </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"AG","type":"initials","resource":{"small":"","medium":"","large":"","text":"AG","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> AG <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Alicia Gregory </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"SM","type":"initials","resource":{"small":"","medium":"","large":"","text":"SM","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> SM <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> sylvia (stuart) Manewith </span>
<br>
<div class="SUGMemberComment">desk chair and monitor</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"TH","type":"initials","resource":{"small":"","medium":"","large":"","text":"TH","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> TH <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Tiffany Hamilton </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">1:15 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"MB","type":"initials","resource":{"small":"","medium":"","large":"","text":"MB","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> MB <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Michelle Brusewitz </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"MY","type":"initials","resource":{"small":"","medium":"","large":"","text":"MY","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> MY <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Mei Yan </span>
<br>
<div class="SUGMemberComment">monitor, keyboard</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"CS","type":"initials","resource":{"small":"","medium":"","large":"","text":"CS","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> CS <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Cheryl Singsank </span>
<br>
<div class="SUGMemberComment">Picking up three items</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"ER","type":"initials","resource":{"small":"","medium":"","large":"","text":"ER","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> ER <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Erin Rodgers </span>
<br>
<div class="SUGMemberComment">Desk, bookshelf,monitor</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"MG","type":"initials","resource":{"small":"","medium":"","large":"","text":"MG","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> MG <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Michael Gicante </span>
<br>
<div class="SUGMemberComment">Monitor</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">1:30 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"BM","type":"initials","resource":{"small":"","medium":"","large":"","text":"BM","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> BM <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Ben Mann </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"CA","type":"initials","resource":{"small":"","medium":"","large":"","text":"CA","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> CA <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Cassandra Arroyo </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"RW","type":"initials","resource":{"small":"","medium":"","large":"","text":"RW","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> RW <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Rebecca Witherspoon </span>
<br>
<div class="SUGMemberComment">pedestal, 72" table, bookshelf, file cabinet</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"AJ","type":"initials","resource":{"small":"","medium":"","large":"","text":"AJ","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> AJ <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Amanda Jennings </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"NM","type":"initials","resource":{"small":"","medium":"","large":"","text":"NM","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> NM <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Natalie Macklin </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">1:45 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JW","type":"initials","resource":{"small":"","medium":"","large":"","text":"JW","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JW <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Jill Wright </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"LG","type":"initials","resource":{"small":"","medium":"","large":"","text":"LG","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> LG <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Laura Gidley-Feltz </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"TS","type":"initials","resource":{"small":"","medium":"","large":"","text":"TS","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> TS <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Tanyetta Stokley </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"RB","type":"initials","resource":{"small":"","medium":"","large":"","text":"RB","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> RB <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Renee Burkart </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JS","type":"initials","resource":{"small":"","medium":"","large":"","text":"JS","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JS <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> john stewart </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">2:00 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"HS","type":"initials","resource":{"small":"","medium":"","large":"","text":"HS","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> HS <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Heidi Schmitt </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JC","type":"initials","resource":{"small":"","medium":"","large":"","text":"JC","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JC <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Julie Cupples </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"TP","type":"initials","resource":{"small":"","medium":"","large":"","text":"TP","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> TP <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Tracy Parcel </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"AF","type":"initials","resource":{"small":"","medium":"","large":"","text":"AF","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> AF <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Anna Felch </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"LM","type":"initials","resource":{"small":"","medium":"","large":"","text":"LM","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> LM <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Laura Marshall </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">2:15 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"AM","type":"initials","resource":{"small":"","medium":"","large":"","text":"AM","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> AM <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Amanda Mohl </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"KJ","type":"initials","resource":{"small":"","medium":"","large":"","text":"KJ","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> KJ <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Kris Jorstad </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JP","type":"initials","resource":{"small":"","medium":"","large":"","text":"JP","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JP <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Jessica Porcelli </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JF","type":"initials","resource":{"small":"","medium":"","large":"","text":"JF","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JF <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> JUDY FLICK </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"RC","type":"initials","resource":{"small":"","medium":"","large":"","text":"RC","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> RC <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Robert Chapman </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">2:30 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JH","type":"initials","resource":{"small":"","medium":"","large":"","text":"JH","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JH <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Jane Hughes </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"DW","type":"initials","resource":{"small":"","medium":"","large":"","text":"DW","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> DW <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Dee White </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"RH","type":"initials","resource":{"small":"","medium":"","large":"","text":"RH","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> RH <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Rachel Harvey </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JR","type":"initials","resource":{"small":"","medium":"","large":"","text":"JR","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JR <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Jennifer Reynolds </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"AS","type":"initials","resource":{"small":"","medium":"","large":"","text":"AS","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> AS <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Anna Smith </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">2:45 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"TR","type":"initials","resource":{"small":"","medium":"","large":"","text":"TR","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> TR <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Tonya Ross Ross </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JB","type":"initials","resource":{"small":"","medium":"","large":"","text":"JB","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JB <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Jennifer Burnett </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"PS","type":"initials","resource":{"small":"","medium":"","large":"","text":"PS","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> PS <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> PEGGY SCHICKER SCHICKER </span>
<br>
<div class="SUGMemberComment">task chair</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"KS","type":"initials","resource":{"small":"","medium":"","large":"","text":"KS","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> KS <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> kylee stuart </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JH","type":"initials","resource":{"small":"","medium":"","large":"","text":"JH","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JH <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Jeri Hubbard </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">3:00 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"BW","type":"initials","resource":{"small":"","medium":"","large":"","text":"BW","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> BW <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Brittany Winand </span>
<br>
<div class="SUGMemberComment">(Harrington/Winand)</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"SD","type":"initials","resource":{"small":"","medium":"","large":"","text":"SD","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> SD <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Stephanie Douglas </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"SN","type":"initials","resource":{"small":"","medium":"","large":"","text":"SN","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> SN <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Sophia Nibbelin </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"SP","type":"initials","resource":{"small":"","medium":"","large":"","text":"SP","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> SP <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Sheri Phillips </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JS","type":"initials","resource":{"small":"","medium":"","large":"","text":"JS","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JS <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Jessica Stanford </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">3:15 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"KS","type":"initials","resource":{"small":"","medium":"","large":"","text":"KS","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> KS <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Kylee Stuart </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JF","type":"initials","resource":{"small":"","medium":"","large":"","text":"JF","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JF <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Jason Fields </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"ML","type":"initials","resource":{"small":"","medium":"","large":"","text":"ML","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> ML <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Megann Lyberger </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"AW","type":"initials","resource":{"small":"","medium":"","large":"","text":"AW","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> AW <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> ardella williams </span>
<br>
<div class="SUGMemberComment">• ped • task/desk chair • 24" monitor • keyboard • mouse</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JT","type":"initials","resource":{"small":"","medium":"","large":"","text":"JT","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JT <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> James Torrie </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">3:30 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"PL","type":"initials","resource":{"small":"","medium":"","large":"","text":"PL","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> PL <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Pamela Luster </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"MH","type":"initials","resource":{"small":"","medium":"","large":"","text":"MH","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> MH <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Maria Vonder Haar Haar </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"PC","type":"initials","resource":{"small":"","medium":"","large":"","text":"PC","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> PC <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Patricia Cook </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"SJ","type":"initials","resource":{"small":"","medium":"","large":"","text":"SJ","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> SJ <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Susan Johnson </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"CR","type":"initials","resource":{"small":"","medium":"","large":"","text":"CR","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> CR <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Corrie Rapa </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid;">
<p class="SUGbigbold hrow">3:45 (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #FAFCCF solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #FAFCCF solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">All slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"MB","type":"initials","resource":{"small":"","medium":"","large":"","text":"MB","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> MB <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Melis Bryant </span>
<br>
<div class="SUGMemberComment">Thank you!</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"JH","type":"initials","resource":{"small":"","medium":"","large":"","text":"JH","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> JH <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Josie Hoelting </span>
<br>
<div class="SUGMemberComment">Chair, keyboard, mouse</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"LF","type":"initials","resource":{"small":"","medium":"","large":"","text":"LF","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> LF <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Lynsha Fant </span>
<br>
<div class="SUGMemberComment">Pedestal, 54" top, task/desk chair</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"DG","type":"initials","resource":{"small":"","medium":"","large":"","text":"DG","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> DG <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Denise Glueck </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"KG","type":"initials","resource":{"small":"","medium":"","large":"","text":"KG","xlarge":""}}"
color="#FFF4C7" bgcolor="#44AD3C" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #44AD3C !important; color: #FFF4C7 !important;"> KG <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"75e9cfd189359025","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.10.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> KATIE GLASS </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
<!-- ngIf: objConfig.showright == true -->
<td data-ng-if="objConfig.showright == true" width="40" class="ng-scope"><img src="/images/spacer.gif" width="40" height="1"></td><!-- end ngIf: objConfig.showright == true -->
<!-- ngIf: objConfig.showright == true -->
<td data-ng-if="objConfig.showright == true" valign="top" width="300" data-ng-class="[{thickCol: !objConfig.showthin, thinCol: objConfig.showthin}]" class="ng-scope [object Object]">
<div data-ng-class="[{thickCol: !objConfig.showthin, thinCol: objConfig.showthin}]" style="display:inline-block;" class="[object Object]"></div>
<!-- ngIf: !objConfig.showsecondary -->
<!-- ngIf: objConfig.showsecondary -->
<div data-ng-if="objConfig.showsecondary" class="ng-scope">
<div id="sticky-anchor-ur"></div>
<div id="sticky-ur">
<div data-ng-controller="sideAdController" class="ng-scope">
<!-- ngIf: objConfig.showright && !objConfig.showthin -->
<div align="center" data-ng-if="objConfig.showright && !objConfig.showthin" id="signup_right_dynamicskyscraper" network="sortable" platform="desktop" category="signups" section="sheet" type="dynamicskyscraper"
themeid="18850" position="right" class="ng-isolate-scope"><span>
<div class="ad-tag" data-ad-name="Desktop_SignUps_Sheet_300x600_Right" data-ad-size="300x600" data-ad-refresh="time 30s" data-ad-processed="1" id="Desktop_SignUps_Sheet_300x600_Right_0" style="min-height: 600px;"></div>
<script type="text/javascript">
(deployads = window.deployads || []).push({});
</script>
</span></div><!-- end ngIf: objConfig.showright && !objConfig.showthin -->
<!-- ngIf: objConfig.showright && objConfig.showthin -->
</div>
<!-- ngIf: objConfig.shownoadlink && objConfig.showsecondary -->
</div>
<div data-ng-style="{ 'height': objConfig.adspacing }" style="height: 1400px;"></div>
<div id="sticky-bottom-ur"></div>
</div><!-- end ngIf: objConfig.showsecondary -->
<!-- ngIf: objConfig.showsecondary -->
<div data-ng-if="objConfig.showsecondary" class="ng-scope">
<div id="sticky-anchor-lr"></div>
<div id="sticky-lr">
<div data-ng-controller="sideAdController" class="ng-scope">
<!-- ngIf: objConfig.showright && !objConfig.showthin -->
<div align="center" data-ng-if="objConfig.showright && !objConfig.showthin" id="signup_right_secondary_dynamicskyscraper" network="sortable" platform="desktop" category="signups" section="sheet" type="dynamicskyscraper"
themeid="18850" position="right" secondary="true" class="ng-isolate-scope"><span>
<div class="ad-tag" data-ad-name="Desktop_SignUps_Sheet_300x600_Right_Secondary" data-ad-size="300x600" data-ad-refresh="time 30s" data-ad-processed="1" id="Desktop_SignUps_Sheet_300x600_Right_Secondary_0"
style="min-height: 600px;"></div>
<script type="text/javascript">
(deployads = window.deployads || []).push({});
</script>
</span></div><!-- end ngIf: objConfig.showright && !objConfig.showthin -->
<!-- ngIf: objConfig.showright && objConfig.showthin -->
</div>
</div>
<div id="sticky-bottom-lr"></div>
</div><!-- end ngIf: objConfig.showsecondary -->
</td><!-- end ngIf: objConfig.showright == true -->
</tr>
</tbody>
</table>
<div id="sticky-bottom"></div>
<span class="spacer"></span>
</div>
<!-- lazy load bottom ad -->
<div id="botSegmentContainerId" class="row ng-scope" align="center" data-ng-controller="lazyBottomSegmentController" style="z-index:9000">
<div class="col-xs-12">
<!-- ngIf: showFooterAd -->
</div>
</div>
</form>
Text Content
WE VALUE YOUR PRIVACY We and our partners store and/or access information on a device, such as cookies and process personal data, such as unique identifiers and standard information sent by a device for personalised ads and content, ad and content measurement, and audience insights, as well as to develop and improve products. With your permission we and our partners may use precise geolocation data and identification through device scanning. You may click to consent to our and our partners’ processing as described above. Alternatively you may access more detailed information and change your preferences before consenting or to refuse consenting. Please note that some processing of your personal data may not require your consent, but you have a right to object to such processing. Your preferences will apply to this website only. You can change your preferences at any time by returning to this site or visit our privacy policy. MORE OPTIONSAGREE We value your privacy. We use cookies and other technologies to keep the site reliable and secure, tailor your experience, measure site performance and present relevant offers and advertisements, as described in our Privacy Policy. Got it! Toggle navigation * Features * Pricing * More * Resources & Tips * Blog * Collect Money * Enterprise * Help * Log In * Create a Sign Up BJC BJC AWS FURNITURE PICK UP Please review the available slots below and click on the button to sign up. Thank you! Date: 10/27/2022 (Thu.) Time: 7:00am - 5:00pm CDT Location: BJC, Commons, Parking Lot Created by: JP Jewell Parker Already signed up? You can change your sign up. Available Slot 7:00 (5) All slots filled CT Carla Tobin Please cancel my previously selected 10:15 appt. I prefer this time slot. Thank you!! MD Maureen Deves MR Maegan Rathmann SF Sarah Frank CW Christopher Weymer 7:15 (5) All slots filled RK Ray Katke KE Kathryn Emge Please remove me from the 2 PM slot. Thank you KC Kathryn Collins please take me off the 3:30p time! AJ Adam Johnson SM Stephen Muenster 7:30 (5) All slots filled RS Raymond Sippel JS James Schoeberlein BT Burak Taysi DL Danielle Landewe JR Jane Reames chair/file cabinet 7:45 (5) 1 of 5 slots filled MC Melissa Collins desk/tower/file cabinet/monitor Sign Up 8:00 (5) 1 of 5 slots filled LJ Lauren Jones Sign Up 8:15 (5) 1 of 5 slots filled LM Laura Michelfelder Sign Up 8:30 (5) 1 of 5 slots filled BL Beth LeCorgne Sign Up 8:45 (5) All slots filled AR allison raskin LK Linda Khan AK Andrea Kuthe desk and monitor LW Laurie Wood CH Cathy Heaps 9:00 (5) All slots filled LE Laura Ebel EA Elizabeth Albertin LB Lorrie Burrow-Reynolds CC Candice Carver CM Crystal Mitchell 9:15 (5) All slots filled LL Lisa Love JB Julia Bennett FP Felice Price Request Chair with Arms AW Ann M Wilhelm Wilhelm monitor and armchair RK Robin Kidder Request chair with Arms if possible 9:30 (5) All slots filled JH Jessica Hamilton PH Pam Hampton JH Joyce Haney Chair with arm if possible CH Carl Harris KB Kashif Badar 9:45 (5) All slots filled LO LATOYRIA OLIPHANT SH sandra hemphill BC Barbara Courte desk chair JV Jessica Vanderlan CJ Craig Johnson 10:00 (5) All slots filled TB Tanya Behrens 54" top and Pedestal AL A.P. Lewandowski Bookcase, Task/desk chair, 24" monitor MG Michelle Giesegh BE Brandon Eldridge CG Carol Guehring 10:15 (5) All slots filled ML Maureen Lynam PG Peter Geiger JD Jennifer Derda Desk/Chair JA Julie Arnold DT Danielle Tillis 10:30 (5) All slots filled RL Ryan Lovell Task/Desk Chair SG Shrisha Gopal Gopal EW Erica Walton KS Kathi Shelton SF Sarah Frank Frank 10:45 (5) All slots filled CW Christopher Williams JM Jill Maldeney RR rebecca rakers 24" monitor DH Denise Hinton Will need connection cord SH Sindi Haxhi 11:00 (5) All slots filled TC Taina Charleston JS John Sutton JC Johnny Che KM Kristi Martin NS Nancy Swiney 11:15 (5) All slots filled KJ Katrina Joseph TJ Tiffiny Johnson BF Brendon Farra EA Elizabeth Arnold RS Robert Stukenbroeker 11:30 (5) All slots filled FB Felicia Barnes TG TIMBERLY GILL chair, bookcase, 24" monitor AC Abby Castillo EG Elizabeth Greco KL Kari Laux 11:45 (5) All slots filled KC Kaleo Cobb-Adams ED Elizabeth Dennis Prefer chair with arms CC Carrie Christ Christ 618-477-0990 SL Steve Lattina AP Angie Perkins 12:00 (5) All slots filled LP Larry Pry JP Jen Patton JR Jennifer Rellergert Rellergert SR Stacie Rupp ML mike lodholz 12:15 (5) All slots filled HS Hunter Smith LH Lisa Holmes RW Rachel Williams CL Cherylynne Liggins HW Hai Wright pedestal 12:30 (5) All slots filled JR Janet Rhoden MH Meagan Haverman MR Michele Rector-Politte ML Michele Longland JR Jackie Royer 12:45 (5) All slots filled CT Chanda Taylor Prefer chair with arms but will take either JH Jazmine Hope-Joiner KK Kacie Kleissle BC Beth Camp CA Christina Adler Pedestal, 24" Monitor 1:00 (5) All slots filled TD Tracy Delrosario KL Karen Lee AG Alicia Gregory SM sylvia (stuart) Manewith desk chair and monitor TH Tiffany Hamilton 1:15 (5) All slots filled MB Michelle Brusewitz MY Mei Yan monitor, keyboard CS Cheryl Singsank Picking up three items ER Erin Rodgers Desk, bookshelf,monitor MG Michael Gicante Monitor 1:30 (5) All slots filled BM Ben Mann CA Cassandra Arroyo RW Rebecca Witherspoon pedestal, 72" table, bookshelf, file cabinet AJ Amanda Jennings NM Natalie Macklin 1:45 (5) All slots filled JW Jill Wright LG Laura Gidley-Feltz TS Tanyetta Stokley RB Renee Burkart JS john stewart 2:00 (5) All slots filled HS Heidi Schmitt JC Julie Cupples TP Tracy Parcel AF Anna Felch LM Laura Marshall 2:15 (5) All slots filled AM Amanda Mohl KJ Kris Jorstad JP Jessica Porcelli JF JUDY FLICK RC Robert Chapman 2:30 (5) All slots filled JH Jane Hughes DW Dee White RH Rachel Harvey JR Jennifer Reynolds AS Anna Smith 2:45 (5) All slots filled TR Tonya Ross Ross JB Jennifer Burnett PS PEGGY SCHICKER SCHICKER task chair KS kylee stuart JH Jeri Hubbard 3:00 (5) All slots filled BW Brittany Winand (Harrington/Winand) SD Stephanie Douglas SN Sophia Nibbelin SP Sheri Phillips JS Jessica Stanford 3:15 (5) All slots filled KS Kylee Stuart JF Jason Fields ML Megann Lyberger AW ardella williams • ped • task/desk chair • 24" monitor • keyboard • mouse JT James Torrie 3:30 (5) All slots filled PL Pamela Luster MH Maria Vonder Haar Haar PC Patricia Cook SJ Susan Johnson CR Corrie Rapa 3:45 (5) All slots filled MB Melis Bryant Thank you! JH Josie Hoelting Chair, keyboard, mouse LF Lynsha Fant Pedestal, 54" top, task/desk chair DG Denise Glueck KG KATIE GLASS ©2022 SignUpGenius. All Rights Reserved. Privacy Policy | Terms of Service | Do Not Sell My Personal Information