<!DOCTYPE html>
<html class='v2 list-page' dir='ltr' itemscope='' itemtype='http://schema.org/Blog' lang='en' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<head>
<link href='https://www.blogger.com/static/v1/widgets/335934321-css_bundle_v2.css' rel='stylesheet' type='text/css'/>
<title>
Debug Project
</title>
<meta content='width=device-width, height=device-height, minimum-scale=1.0, initial-scale=1.0, user-scalable=0' name='viewport'/>
<meta content='IE=Edge' http-equiv='X-UA-Compatible'/>
<meta content='Debug Project' property='og:title'/>
<meta content='en_US' property='og:locale'/>
<meta content='https://blog.debug.com/' property='og:url'/>
<meta content='Debug Project' property='og:site_name'/>
<!-- Twitter Card properties -->
<meta content='Debug Project' property='og:title'/>
<meta content='summary' name='twitter:card'/>
<link href='https://fonts.googleapis.com/css?family=Roboto:400italic,400,500,500italic,700,700italic' rel='stylesheet' type='text/css'/>
<link href='https://fonts.googleapis.com/icon?family=Material+Icons' rel='stylesheet'/>
<link href='https://fonts.googleapis.com/css?family=Karla:400,400i,700,700i|Work+Sans' rel='stylesheet'/>
<link href='https://fonts.googleapis.com' rel='preconnect'/>
<link crossorigin='' href='https://fonts.gstatic.com' rel='preconnect'/>
<link as='style' href='//fonts.googleapis.com/css2?family=Product+Sans&family=Google+Sans+Display:ital@0;1&family=Google+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Google+Sans+Text:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap' rel='preload'/>
<link href='//fonts.googleapis.com/css2?family=Product+Sans&family=Google+Sans+Display:ital@0;1&family=Google+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Google+Sans+Text:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap' rel='stylesheet'/>
<link charset='utf-8' href='https://debug.com/css/glue-footer.min.css' rel='stylesheet'/>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js' type='text/javascript'></script>
<script src='https://apis.google.com/js/platform.js'></script>
<!-- End -->
<script type='text/javascript'>
      //<![CDATA[
      var BreakpointHandler = function() {
        this.initted = false;
        this.isHomePage = false;
        this.isMobile = false;
      };
      BreakpointHandler.prototype.finalizeSummary = function(summaryHtml, lastNode) {
        // Use $.trim for IE8 compatibility
        summaryHtml = $.trim(summaryHtml).replace(/(<br>|\s)+$/,'');
        if (lastNode.nodeType == 3) {
          var lastChar = summaryHtml.slice(-1);
          if (!lastChar.match(/[.”"?]/)) {
            if (!lastChar.match(/[A-Za-z]/)) {
              summaryHtml = summaryHtml.slice(0, -1);
            }
            summaryHtml += ' ...';
          }
        } else if (lastNode.nodeType == 1 && (lastNode.nodeName == 'I' || lastNode.nodeName == 'A')) {
          summaryHtml += ' ...';
        }
        return summaryHtml;
      };
      BreakpointHandler.prototype.generateSummaryFromContent = function(content, numWords) {
        var seenWords = 0;
        var summaryHtml = '';
        for (var i=0; i < content.childNodes.length; i++) {
          var node = content.childNodes[i];
          var nodeText;
          if (node.nodeType == 1) {
            if (node.hasAttribute('data-about-pullquote')) {
              continue;
            }
            nodeText = node.textContent;
            if (nodeText === undefined) {
              // innerText for IE8
              nodeText = node.innerText;
            }
            if (node.nodeName == 'DIV' || node.nodeName == 'B') {
              // Don't end early if we haven't seen enough words.
              if (seenWords < 10) {
                continue;
              }
              if (i > 0) {
                summaryHtml = this.finalizeSummary(summaryHtml, content.childNodes[i-1]);
              }
              break;
            }
            summaryHtml += node.outerHTML;
          } else if (node.nodeType == 3) {
            nodeText = node.nodeValue;
            summaryHtml += nodeText + ' ';
          }
          var words = nodeText.match(/\S+\s*/g);
          if (!words) {
            continue;
          }
          var remain = numWords - seenWords;
          if (words.length >= remain) {
            summaryHtml = this.finalizeSummary(summaryHtml, node);
            break;
          }
          seenWords += words.length;
        }
        return summaryHtml;
      };
      BreakpointHandler.prototype.detect = function() {
        var match,
            pl     = /\+/g,
            search = /([^&=]+)=?([^&]*)/g,
            decode = function (s) { return decodeURIComponent(s.replace(pl, " ")); },
            query  = window.location.search.substring(1);
        var urlParams = {};
        while (match = search.exec(query))
          urlParams[decode(match[1])] = decode(match[2]);
        this.isListPage = $('html').hasClass('list-page');
        this.isMobile = urlParams['m'] === '1';
        this.isHomePage = window.location.pathname == '/';
      };
      BreakpointHandler.prototype.initContent = function() {
        var self = this;
        $('.post').each(function(index) {
          var body = $(this).children('.post-body')[0];
          var content = $(body).children('.post-content')[0];
          $(content).addClass('post-original');
          var data = $(content).children('script').html();
          data = self.rewriteForSSL(data);
          // If exists, extract specified editor's preview.
          var match = data.match(/([\s\S]+?)<div data-is-preview.+?>([\s\S]+)<\/div>/m);
          if (match) {
            data = match[1];
          }
          // Prevent big images from loading when they aren't needed.
          // This must be done as a pre-injection step, since image loading can't be
          // canceled once embedded into the DOM.
          if (self.isListPage && self.isMobile) {
            data = data.replace(/<(img|iframe) .+?>/g, '');
          }
          // Insert template to be rendered as nodes.
          content.innerHTML = data;
          if (self.isListPage) {
            var summary = document.createElement('div');
            $(summary).addClass('post-content');
            $(summary).addClass('post-summary');
            body.insertBefore(summary, content);
            if (match) {
              // Use provided summary.
              summary.innerHTML = match[2];
            } else {
              // Generate a summary.
              // Summary generation relies on DOM, so it must occur after content is
              // inserted into the page.
              summary.innerHTML = self.generateSummaryFromContent(content, 30);
            }
            // Add read more link to summary.
            var titleAnchor = $(this).find('.title a')[0];
            var link = titleAnchor.cloneNode(true);
            link.innerHTML = 'Read More';
            $(link).addClass('read-more');
            summary.appendChild(link);
          }
        });
        // Firefox does not allow for proper styling of BR.
        if (navigator.userAgent.indexOf('Firefox') > -1) {
          $('.post-content br').replaceWith('<span class="space"></span>');
        }
        $('.loading').removeClass('loading');
      };
      BreakpointHandler.prototype.process = function() {
        if (!this.initted) {
          var makeInsecureImageRegex = function(hosts) {
            var whitelist = hosts.join('|').replace(/\./g,'\\.');
            // Normal image tags, plus input images (yes, this is possible!)
            return new RegExp('(<(img|input)[^>]+?src=("|\'))http:\/\/(' + whitelist +')', 'g');
          };
          this.sslImageRegex = makeInsecureImageRegex(BreakpointHandler.KNOWN_HTTPS_HOSTS);
          this.sslImageCurrentDomainRegex = makeInsecureImageRegex([window.location.hostname]);
          this.detect();
          this.initContent();
          this.initted = true;
        }
      };
      BreakpointHandler.KNOWN_HTTPS_HOSTS = [
        "www.google.org",
        "www.google.com",
        "services.google.com",
        "blogger.com",
        "draft.blogger.com",
        "www.blogger.com",
        "photos1.blogger.com",
        "photos2.blogger.com",
        "photos3.blogger.com",
        "blogblog.com",
        "img1.blogblog.com",
        "img2.blogblog.com",
        "www.blogblog.com",
        "www1.blogblog.com",
        "www2.blogblog.com",
        "0.bp.blogspot.com",
        "1.bp.blogspot.com",
        "2.bp.blogspot.com",
        "3.bp.blogspot.com",
        "4.bp.blogspot.com",
        "lh3.googleusercontent.com",
        "lh4.googleusercontent.com",
        "lh5.googleusercontent.com",
        "lh6.googleusercontent.com",
        "themes.googleusercontent.com",
      ];
        BreakpointHandler.prototype.rewriteForSSL = function(html) {
        // Handle HTTP -> HTTPS source replacement of images, movies, and other embedded content.
        return html.replace(this.sslImageRegex, '$1https://$4')
        .replace(this.sslImageCurrentDomainRegex, '$1//$4')
        .replace(/(<(embed|iframe)[^>]+?src=("|'))http:\/\/([^"']*?(youtube|picasaweb\.google)\.com)/g, '$1https://$4')
        // Slideshow SWF takes a image host, so we need to rewrite that parameter.
        .replace(/(<embed[^>]+?feed=http(?=[^s]))/g, '$1s');
        };
        $(document).ready(function() {
        var handler = new BreakpointHandler();
        handler.process();
        // Top-level navigation.
        $(".BlogArchive .tab").click(function(ev) {
        ev.preventDefault();
        $(this).parent().toggleClass('active');
        $(this).siblings().slideToggle(300);
        });
        $(".Label .tab").click(function(ev) {
        ev.preventDefault();
        $(this).parent().toggleClass('active');
        $(this).siblings().slideToggle(300);
        });
        // Blog archive year expansion.
        $('.BlogArchive .intervalToggle').click(function(ev) {
        ev.preventDefault();
        if ($(this).parent().hasClass('collapsed')) {
        $(this).parent().removeClass('collapsed');
        $(this).parent().addClass('expanded');
        } else {
        $(this).parent().removeClass('expanded');
        $(this).parent().addClass('collapsed');
        }
        });
        // Reverse order of months.
        $('.BlogArchive .intervalToggle + div').each(function(_, items) {
        var year = $(this);
        year.children().each(function(_, month) {
        year.prepend(month);
        });
        });
        // Set anchors to open in new tab.
        $('.post-content img').parent().each(function(_, node) {
        if (node.nodeName == 'A') {
        $(this).attr('target', '_blank');
        }
        });
        // Process search requests.
        $('.searchBox input').on("keypress", function(ev) {
        if (ev.which == 13) {
        window.location.href = 'https://www.google.com/search?q=site%3A' + window.location.hostname + '%20' + encodeURIComponent ($(this).val());
        }
        });
        });
        //]]>
    </script>
<style>
    html,
    body {
      margin: 0 auto;
      min-height: 100%;
      max-width: 1200px;
    }

    html {
      height: 100%;
    }

    body {
      background-color: #fafafa;
      display: flex;
      flex-direction: column;
      font-family: Karla, sans-serif;
      padding: 0 10px 50px;
    }

    h2, h3, h4 {
      color: #424242;
      font-weight: 700;
	  font-family: Karla, sans-serif;
    }

	h2.title {
	  font-size: 36px;
      line-height: 34px;
      letter-spacing: -0.065em;
      margin-top: 10px;
      margin-bottom: 10px;
  	}

    h3 {
	  font-size: 24px;
      line-height: 24px;
      letter-spacing: -0.02em;
      margin-top: 10px;
      margin-bottom: 10px;
  	}

	h4 {
	  font-size: 18px;
      line-height: 24px;
      letter-spacing: -0.02em;
      margin-top: 10px;
      margin-bottom: 10px;
    }

    a {
      color: #2878ff;
      text-decoration: none;
    }

    nav {
      align-items: center;
      display: flex;
      justify-content: space-between;
      height: 85px;
    }

    nav.responsive {
      height: inherit;
    }

    .logo-text {
      display: inline-block;
      font-size: 35px;
      font-weight: bold;
    }

    .logo-subtext {
      display: inline-block;
      font-size: 10px;
      padding-left: 4px;
      width: 60px;
    }

    .header {
      background-color: #fff;
      border-radius: 0 0 2px 2px;
      box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
      margin-bottom: 25px;
    }

    .header .img {
      max-height: 75px;
    }

    .header .links {
      display: inherit;
      font-size: 16px;
      letter-spacing: -.06em;
      line-height: 85px;
      list-style-type: none;
      overflow: hidden;
      margin-left: auto;
    }

    .header .links li {
      padding-right: 28px;
    }

    .header .links a {
      color: #2861ff;
    }

    .links .link {
      display: none;
    }

    .links.responsive {
      display: inline-table;
      width: 100%;
      padding: 0;
      margin: 0;
    }

    .links .link.responsive {
      display: block;
    }

    .links .link.responsive a {
      display: block;
      text-align: left;
      margin-left:28px;
    }

    .header .logo {
      position: absolute;
      top: 20px;
      padding-left: 24px;
      white-space: nowrap;
      line-height: 1;
    }

    .header .links .icon {
      cursor: pointer;
      display: block;
      text-align: right;
    }

    .header .links.responsive .icon {
      cursor: pointer;
      display: block;
      text-align: right;
    }

    .links .link:not(:last-child) {
      margin-right: 68px;
    }

    .links .link.responsive {
      margin-right: 0;
      border-style: solid;
      border-color: rgba(0,0,0,.3);
      border-width: 1px 0 0 0;
      white-space: nowrap;
    }
    .link-details {
      border-bottom: 2px solid transparent;
    }

    .link-details:hover {
      border-color: #2861ff;
    }
    .footer-links {
      border-bottom: 2px solid transparent;
    }

    .footer-links:hover {
      border-color: #a9a9a9;
    }

    #link-blog{
      border-bottom: 2px solid transparent;
      border-color: #2861ff;
    }

    .header .img-ham {
      width: 18px;
    }

    .cols-wrapper-content {
      background-color: #fff;
      box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
      min-height: 1000px;
    }

    .comments h4, #comment-post-message{
      font-size: 16px;
    }

    .footer .image-container svg path {
      fill: rgba(0, 0, 0, .4);
    }

    .footer .copyright {
      color: rgba(0, 0, 0, .6);
    }

    .footer .links {
      list-style-type: none;
      padding: 0;
      margin-bottom: 0;
    }

    .footer .links li {
      display: block;
      padding-top: 10px;
    }

    .footer .links a {
      color: rgba(0, 0, 0, .5);
      text-decoration: none;
    }

    @media screen and (min-width: 650px) {
      body {
        padding: 0 50px 50px;
      }

      nav {
        line-height: inherit;
      }

      .header .links.responsive .icon {
          display: block;
      }

      .header .links .icon {
          display: none;
      }

      .links .link {
        display: block;
      }

      .footer .links li {
        display: inline-block;
        padding-top: 0;
        padding-right: 10px;
      }
    }

    /*@media screen and (min-width: 1100px) {
      .footer {
        flex-direction: row;
      }

      .footer .links li {
        display: inline-block;
        padding-top: 0;
        padding-right: 10px;
      }
    }
   @media screen and (max-width: 767px) {
      .footer {
        display: inline;
      }
    }*/
    </style>
<style id='page-skin-1' type='text/css'><!--
/*
<Group description="Header Color" selector="header">
<Variable name="header.background.color" description="Header Background"
type="color" default="#ffffff"/>
</Group>
*/
.header-outer {
border-bottom: 1px solid #e0e0e0;
background: #ffffff;
}
html, .Label h2, #sidebar .rss a, .BlogArchive h2, .FollowByEmail h2.title, {
font-family: Roboto, sans-serif;
}
.plusfollowers h2.title, .featured .title {
font-family: Roboto, sans-serif;
}
.widget-item-control {
height: 100%;
}
.widget.Header, #header {
position: relative;
height: 100%;
width: 100%;
}
}
.widget.Header .header-logo1 {
float: left;
margin-right: 15px;
padding-right: 15px;
border-right: 1px solid #ddd;
}
.header-title h2 {
color: rgba(0,0,0,.54);
display: inline-block;
font-size: 38px;
font-family: Roboto, sans-serif;
font-weight: normal;
line-height: 45px;
vertical-align: top;
margin-left: 5px;
}
.header-inner {
background-repeat: no-repeat;
background-position: right 0px;
}
.post-author,
.byline-author {
font-size: 14px;
font-weight: normal;
color: #757575;
color: rgba(0,0,0,.54);
}
.post-content .img-border {
border: 1px solid rgb(235, 235, 235);
padding: 4px;
}
.header-title a {
text-decoration: none !important;
}
pre {
border: 1px solid #bbbbbb;
margin-top: 1em 0 0 0;
padding: 0.99em;
overflow-x: auto;
overflow-y: auto;
}
pre, code {
font-size: 9pt;
background-color: #fafafa;
line-height: 125%;
font-family: monospace;
}
pre, code {
color: #060;
font: 13px/1.54 "courier new",courier,monospace;
}
.header-left .header-logo1 {
width: 128px !important;
}
.header-desc {
line-height: 20px;
margin-top: 8px;
}
.fb-custom img, .twitter-custom img, .gplus-share img {
cursor: pointer;
opacity: 0.54;
}
.fb-custom img:hover, .twitter-custom img:hover, .gplus-share img:hover {
opacity: 0.87;
}
.fb-like {
width: 80px;
}
.post .share {
float: right;
}
#twitter-share{
border: #CCC solid 1px;
border-radius: 3px;
background-image: -webkit-linear-gradient(top,#ffffff,#dedede);
}
.twitter-follow {
background: url(//4.bp.blogspot.com/-8O7VcmcY32o/VSYkC2vUj7I/AAAAAAAAHeU/7mzo-JFgTgk/s1600/twitter-bird.png) no-repeat left center;
padding-left: 18px;
font: normal normal normal 11px/18px 'Helvetica Neue',Arial,sans-serif;
font-weight: bold;
text-shadow: 0 1px 0 rgba(255,255,255,.5);
cursor: pointer;
margin-bottom: 10px;
}
.twitter-fb {
padding-top: 2px;
}
.fb-follow-button  {
background: -webkit-linear-gradient(#4c69ba, #3b55a0);
background: -moz-linear-gradient(#4c69ba, #3b55a0);
background: linear-gradient(#4c69ba, #3b55a0);
border-radius: 2px;
height: 18px;
padding: 4px 0 0 3px;
width: 57px;
border: #4c69ba solid 1px;
}
.fb-follow-button a {
text-decoration: none !important;
text-shadow: 0 -1px 0 #354c8c;
text-align: center;
white-space: nowrap;
font-size: 11px;
color: white;
vertical-align: top;
}
.fb-follow-button a:visited {
color: white;
}
.fb-follow {
padding: 0px 5px 3px 0px;
width: 14px;
vertical-align: bottom;
}
.gplus-wrapper {
margin-top: 3px;
display: inline-block;
vertical-align: top;
}
.twitter-custom, .gplus-share {
margin-right: 12px;
}
.fb-follow-button{
margin: 10px auto;
}
.header-title {
margin-left: 60px;
}
.nav ul {
margin-right: 60px;
}
.learning-center {
list-style: none;
}
/** CUSTOM CODE **/

--></style>
<style id='template-skin-1' type='text/css'><!--
.header-outer {
clear: both;
}
.header-inner {
margin: auto;
padding: 0px;
}
.footer-outer {
background: #f5f5f5;
clear: both;
margin-top: 24px;
}
.footer-inner {
margin: auto;
padding: 0px;
}
.footer-inner-2 {
/* Account for right hand column elasticity. */
max-width: calc(100% - 248px);
}
.google-footer-outer {
clear: both;
}
.cols-wrapper, .google-footer-outer, .footer-inner {
max-width: 978px;
margin-left: auto;
margin-right: auto;
}
.header-inner {
width: 100%;
}
.cols-wrapper {
margin: auto;
clear: both;
margin-top: 100px;
margin-bottom: 60px;
overflow: hidden;
}
.col-main-wrapper {
float: left;
width: 100%;
}
.col-main {
margin-right: 278px;
max-width: 660px;
margin-top: 45px;
}
.col-right {
float: right;
width: 248px;
margin-left: -278px;
margin-top: 60px;
margin-bottom:30px;
}
/* Tweaks for layout mode. */
body#layout .google-footer-outer {
display: none;
}
body#layout .header-outer, body#layout .footer-outer {
background: none;
}
body#layout .header-inner {
height: initial;
}
body#layout .cols-wrapper {
margin-top: initial;
margin-bottom: initial;
}
--></style>
<!-- start all head -->
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<meta content='blogger' name='generator'/>
<link href='https://blog.debug.com/favicon.ico' rel='icon' type='image/x-icon'/>
<link href='https://blog.debug.com/' rel='canonical'/>
<link rel="alternate" type="application/atom+xml" title="Debug Project - Atom" href="https://blog.debug.com/feeds/posts/default" />
<link rel="alternate" type="application/rss+xml" title="Debug Project - RSS" href="https://blog.debug.com/feeds/posts/default?alt=rss" />
<link rel="service.post" type="application/atom+xml" title="Debug Project - Atom" href="https://www.blogger.com/feeds/5918582181149193944/posts/default" />
<!--Can't find substitution for tag [blog.ieCssRetrofitLinks]-->
<meta content='https://blog.debug.com/' property='og:url'/>
<meta content='Debug Project' property='og:title'/>
<meta content='' property='og:description'/>
<!-- end all head -->
<base target='_self'/>
<style>
      html {
        font-family: karla, sans-serif;
        -moz-osx-font-smoothing: grayscale;
        <!-- -webkit-font-smoothing: antialiased; -->
      }
      body {
        /* This ensures that the scroll bar is always present, which is needed */
        /* because content render happens after page load; otherwise the header */
        /* would "bounce" in-between states. */
        min-height: 150%;
      }
      a, a:visited {
        color: #2878ff;
        text-decoration: none;
      }
      a:focus, a:hover, a:active {
        text-decoration: none;
      }
      .Header {
        margin-top: 15px;
      }
      .Header h1 {
        font-size: 32px;
        font-weight: 300;
        line-height: 32px;
        height: 42px;
      }
      .header-inner .Header .titlewrapper {
        padding: 0;
        margin-top: 30px;
      }
      .header-inner .Header .descriptionwrapper {
        padding: 0;
        margin: 0;
      }
      .cols-wrapper {
        margin-top: 4px;
        margin-bottom:25px;
      }
     /* .cols-wrapper-content {
      background-color: #fff;
      box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
      }*/
      .footer-outer, .google-footer-outer {
        padding: 0 60px;
      }
      .header-outer {
        padding: 0 20px;
		position: fixed;
        width: 100%;
        top: 0px;
        height: 71px;
        z-index: 999;
		box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);
      }
      .header-inner {
        height: 100px;
        position: relative;
      }
      html, .header-inner a {
        color: #212121;
        color: rgba(0,0,0,.87);
      }
      .header-inner .google-logo {
        display: inline-block;
        background-size: contain;
        z-index: 1;
        height: 46px;
        overflow: hidden;
        margin-top: 4px;
      }
      .header-left {
        position: absolute;
        top: 35%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        margin-top: 12px;
        width: 100%;
      }
      .google-logo {
        margin-left: -4px;
      }
      .header-inner .google-logo img {
          height: 70px;
          margin-top: -14px
        }
      #google-footer {
        position: relative;
        font-size: 13px;
        list-style: none;
        text-align: right;
      }
      #google-footer a {
        color: #444;
      }
      #google-footer ul {
        margin: 0;
        padding: 0;
        height: 144px;
        line-height: 144px;
      }
      #google-footer ul li {
        display: inline;
      }
      #google-footer ul li:before {
        color: #999;
        content: "\00b7";
        font-weight: bold;
        margin: 5px;
      }
      #google-footer ul li:first-child:before {
        content: '';
      }
      #google-footer .google-logo-dark {
        left: 0;
        margin-top: -16px;
        position: absolute;
        top: 50%;
      }
      /** Sitemap links. **/
      .footer-inner-2 {
        font-size: 14px;
        padding-top: 42px;
        padding-bottom: 74px;
      }
      .footer-inner-2 .HTML h2 {
        color: #212121;
        color: rgba(0,0,0,.87);
        font-size: 14px;
        font-weight: 500;
        padding-left: 0;
        margin: 10px 0;
      }
      .footer-inner-2 .HTML ul {
        font-weight: normal;
        list-style: none;
        padding-left: 0;
      }
      .footer-inner-2 .HTML li {
        line-height: 24px;
        padding: 0;
      }
      .footer-inner-2 li a {
        color: rgba(65,132,243,.87);
      }
      /** Archive widget. **/
      .BlogArchive {
        font-size: 13px;
        font-weight: normal;
      }
      .BlogArchive .widget-content {
        display: none;
      }
      .BlogArchive h2, .Label h2 {
        color: #4184F3;
        text-decoration: none;
      }
      .BlogArchive .hierarchy li {
        display: inline-block;
      }
      /* Specificity needed here to override widget CSS defaults. */
      .BlogArchive #ArchiveList ul li, .BlogArchive #ArchiveList ul ul li {
        margin: 0;
        padding-left: 0;
        text-indent: 0;
      }
      .BlogArchive .intervalToggle {
        cursor: pointer;
      }
      .BlogArchive .expanded .intervalToggle .new-toggle {
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
      }
      .BlogArchive .new-toggle {
        float: right;
        padding-top: 3px;
        opacity: 0.87;
      }
      #ArchiveList {
        text-transform: uppercase;
      }
      #ArchiveList .expanded > ul:last-child {
        margin-bottom: 16px;
      }
      #ArchiveList .archivedate {
        width: 100%;
      }
      /* Months */
      .BlogArchive .items {
        max-width: 150px;
        margin-left: -4px;
      }
      .BlogArchive .expanded .items {
        margin-bottom: 10px;
        overflow: hidden;
      }
      .BlogArchive .items > ul {
        float: left;
        height: 32px;
      }
      .BlogArchive .items a {
        padding: 0 4px;
      }
      .Label {
        font-size: 13px;
        font-weight: normal;
      }
      .sidebar-icon {
        display: inline-block;
        width: 24px;
        height: 24px;
        vertical-align: middle;
        margin-right: 12px;
        margin-top: -1px
      }
      .Label a {
        margin-right: 4px;
      }
      .Label .widget-content {
        display: none;
      }
      .FollowByEmail {
        font-size: 13px;
        font-weight: normal;
      }
      .FollowByEmail h2 {
        background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAALCAYAAACZIGYHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAUBJREFUeNrMkSGLAlEUhb+ZB4JFi8mx2cz+ApvhRUGTcUCrNqNJDYIi+DO0GUwmQXDK2DSIoGgZcSaIjDrzwrK4ssvChj1w0733O+fdp+m6PozH4yQSCfb7Pa7r8pOi0SjJZBLP8zgej4gAIMvlMuPxmADIYrHger1+C6lUKmo+NJ/NZojb7SZDWiwWo1qtks1msW2bw+HwZdkwDHq9HvV6nel0SqvVYrvdIh6Ph3Qch+VyqRYLhQJSSjRNw7IsfN9XgGKxSLfbJZfL0e/3aTabrFYr7vc7IujLcOh8PqunrNdr0uk0pVKJVCpFJBJRgEajweVyod1uMxgM2O12BAGUgRbU8DV2JpOhVquRz+cRQii3+XxOp9NRN3jVR5LPOp1OjEYjlSL8hclkgmmabDabt4d+m+S30vkD/R/IU4ABAPTZgnZdmG/PAAAAAElFTkSuQmCC");
        background-repeat: no-repeat;
        background-position: 0 50%;
        text-indent: 30px;
      }
      .FollowByEmail .widget-content {
        display: none;
      }
      .searchBox input {
        border: 1px solid #eee;
        color: #212121;
        color: rgba(0,0,0,.87);
        font-size: 14px;
        padding: 8px 8px 8px 40px;
        width: 164px;
        font-family: Roboto, sans-serif;
        background: url("https://www.gstatic.com/images/icons/material/system/1x/search_grey600_24dp.png") 8px center no-repeat;
      }
      .searchBox ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
        color:    rgba(0,0,0,.54);
      }
      .searchBox :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
        color:    #000;
        opacity:  0.54;
      }
      .searchBox ::-moz-placeholder { /* Mozilla Firefox 19+ */
        color:    #000;
        opacity:  0.54;
      }
      .searchBox :-ms-input-placeholder { /* Internet Explorer 10-11 */
        color:    #757575;
      }
      .widget-item-control {
        margin-top: 0px;
      }
      .section {
        margin: 0;
        padding: 0;
      }
      #sidebar-top {
        border: 1px solid #eee;
      }
      #sidebar-top > div {
        margin: 16px 0;
      }
      .widget ul {
        line-height: 1.6;
      }
	  /* Navigation */
      .nav {
        position: absolute;
        top: 16px;
        right: 50px;
      }
      .nav ul {
        list-style: none;
      }
      .nav ul li {
        display: inline;
        margin-right: 10px;
      }
      /* Featured section*/
      .featured {
        background-color: #FAFAFA;
        padding: 36px 40px 56px 40px;
        margin: 62px 0;
      }
      .featured .feature-section {
		color: #E46841;
        font-weight: bold;
        font-size: 14px;
        margin-top: 0;
        margin-bottom: 36px;
	  }
      .featured h2 {
        font: Roboto, sans-serif;
        font-weight: normal;
        font-size: 24px;
        margin-bottom: 26px;
        line-height:0;
      }
      .featured .feature-desc {
        font-weight: normal;
        font-size: 17px;
        font: Roboto, sans-serif;
		line-height: 32px;
        margin-top: 0;
        margin-bottom: 0;
      }
      .featured .feature-desc a {
        text-decoration: underline;
        color: #000;
        font-weight: bold;
      }

      /*main post*/
      .post {
        margin-bottom:30px;
      }
      #main .post .title a, .featured .title {
        color: #424242;
        font-weight: bold;
        font-size: 26px;
		font-family: Karla, sans-serif;
        text-align: left;
        line-height: 1.3px;
        letter-spacing: -1.56px;
      }
      #main .post .title a:hover {
        text-decoration:none;
        color:#4184F3;
      }
      .message,  #main .post .post-header {
        margin: 0;
        padding: 0;
      }
      #main .post .post-header .caption, #main .post .post-header .labels-caption,  #main .post .post-footer .caption, #main .post .post-footer .labels-caption {
        color: #444;
        font-weight: 500;
      }
      #main .tr-caption-container td {
        text-align: left;
      }
      #main .post .tr-caption {
        color: #757575;
        color: rgba(0,0,0,.54);
        display: block;
        max-width: 560px;
        padding-bottom: 20px;
      }
      #main .post .tr-caption-container {
        line-height: 24px;
        margin: -1px 0 0 0 !important;
        padding: 4px 0;
        text-align: left;
      }
      #main .post .post-header .published{
        font-size:11px;
        font-weight:bold;
      }
      .post-header .publishdate {
        font-size: 17px;
        font-weight:normal;
        color: #757575;
        color: rgba(0,0,0,.54);
      }
      #main .post .post-footer{
        font-size:12px;
        padding-bottom: 21px;
      }
      .label-footer {
        margin-bottom: 12px;
        margin-top: 12px;
      }
      .comment-img {
        margin-right: 16px;
        opacity: 0.54;
        vertical-align: middle;
      }
      #main .post .post-header .published {
        margin-bottom: 40px;
        margin-top: -2px;
      }
      .post .post-content {
         color: #757575;
         font-size: 14px;
         margin: 25px 0 36px 0;
    	 line-height: 22px;
    	 letter-spacing: -.28px;
    	 font-family: Karla, sans-serif;
    	 text-align: left;
         font-weight: 400;
}
      .post-body .post-content ul, .post-body .post-content ol {
        margin: 16px 0;
        padding: 0 48px;
      }
      .post-summary {
        display: none;
      }
      /* Another old-style caption. */
      /*.post-content div i, .post-content div + i {
        font-size: 14px;
        font-style: normal;
        color: #757575;
        color: rgba(0,0,0,.54);
        display: block;
        line-height: 24px;
        margin-bottom: 16px;
        text-align: left;
      }*/
      /* Another old-style caption (with link) */
      .post-content a > i {
        color: #4184F3 !important;
      }
      /* Old-style captions for images. */
      .post-content .separator + div:not(.separator) {
        margin-top: -16px;
      }
      /* Capture section headers. */
      .post-content br + br + b, .post-content .space + .space + b, .post-content .separator + b {
        display: inline-block;
        margin-bottom: 8px;
        margin-top: 24px;
      }
      .post-content li {
        line-height: 32px;
      }
      /* Override all post images/videos to left align. */
      .post-content .separator, .post-content > div {
        text-align: left;
      }
      .post-content .separator > a, .post-content .separator > span {
        margin-left: 0 !important;
      }
      .post-content img {
        max-width: 100%;
        height: auto;
        width: auto;
      }
      .post-content .tr-caption-container img {
        margin-bottom: 12px;
      }
      .post-content iframe, .post-content embed {
        max-width: 100%;
      }
      .post-content .carousel-container {
        margin-bottom: 48px;
      }
      #main .post-content b {
        font-weight: 500;
      }
      /* These are the main paragraph spacing tweaks. */
      #main .post-content br {
        content: " ";
        display: block;
        padding: 4px;
      }
      .post-content .space {
        display: block;
        height: 8px;
      }
      .post-content iframe + .space, .post-content iframe + br {
        padding: 0 !important;
      }
      #main .post .jump-link {
        margin-bottom:10px;
      }
      .post-content img, .post-content iframe {
        margin: 30px 0 20px 0;
      }
      .post-content > img:first-child, .post-content > iframe:first-child {
        margin-top: 0;
      }
      .col-right .section {
        padding: 0 16px;
      }
      #aside {
        background:#fff;
        border:1px solid #eee;
        border-top: 0;
      }
      #aside .widget {
        margin:0;
      }
      #aside .widget h2, #ArchiveList .toggle + a.post-count-link {
        color: #212121;
        color: rgba(0,0,0,.87);
        font-weight: 400 !important;
        margin: 0;
      }
      #ArchiveList .toggle {
        float: right;
      }
      #ArchiveList .toggle .material-icons {
        padding-top: 4px;
      }
      #sidebar .tab {
        cursor: pointer;
      }
      #sidebar .tab .arrow {
        display: inline-block;
        float: right;
      }
      #sidebar .tab .icon {
        display: inline-block;
        vertical-align: top;
        height: 24px;
        width: 24px;
        margin-right: 13px;
        margin-left: -1px;
        margin-top: 1px;
        color: #757575;
        color: rgba(0,0,0,.54);
      }
      #sidebar .widget-content > :first-child {
        padding-top: 8px;
      }
      #sidebar .active .tab .arrow {
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
      }
      #sidebar .arrow {
        color: #757575;
        color: rgba(0,0,0,.54);
      }
      #sidebar .widget h2 {
        font-size: 14px;
        line-height: 24px;
        display: inline-block;
      }
      #sidebar .widget .BlogArchive {
        padding-bottom: 8px;
      }
      #sidebar .widget {
        border-bottom: 1px solid #eee;
        box-shadow: 0px 1px 0 white;
        margin-bottom: 0;
        padding: 14px 0;
        min-height: 20px;
      }
      #sidebar .widget:last-child {
        border-bottom: none;
        box-shadow: none;
        margin-bottom: 0;
      }
      #sidebar ul {
        margin: 0;
        padding: 0;
      }
      #sidebar ul li {
        list-style:none;
        padding:0;
      }
      #sidebar ul li a {
        line-height: 32px;
      }
      #sidebar .archive {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAYCAYAAADzoH0MAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAE1JREFUeNpiNDY23s9AAWBioBCwYBM8c+YMVsUmJibEGYBNMS5DaeMFfDYSZQA2v9I3FrB5AZeriI4FmnrBccCT8mhmGs1MwyAzAQQYAKEWG9zm9QFEAAAAAElFTkSuQmCC");
        height: 24px;
        line-height: 24px;
        padding-left: 30px;
      }
      #sidebar .labels {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAYAAAA7bUf6AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAUxJREFUeNpiNDY23s9AAMycOfM7UF05kHkZmzwTMkdSUhKrIcXFxZy3bt3qBjIN8RrS09PDsHnzZjCNDr58+cKQlpbGDjSoHcg1w2oIyAUODg5gARCNzUVIBrUCuVYYhjx//pzhwIEDYAEQDeJjA1CDWIAGNQK59jBxRuSABbkAlwHIgIeHh2HWrFn/1NTU2oDcvSgBS4wBSC5iArqoCsj1YGIgEyAZVMoEchqlBjEB/cZAiUHg2AEGznpKDAImxOeM////B4VLKtBvEUCngZ1ILKivr3/u6+ubBzJAGZQ9gC5aQoqLgAY8BhkAZL4BuQQkxgXE34A4BuiiZEIuAhrwEGhAEZD5DpzYoIaA2UAM4kQADUrHZRDUgAIg8wO2XAwzbQXQa5OweQ1owB10AyA6gS7BgX1u3ry5397eHow3bdo0EyjGi00tQIABANPgyAH1q1eaAAAAAElFTkSuQmCC");
        height: 20px;
        line-height: 20px;
        padding-left: 30px;
      }
      #sidebar .rss a {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAX5JREFUeNqsVDGSgkAQHL2rIiIikohIc/EBRkbwAIwuwgfwAXiAD9AHSI7kEkECRCb6AIyINDLx7K0aa6kT7uq0q7YYtnZ7umdnt7darXbr9Zpegeu61DNNc0dvwCcH4/GYJpMJnc9nOhwOVJbl/4hAAokMECZJQtvt9k+kH7qufyEYDAakqqqYxFdRFBqNRmTbNg2HQ0rTlK7XayvR0xqBdDqdkuM4dE/0ULhYLOh4PHYrknG5XGi/31MYhuL/nkwonM1mlGUZ1XXdrsiyLGEDhY7juJEZ1u5tIixDGdYhmYw+B7CAzPP5nDabjdgIAgCksMX1832/3drtdqPT6SQWapomiGEFNkDEdpDMMAzK81ys/7XYy+XyoQgq2WoURSIJ2iIIgp/WZCCTvFm2wgeAU31aI3Q2GhIDMeB53qPYPIcm5VrxXIOIOxsDMStjVawAc1VViRgN22lNBiuQN3GR+SY07hpOoStmFQAKXRRFY93bnpG+fONfedi+BRgAbkS8Fxp7QQIAAAAASUVORK5CYII=");
      }
      #sidebar .subscription a {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAALCAYAAACZIGYHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAUBJREFUeNrMkSGLAlEUhb+ZB4JFi8mx2cz+ApvhRUGTcUCrNqNJDYIi+DO0GUwmQXDK2DSIoGgZcSaIjDrzwrK4ssvChj1w0733O+fdp+m6PozH4yQSCfb7Pa7r8pOi0SjJZBLP8zgej4gAIMvlMuPxmADIYrHger1+C6lUKmo+NJ/NZojb7SZDWiwWo1qtks1msW2bw+HwZdkwDHq9HvV6nel0SqvVYrvdIh6Ph3Qch+VyqRYLhQJSSjRNw7IsfN9XgGKxSLfbJZfL0e/3aTabrFYr7vc7IujLcOh8PqunrNdr0uk0pVKJVCpFJBJRgEajweVyod1uMxgM2O12BAGUgRbU8DV2JpOhVquRz+cRQii3+XxOp9NRN3jVR5LPOp1OjEYjlSL8hclkgmmabDabt4d+m+S30vkD/R/IU4ABAPTZgnZdmG/PAAAAAElFTkSuQmCC");
      }
      #sidebar-bottom {
        background: #f5f5f5;
        border-top:1px solid #eee;
      }
      #sidebar-bottom .widget {
        border-bottom: 1px solid #e0e0e0;
        padding: 15px 0;
        text-align: center;
      }
      #sidebar-bottom > div:last-child {
        border-bottom: 0;
      }
      #sidebar-bottom .text {
        line-height: 20px;
      }
      /* Home, forward, and backward pagination. */
      .blog-pager {
        border-top : 1px #e0e0e0 solid;
        padding-top: 10px;
        margin-top: 15px;
        text-align: right !important;
      }
      #blog-pager {
        margin-botom: 0;
        margin-top: -14px;
        padding: 16px 0 0 0;
      }
      #blog-pager a {
        display: inline-block;
      }
      .blog-pager i.disabled {
        opacity: 0.2 !important;
      }
      .blog-pager i {
        color: black;
        margin-left: 16px;
        opacity: 0.54;
      }
      .blog-pager i:hover, .blog-pager i:active {
        opacity: 0.87;
      }
      #blog-pager-older-link, #blog-pager-newer-link {
        float: none;
      }
      .gplus-profile {
        background-color: #fafafa;
        border: 1px solid #eee;
        overflow: hidden;
        width: 212px;
      }
      .gplus-profile-inner {
        margin-left: -1px;
        margin-top: -1px;
      }
      /* Sidebar follow buttons. */
      .followgooglewrapper {
        padding: 12px 0 0 0;
      }
      .loading {
        visibility: hidden;
      }
      .detail-page .post-footer .cmt_iframe_holder {
        padding-top: 40px !important;
      }
      /** Desktop **/

      @media (max-width: 1200px) {
        .header-outer {
          height: 100px;
        }
        .nav {
          top: 60px;
          left: 40px;
        }
      }

      @media (max-width: 900px) {
        .col-right {
          display: none;
        }
        .col-main {
          margin-right: 0;
          min-width: initial;
        }
        .footer-outer {
          display: none;
        }
        .cols-wrapper {
          min-width: initial;
        }
        .google-footer-outer {
          background-color: #f5f5f5;
        }
        #main .post .title a, .featured .title {
          line-height: 1.3px;
        }
      }

      /** Custom for nav**/
      @media (max-width: 820px) {
        .header-outer {
          height: 71px;
        }
        .nav {
          display: none;
        }
      }
       @media (max-width: 1100px) {
        .col-right {
          display: none;
        }
       .col-main {
        margin: 40px auto;
       max-width: 90%;
      }
      }
      /** Tablet **/
      @media (max-width: 712px) {
        .header-outer, .cols-wrapper, .footer-outer, .google-footer-outer {
          padding: 0 40px;
        }
       .footer{
         display:inline;
        }
      }
      /* An extra breakpoint accommodating for long blog titles. */
      @media (max-width: 600px) {
        .header-left {
          height: 100%;
          top: inherit;
          margin-top: 0;
          -webkit-transform: initial;
          transform: initial;
        }
        .header-title {
          margin-top: 18px;
        }
        .header-inner .google-logo {
          height: 40px;
          margin-top: 3px;
        }
        .header-inner .google-logo img {
          height: 60px;
        }
        .header-title {
          margin-left: 0;
        }
        .header-title h2 {
          font-size: 24px;
          line-height: 40px;
        }
        .header-desc {
          bottom: 24px;
          position: absolute;
        }
      }
      /** Mobile/small desktop window; also landscape. **/
      @media (max-width: 480px), (max-height: 480px) {
        .header-outer, .cols-wrapper, .footer-outer, .google-footer-outer {
          padding: 0 16px;
        }
        .cols-wrapper {
          margin-top: 0;
        }
        .featured {
          margin-top: 100px;
        }
        /*.post-header .publishdate, .post .post-content {
          font-size: 16px;
        }
        .post .post-content {
          line-height: 28px;
          margin-bottom: 30px;
        }*/
        .post {
          margin-top: 30px;
        }
        .byline-author {
          display: block;
          font-size: 12px;
          line-height: 24px;
          margin-top: 6px;
        }
        #main .post .post-header {
          padding-bottom: 12px;
        }
        #main .post .post-header .published {
          margin-bottom: -8px;
          margin-top: 3px;
        }
        .post .read-more {
          display: block;
          margin-top: 14px;
        }
        .post .tr-caption {
          font-size: 12px;
        }
        .post-content iframe {
          /* iframe won't keep aspect ratio when scaled down. */
          max-height: 240px;
        }
        .post-content .separator img, .post-content .tr-caption-container img, .post-content iframe {
          margin-left: -16px;
          max-width: inherit;
          width: calc(100% + 32px);
        }
        .post-content table, .post-content td {
          width: 100%;
        }
        #blog-pager {
          margin: 0;
          padding: 16px 0;
        }
        /** List page tweaks. **/
        .list-page .post-original {
          display: none;
        }
        .list-page .post-summary {
          display: block;
        }
        .list-page .comment-container {
          display: none;
        }
        .list-page #blog-pager {
          padding-top: 0;
          border: 0;
          margin-top: -8px;
        }
        .list-page .label-footer {
          display: none;
        }
        .list-page #main .post .post-footer {
          border-bottom: 1px solid #eee;
          margin: -16px 0 0 0;
          padding: 0 0 20px 0;
        }
        .list-page .post .share {
          display: none;
        }
        /** Detail page tweaks. **/
        .detail-page .post-footer .cmt_iframe_holder {
          padding-top: 32px !important;
        }
        .detail-page .label-footer {
          margin-bottom: 0;
        }
        .detail-page #main .post .post-footer {
          padding-bottom: 0;
        }
        .detail-page #comments {
          display: none;
        }
      }
      [data-about-pullquote], [data-is-preview], [data-about-syndication] {
        display: none;
      }
    </style>
<noscript>
<style>
        .loading { visibility: visible }</style>
</noscript>
<script type='text/javascript'>
        (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
        (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
        m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
        })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
        ga('create', 'UA-71044448-2', 'auto', 'blogger');
        ga('blogger.send', 'pageview');
      </script>
<link href='https://www.blogger.com/dyn-css/authorization.css?targetBlogID=5918582181149193944&amp;zx=567a3578-df48-44fd-9739-71e05e22416e' media='none' onload='if(media!=&#39;all&#39;)media=&#39;all&#39;' rel='stylesheet'/><noscript><link href='https://www.blogger.com/dyn-css/authorization.css?targetBlogID=5918582181149193944&amp;zx=567a3578-df48-44fd-9739-71e05e22416e' rel='stylesheet'/></noscript>
<meta name='google-adsense-platform-account' content='ca-host-pub-1556223355139109'/>
<meta name='google-adsense-platform-domain' content='blogspot.com'/>

</head>
<body>
<script type='text/javascript'>
      //<![CDATA[
      var axel = Math.random() + "";
      var a = axel * 10000000000000;
      document.write('<iframe src="https://2542116.fls.doubleclick.net/activityi;src=2542116;type=gblog;cat=googl0;ord=ord=' + a + '?" width="1" height="1" frameborder="0" style="display:none"></iframe>');

    </script>
    <noscript>
      <img alt='' height='1' src='https://ad.doubleclick.net/ddm/activity/src=2542116;type=gblog;cat=googl0;ord=1?' width='1'/>
    </noscript>
    <!-- <script>
//<![CDATA[
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-10005-5', 'auto');
  ga('send', 'pageview');
      //]]>
</script> -->
    <!-- Header -->
<nav class='header' id='the-nav'>
<div class='logo'>
<a href='//debug.com/'>
<img height='42' src='https://kstatic.googleusercontent.com/files/428d86d25e8d77a114f1a4d915cdb70ca482d63fd1ec2212ea5b0c1ae29e50c88d3f8046f52c2f3da1ada99ba256c67f04df5034e94f413ef066e6ccda75d869'/></a>
</div>
<ul class='links' id='nav-links'>
<li class='icon' id='hamburger'>
<a href='#'><img class='img-ham' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8pFrphAoRolHYKWbQPjQGACW3Y3CcHqpWSFPV3NM7h4Z2f8VW9TsOeubKiIwbBhLH6HLdB-PI8HENLsVVYogxawt_3vcilKntdZ1N05GStqaAUdRz-V-gXW47GCEzKSzXb0S11KeAM3NR/s1600/hamburger.jpg'/></a>
</li>
<li class='link'>
<a href='//debug.com/how' title=''><span class='link-details'>How it Works</span></a>
</li>
<li class='link'>
<a href='//debug.com/faqs' title=''><span class='link-details'>FAQs</span></a>
</li>
<li class='link'>
<a href='/' title=''><span id='link-blog'>Blog</span></a>
</li>
</ul>
</nav>
<!-- all content wrapper start -->
<div class='cols-wrapper-content'>
<div class='cols-wrapper loading'>
<div class='col-main-wrapper'>
<div class='col-main'>
<div class='section' id='main'><div class='widget Blog' data-version='1' id='Blog1'>
<div class='post' data-id='855399454568678680' itemscope='' itemtype='http://schema.org/BlogPosting'>
<h2 class='title' itemprop='name'>
<a href='https://blog.debug.com/2025/09/tracing-global-invasion-of-one-of.html' itemprop='url' title=' Tracing the Global Invasion of One of Humanity’s Deadliest Foes'>
 Tracing the Global Invasion of One of Humanity&#8217;s Deadliest Foes
</a>
</h2>
<div class='post-header'>
<div class='published'>
<span class='publishdate' itemprop='datePublished'>
Monday, September 22, 2025
</span>
</div>
</div>
<div class='post-body'>
<div class='post-content' itemprop='articleBody'>
<script type='text/template'>
                          <p><em>New research from the Debug project reveals the origin and movement of the mosquito Aedes aegypti&#8212;which could help disease control efforts</em></p>
<p>Authors: <br />
Dr. Jacob Crawford, Staff Scientist, Debug <br />
Dr. Bradley White, Director, Debug</p>
<p><strong>The Global Dengue Threat</strong></p>
<p>More than 4 billion people&#8212;half of the world&#8217;s population&#8212;are at risk of contracting dengue, a mosquito-transmitted disease, each year. And global cases are surging: according to the <a href="https://www.who.int/news-room/fact-sheets/detail/dengue-and-severe-dengue#:~:text=The%20incidence%20of%20dengue%20has,million%20cases%20reported%20to%20WHO.">World Health Organization</a>, reported instances of dengue have increased eight-fold in the past 25 years, from 500,000 in 2000 to a historic high of more than 14.6 million in 2024. Severe dengue can wreak havoc on the human body, causing sickness and even death.</p>
<p>While more than 3,500 species of mosquito exist, the <em>Aedes aegypti</em> mosquito is responsible for almost all cases of dengue. Unfortunately, there is no available vaccine that can provide comprehensive protection from the disease. As a result, the only way to limit transmission of dengue and other viral diseases transmitted by this mosquito species, including Zika and chikungunya, is by controlling the <em>Aedes aegypti</em> population itself. </p>
<p>The Debug team and academic colleagues spent the past several years putting together the first comprehensive genomic database that helps to catalogue the history of <em>Aedes aegypti</em> migration across the world and the genetic mutations that occurred along the way. These findings represent a major advancement in our knowledge of <em>Aedes aegypti</em> genomics and our mission of eliminating disease-carrying mosquitoes: providing a platform for both optimizing the implementation of existing vector controls tools and developing novel interventions.  </p>
<p>We recently <a href="https://www.science.org/doi/10.1126/science.ads3732">published our research in <em>Science</em></a>, along with the datasets we used to inform our work, in the hopes that other people working on controlling mosquito-borne illnesses may also benefit from these discoveries.</p>
<p><strong>From the Forest to the City</strong></p>
<p>Historically, <em>Aedes aegypti</em> was only found in African forests, breeding in tree-holes and feeding on non-human primates and other animals. While these forest populations still exist, over the past 500 years, a form of <em>Aedes aegypti</em> has adapted to specialize on humans&#8212;breeding in artificial water sources and feeding nearly exclusively on people. The human-specialized form has invaded almost the entirety of the tropical and subtropical world, with more recent incursions into temperate areas as well.</p>
<p>An organism&#8217;s genome can serve as a historical record of sorts, showing, for example, when a species&#8217; population size may have changed and documenting migration patterns. In order to better understand the history of <em>Aedes aegypti</em> invasion, we sequenced the genomes of 1,206 individual mosquitoes from 73 locations across every continent except Antarctica, including both animal-preferring and invasive, human-preferring populations. </p>
<p>To collect some of the samples, our colleagues  set up oviposition cups (i.e. artificial containers holding water) across forests and cities and waited for mosquitoes to lay eggs in the water. Because it&#8217;s impossible to identify eggs in the field, our colleagues  brought all the eggs they gathered back to the lab for molecular testing.  </p>
<p><strong><img alt="" src="https://blogger.googleusercontent.com/img/a/AVvXsEh2NMG8Y9isYd9Qe9egHQIs5mGgAMK2IdxJvRcLmsRNUSoqwerERTi-woszwiU7XSwAS-4lsLa4IUhuVI--V1kuatWCnHVSEDbhfSLkjxVbWoyzq52RJ8ApAHa1vQt13BezVEHs4ouXzK66eRL9IpCLLRWMVQfnUoJo5_3rigUSj22Lc5LHR5abZbCDZ5wp" /></strong><br />
<strong>Debug collaborators Dr. Noah Rose (UC San Diego) and Gilbert Bianquinche collecting <em>Aedes aegypti</em> eggs in Senegal for the study.</strong>  </p>
<p>The team then sequenced the DNA of these mosquitoes on the Illumina platform and used Google Cloud&#8217;s compute power to map the billions of sequencing reads to the genomes of these mosquitoes, identifying millions of common and rare mutations. Demographic analyses based on this mutation database allowed us to pinpoint which regions of the genome were shared between populations, helping to unravel the routes that <em>Aedes aegypti</em> traveled as it invaded the globe and the approximate dates of these migrations.</p>
<p><strong>Mastering Mosquitoes&#8217; Movements</strong></p>
<p>We found over 141 million mutations in these genomes that tell us about how <em>Aedes aegypti</em> has changed and moved over time. </p>
<p>We discovered strong evidence, in agreement with historical records on disease occurrence, that this species of mosquito migrated from Africa to the Americas \~350 years ago, almost certainly on ships carrying enslaved people. Approximately 100 years after this migration, the American population of the <em>Aedes aegypti</em> exploded in size and rapidly invaded the rest of the tropical world&#8212;including the Mediterranean basin, Asia, and Australia.   </p>
<p>We also found strong evidence that this invasive form of <em>Aedes aegypti</em> has returned to Africa, helping to explain the recent, unprecedented urban dengue outbreaks in the region. These &#8220;back-to-Africa&#8221; populations harbor insecticide resistance genes selected for outside the continent, making control of the mosquitoes all the more difficult. </p>
<p><strong>The Implications for Global Health</strong></p>
<p>The Debug project is developing novel technology, powered by artificial intelligence, to raise and release sterile male mosquitoes in order to decrease populations of the ones that carry disease. This recent body of research has the potential to help us accelerate the process of introducing sterile <em>Aedes aegypti</em> into the regions that most urgently need population suppression.</p>
<p><strong><img alt="" src="https://blogger.googleusercontent.com/img/a/AVvXsEg9OTUm16r4PPzeiMkuWOccdTGwHypVNqcCaZo81CHbrVzkUkChts4FR6z-gx--diUSjaTCKYQZ6rmZg3kMWgM5MloyUo2AIOqaPYxjSyObK8FLdbPEJZsm-pK_mEl5VSITLHo1wvBBP1B6Gfukwlmer5UMh8OxFBpdP9YTNWNMLfBDCEVAULG0U4aZscjR" /></strong><br />
<strong>Adult <em>Aedes aegypti</em> mosquitoes in a Debug cage being prepared for backcrossing</strong></p>
<p>Whenever we release sterile males into a new area, it can take up to nine months to backcross our sterile lines with locally caught mosquitoes to ensure we are releasing <em>Aedes aegypti</em> that genetically matches the local population. The new dataset helps us to determine over what geographic region a single genetic line can be released - for example, our research found the same genetic line of the species could be released across multiple countries in South East Asia - which allows us to begin releases quicker and make the sterile male manufacturing process more efficient.  We hope that by publicly releasing our dataset, we can provide a unique platform for researchers to develop new tools in the ongoing fight against dengue, Zika, and other illnesses spread by <em>Aedes aegypti</em>. </p>
<p>As we continue to develop technologies and methods to target disease-carrying mosquitoes, we&#8217;re partnering closely with scientists, communities, and governments around the world. If you&#8217;re interested in collaborating with our team, please reach out to <a href="mailto:partners@debug.com">partners@debug.com</a> </p>
<h2></h2>
<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
  <meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
                        </script>
<noscript>
<p><em>New research from the Debug project reveals the origin and movement of the mosquito Aedes aegypti&#8212;which could help disease control efforts</em></p>
<p>Authors: <br />
Dr. Jacob Crawford, Staff Scientist, Debug <br />
Dr. Bradley White, Director, Debug</p>
<p><strong>The Global Dengue Threat</strong></p>
<p>More than 4 billion people&#8212;half of the world&#8217;s population&#8212;are at risk of contracting dengue, a mosquito-transmitted disease, each year. And global cases are surging: according to the <a href="https://www.who.int/news-room/fact-sheets/detail/dengue-and-severe-dengue#:~:text=The%20incidence%20of%20dengue%20has,million%20cases%20reported%20to%20WHO.">World Health Organization</a>, reported instances of dengue have increased eight-fold in the past 25 years, from 500,000 in 2000 to a historic high of more than 14.6 million in 2024. Severe dengue can wreak havoc on the human body, causing sickness and even death.</p>
<p>While more than 3,500 species of mosquito exist, the <em>Aedes aegypti</em> mosquito is responsible for almost all cases of dengue. Unfortunately, there is no available vaccine that can provide comprehensive protection from the disease. As a result, the only way to limit transmission of dengue and other viral diseases transmitted by this mosquito species, including Zika and chikungunya, is by controlling the <em>Aedes aegypti</em> population itself. </p>
<p>The Debug team and academic colleagues spent the past several years putting together the first comprehensive genomic database that helps to catalogue the history of <em>Aedes aegypti</em> migration across the world and the genetic mutations that occurred along the way. These findings represent a major advancement in our knowledge of <em>Aedes aegypti</em> genomics and our mission of eliminating disease-carrying mosquitoes: providing a platform for both optimizing the implementation of existing vector controls tools and developing novel interventions.  </p>
<p>We recently <a href="https://www.science.org/doi/10.1126/science.ads3732">published our research in <em>Science</em></a>, along with the datasets we used to inform our work, in the hopes that other people working on controlling mosquito-borne illnesses may also benefit from these discoveries.</p>
<p><strong>From the Forest to the City</strong></p>
<p>Historically, <em>Aedes aegypti</em> was only found in African forests, breeding in tree-holes and feeding on non-human primates and other animals. While these forest populations still exist, over the past 500 years, a form of <em>Aedes aegypti</em> has adapted to specialize on humans&#8212;breeding in artificial water sources and feeding nearly exclusively on people. The human-specialized form has invaded almost the entirety of the tropical and subtropical world, with more recent incursions into temperate areas as well.</p>
<p>An organism&#8217;s genome can serve as a historical record of sorts, showing, for example, when a species&#8217; population size may have changed and documenting migration patterns. In order to better understand the history of <em>Aedes aegypti</em> invasion, we sequenced the genomes of 1,206 individual mosquitoes from 73 locations across every continent except Antarctica, including both animal-preferring and invasive, human-preferring populations. </p>
<p>To collect some of the samples, our colleagues  set up oviposition cups (i.e. artificial containers holding water) across forests and cities and waited for mosquitoes to lay eggs in the water. Because it&#8217;s impossible to identify eggs in the field, our colleagues  brought all the eggs they gathered back to the lab for molecular testing.  </p>
<p><strong><img alt="" src="https://blogger.googleusercontent.com/img/a/AVvXsEh2NMG8Y9isYd9Qe9egHQIs5mGgAMK2IdxJvRcLmsRNUSoqwerERTi-woszwiU7XSwAS-4lsLa4IUhuVI--V1kuatWCnHVSEDbhfSLkjxVbWoyzq52RJ8ApAHa1vQt13BezVEHs4ouXzK66eRL9IpCLLRWMVQfnUoJo5_3rigUSj22Lc5LHR5abZbCDZ5wp" /></strong><br />
<strong>Debug collaborators Dr. Noah Rose (UC San Diego) and Gilbert Bianquinche collecting <em>Aedes aegypti</em> eggs in Senegal for the study.</strong>  </p>
<p>The team then sequenced the DNA of these mosquitoes on the Illumina platform and used Google Cloud&#8217;s compute power to map the billions of sequencing reads to the genomes of these mosquitoes, identifying millions of common and rare mutations. Demographic analyses based on this mutation database allowed us to pinpoint which regions of the genome were shared between populations, helping to unravel the routes that <em>Aedes aegypti</em> traveled as it invaded the globe and the approximate dates of these migrations.</p>
<p><strong>Mastering Mosquitoes&#8217; Movements</strong></p>
<p>We found over 141 million mutations in these genomes that tell us about how <em>Aedes aegypti</em> has changed and moved over time. </p>
<p>We discovered strong evidence, in agreement with historical records on disease occurrence, that this species of mosquito migrated from Africa to the Americas \~350 years ago, almost certainly on ships carrying enslaved people. Approximately 100 years after this migration, the American population of the <em>Aedes aegypti</em> exploded in size and rapidly invaded the rest of the tropical world&#8212;including the Mediterranean basin, Asia, and Australia.   </p>
<p>We also found strong evidence that this invasive form of <em>Aedes aegypti</em> has returned to Africa, helping to explain the recent, unprecedented urban dengue outbreaks in the region. These &#8220;back-to-Africa&#8221; populations harbor insecticide resistance genes selected for outside the continent, making control of the mosquitoes all the more difficult. </p>
<p><strong>The Implications for Global Health</strong></p>
<p>The Debug project is developing novel technology, powered by artificial intelligence, to raise and release sterile male mosquitoes in order to decrease populations of the ones that carry disease. This recent body of research has the potential to help us accelerate the process of introducing sterile <em>Aedes aegypti</em> into the regions that most urgently need population suppression.</p>
<p><strong><img alt="" src="https://blogger.googleusercontent.com/img/a/AVvXsEg9OTUm16r4PPzeiMkuWOccdTGwHypVNqcCaZo81CHbrVzkUkChts4FR6z-gx--diUSjaTCKYQZ6rmZg3kMWgM5MloyUo2AIOqaPYxjSyObK8FLdbPEJZsm-pK_mEl5VSITLHo1wvBBP1B6Gfukwlmer5UMh8OxFBpdP9YTNWNMLfBDCEVAULG0U4aZscjR" /></strong><br />
<strong>Adult <em>Aedes aegypti</em> mosquitoes in a Debug cage being prepared for backcrossing</strong></p>
<p>Whenever we release sterile males into a new area, it can take up to nine months to backcross our sterile lines with locally caught mosquitoes to ensure we are releasing <em>Aedes aegypti</em> that genetically matches the local population. The new dataset helps us to determine over what geographic region a single genetic line can be released - for example, our research found the same genetic line of the species could be released across multiple countries in South East Asia - which allows us to begin releases quicker and make the sterile male manufacturing process more efficient.  We hope that by publicly releasing our dataset, we can provide a unique platform for researchers to develop new tools in the ongoing fight against dengue, Zika, and other illnesses spread by <em>Aedes aegypti</em>. </p>
<p>As we continue to develop technologies and methods to target disease-carrying mosquitoes, we&#8217;re partnering closely with scientists, communities, and governments around the world. If you&#8217;re interested in collaborating with our team, please reach out to <a href="mailto:partners@debug.com">partners@debug.com</a> </p>
<h2></h2>
<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
<meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
</noscript>
</div>
</div>
<div class='share'>
<span class='gplus-share social-wrapper' data-href='https://plus.google.com/share?url=https://blog.debug.com/2025/09/tracing-global-invasion-of-one-of.html'>
<img alt='Share on Google+' height='24' src='https://www.gstatic.com/images/branding/google_plus/2x/ic_w_post_gplus_black_24dp.png' width='24'/>
</span>
<span class='twitter-custom social-wrapper' data-href='http://twitter.com/share?text=Debug Project: Tracing the Global Invasion of One of Humanity’s Deadliest Foes&url=https://blog.debug.com/2025/09/tracing-global-invasion-of-one-of.html'>
<img alt='Share on Twitter' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_twitter_black_24dp.png' width='24'/>
</span>
<span class='fb-custom social-wrapper' data-href='https://www.facebook.com/sharer.php?u=https://blog.debug.com/2025/09/tracing-global-invasion-of-one-of.html'>
<img alt='Share on Facebook' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_facebook_black_24dp.png' width='24'/>
</span>
</div>
<div class='post-footer'>
<div class='cmt_iframe_holder' data-href='https://blog.debug.com/2025/09/tracing-global-invasion-of-one-of.html' data-viewtype='FILTERED_POSTMOD'></div>
<a href='https://plus.google.com/112374322230920073195' rel='author' style='display:none;'>
                        Google
                      </a>
<div class='label-footer'>
</div>
</div>
</div>
<div class='post' data-id='5467000098715503469' itemscope='' itemtype='http://schema.org/BlogPosting'>
<h2 class='title' itemprop='name'>
<a href='https://blog.debug.com/2025/03/world-mosquito-program-and-debug-to.html' itemprop='url' title='World Mosquito Program and Debug to form a global technology alliance'>
World Mosquito Program and Debug to form a global technology alliance
</a>
</h2>
<div class='post-header'>
<div class='published'>
<span class='publishdate' itemprop='datePublished'>
Wednesday, March 5, 2025
</span>
</div>
</div>
<div class='post-body'>
<div class='post-content' itemprop='articleBody'>
<script type='text/template'>
                          <h2 style="text-align: left;"><span style="font-family: inherit;">World Mosquito Program and Debug will collaborate to combat mosquito-borne diseases</span></h2>
<p><span style="font-family: inherit;">The World Mosquito Program (WMP) of Monash University and Debug by Alphabet announced today that they are teaming up to explore a collaboration to deploy automated releases of Wolbachia Aedes aegypti mosquitoes to combat mosquito-borne diseases. This collaboration will leverage WMP's proven Wolbachia replacement method and Debug's proprietary rearing and release technologies to rapidly scale programs that reduce the transmission of diseases such as dengue, Zika, chikungunya, and yellow fever.</span></p>
<p><span style="font-family: inherit;">WMP has been at the forefront of innovative approaches in Wolbachia replacement programs globally.  This safe and sustainable approach has been shown to significantly reduce the ability of mosquitoes to transmit viruses. A study published in the New England Journal of Medicine showed a 77% reduction in dengue incidence in areas where Wolbachia was deployed in field trials conducted by WMP in Yogyakarta, Indonesia<span style="font-size: x-small;"><a class="small" href="#footnote-1">[1]</a>.</span> Further results in Colombia&#8217;s Aburrá Valley and the Brazilian city of Niterói show the lowest number of dengue cases in more than 20 years, following WMP&#8217;s Wolbachia releases.</span></p>
<p><span style="font-family: inherit;">Debug has developed proprietary end-to-end technology that includes automated rearing robots, AI powered visual sex sorting systems, data surveillance, and release platforms to efficiently deploy Wolbachia suppression programs in several countries.  Debug&#8217;s automated release platform on vehicles enables coverage of large areas more effectively than manual methods while leveraging software for targeted distribution.</span></p>
<p><span style="font-family: inherit;">The collaboration between WMP and Debug brings together two global leaders in the fight against vector-borne disease. By combining the respective expertise and compatible values on global health impact, the collaboration aims to accelerate progress of current and future Wolbachia programs to reduce the global burden from mosquito-borne diseases.</span></p>
<p></p>
  <span style="font-family: inherit;">
    <ul style="text-align: left;">
      
  <li style="line-height: 1.5;"><span style="font-weight: bold;">Synergistic Approach:</span> Debug's proprietary technologies can be integrated with WMP's Wolbachia replacement method to increase efficiency and coverage.</li>
  <li style="line-height: 1.5;"><span style="font-weight: bold;">Innovation and Scalability</span>: The alliance will foster innovation and the development of scalable solutions that can be implemented in diverse settings.</li>
    <li style="line-height: 1.5;"><span style="font-weight: bold;">Global Health Impact</span>: This complementary collaboration has the potential to protect more people from the devastating effects of mosquito-borne diseases.</li></ul>
  </span>
<p></p>
<p><span style="font-family: inherit;">Linus Upson, founder of Debug, shared &#8220;We are excited about the opportunity to partner with WMP. In addition to utilizing the technology we have built to deliver Debug's proven Wolbachia suppression programs, we can provide our proprietary technology to deliver automated releases in WMP&#8217;s Wolbachia replacement programs worldwide. This is an exciting moment to unify groundbreaking biological and technological achievements to make a global impact.&#8221;</span></p>
<p><span style="font-family: inherit;">Scott O&#8217;Neill, CEO and Founder of the World Mosquito Program, said &#8220;Debug&#8217;s automated release technologies have the potential to significantly increase the speed and efficiency of our Wolbachia releases, accelerating our goal of protecting as many people as possible worldwide.&#8221;</span></p>
<p><span style="font-family: inherit;">Kieran Walters, Executive Director of Strategy &amp; Partnerships of the World Mosquito Program, shared &#8220;We are thrilled to form an alliance with Debug to combat one of the biggest global health threats of the 21st century. By combining our technologies, we can deliver an integrated solution to protect vulnerable communities from mosquito-borne diseases on an unprecedented scale.&#8221;</span></p>
<p></p>
<h4 style="text-align: left;"><span style="font-family: inherit;"><br /></span></h4><h4 style="text-align: left;"><span style="font-family: inherit;">About World Mosquito Program</span></h4>
<p><span style="font-family: inherit;">The World Mosquito Program (WMP) is a not-for-profit group of companies wholly owned by Monash University, Australia, that works to protect the global community from mosquito-borne viral diseases such as dengue, chikungunya, Zika and yellow fever. After effectively eliminating transmission of these viruses from Australia, WMP has expanded to now be working in 16 countries across Asia, Oceania and the Americas, protecting more than 13.5 million people. For more information, please visit World Mosquito Program.</span></p>
<p></p>
<h4 style="text-align: left;"><span style="font-family: inherit;"><br /></span></h4><h4 style="text-align: left;"><span style="font-family: inherit;">More information about WMP&#8217;s Wolbachia Method</span></h4><p><span style="font-family: inherit;">Wolbachia &#8211; a common bacterium found in about 50 percent of insects &#8211; is introduced in the Aedes aegypti mosquitoes that transmit dengue, chikungunya, Zika and yellow fever. The Wolbachia bacterium prevents the Aedes aegypti mosquitoes from transmitting these diseases.</span></p>
<p><span style="font-family: inherit;">The Wolbachia mosquitoes are then released in areas where mosquito-borne viruses are endemic. As they breed with wild mosquitoes, the number of Wolbachia mosquitoes grows over time until it remains high without the need for further releases.</span></p>
<p><span style="font-family: inherit;">Unlike other measures against mosquito-borne diseases, the Wolbachia method is safe for people, mosquitoes and the environment, and offers a once-off, long-term and self-sustaining solution to control the spread and impacts of dengue, chikungunya, Zika and yellow fever.</span></p>
<p><span style="font-family: inherit; font-size: small;">[1]&nbsp;</span><span style="font-size: small;">Source: Adi Utarini et al &#8220;Efficacy of Wolbachia-Infected Mosquito Deployments for the Control of Dengue&#8221; The New England Journal of Medicine, Vol 384, No 23, June 2021 (</span><a href="https://www.nejm.org/doi/full/10.1056/NEJMoa2030243?query=featured_home" style="font-size: small;" target="_blank">link</a><span style="font-size: small;">)</span></p><div><br /></div>

<h4 style="text-align: left;"><span style="font-family: inherit;">About Debug</span></h4>
<p><span style="font-family: inherit;"><a href="https://debug.com" target="_blank">Debug</a> is an Alphabet project that has developed proprietary technology to automate the rearing, sorting, and release of millions of non-biting, non-GMO, sterile male mosquitoes at scale for Wolbachia suppression programs. The end-to-end technology includes automated rearing robots, AI powered visual sex sorting systems, and data surveillance and release platforms to optimize efficiency and performance. Debug releases mosquitoes into targeted areas identified using ongoing surveillance.</span></p>
<p></p>
<br />
<h4 style="line-height: 1; text-align: left;"><span style="font-family: inherit;">Contact Information</span></h4>
<h4 style="line-height: 1; text-align: left;"><br /></h4><h4 style="text-align: left;">World Mosquito Program</h4>
<span style="line-height: 0.5;">
  <p>Alex Jackson</p>
  <p>Global Editorial &amp; Media Relations Manager</p>
  <p>alex.jackson@worldmosquito.org </p>
<br />
<h4 style="text-align: left;">Debug</h4>
<p>Press and Media Relations</p>
<p><a href="mailto:press@debug.com">press@debug.com</a></p>
</span>





<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
  <meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
                        </script>
<noscript>
<h2 style="text-align: left;"><span style="font-family: inherit;">World Mosquito Program and Debug will collaborate to combat mosquito-borne diseases</span></h2>
<p><span style="font-family: inherit;">The World Mosquito Program (WMP) of Monash University and Debug by Alphabet announced today that they are teaming up to explore a collaboration to deploy automated releases of Wolbachia Aedes aegypti mosquitoes to combat mosquito-borne diseases. This collaboration will leverage WMP's proven Wolbachia replacement method and Debug's proprietary rearing and release technologies to rapidly scale programs that reduce the transmission of diseases such as dengue, Zika, chikungunya, and yellow fever.</span></p>
<p><span style="font-family: inherit;">WMP has been at the forefront of innovative approaches in Wolbachia replacement programs globally.  This safe and sustainable approach has been shown to significantly reduce the ability of mosquitoes to transmit viruses. A study published in the New England Journal of Medicine showed a 77% reduction in dengue incidence in areas where Wolbachia was deployed in field trials conducted by WMP in Yogyakarta, Indonesia<span style="font-size: x-small;"><a class="small" href="#footnote-1">[1]</a>.</span> Further results in Colombia&#8217;s Aburrá Valley and the Brazilian city of Niterói show the lowest number of dengue cases in more than 20 years, following WMP&#8217;s Wolbachia releases.</span></p>
<p><span style="font-family: inherit;">Debug has developed proprietary end-to-end technology that includes automated rearing robots, AI powered visual sex sorting systems, data surveillance, and release platforms to efficiently deploy Wolbachia suppression programs in several countries.  Debug&#8217;s automated release platform on vehicles enables coverage of large areas more effectively than manual methods while leveraging software for targeted distribution.</span></p>
<p><span style="font-family: inherit;">The collaboration between WMP and Debug brings together two global leaders in the fight against vector-borne disease. By combining the respective expertise and compatible values on global health impact, the collaboration aims to accelerate progress of current and future Wolbachia programs to reduce the global burden from mosquito-borne diseases.</span></p>
<p></p>
  <span style="font-family: inherit;">
    <ul style="text-align: left;">
      
  <li style="line-height: 1.5;"><span style="font-weight: bold;">Synergistic Approach:</span> Debug's proprietary technologies can be integrated with WMP's Wolbachia replacement method to increase efficiency and coverage.</li>
  <li style="line-height: 1.5;"><span style="font-weight: bold;">Innovation and Scalability</span>: The alliance will foster innovation and the development of scalable solutions that can be implemented in diverse settings.</li>
    <li style="line-height: 1.5;"><span style="font-weight: bold;">Global Health Impact</span>: This complementary collaboration has the potential to protect more people from the devastating effects of mosquito-borne diseases.</li></ul>
  </span>
<p></p>
<p><span style="font-family: inherit;">Linus Upson, founder of Debug, shared &#8220;We are excited about the opportunity to partner with WMP. In addition to utilizing the technology we have built to deliver Debug's proven Wolbachia suppression programs, we can provide our proprietary technology to deliver automated releases in WMP&#8217;s Wolbachia replacement programs worldwide. This is an exciting moment to unify groundbreaking biological and technological achievements to make a global impact.&#8221;</span></p>
<p><span style="font-family: inherit;">Scott O&#8217;Neill, CEO and Founder of the World Mosquito Program, said &#8220;Debug&#8217;s automated release technologies have the potential to significantly increase the speed and efficiency of our Wolbachia releases, accelerating our goal of protecting as many people as possible worldwide.&#8221;</span></p>
<p><span style="font-family: inherit;">Kieran Walters, Executive Director of Strategy &amp; Partnerships of the World Mosquito Program, shared &#8220;We are thrilled to form an alliance with Debug to combat one of the biggest global health threats of the 21st century. By combining our technologies, we can deliver an integrated solution to protect vulnerable communities from mosquito-borne diseases on an unprecedented scale.&#8221;</span></p>
<p></p>
<h4 style="text-align: left;"><span style="font-family: inherit;"><br /></span></h4><h4 style="text-align: left;"><span style="font-family: inherit;">About World Mosquito Program</span></h4>
<p><span style="font-family: inherit;">The World Mosquito Program (WMP) is a not-for-profit group of companies wholly owned by Monash University, Australia, that works to protect the global community from mosquito-borne viral diseases such as dengue, chikungunya, Zika and yellow fever. After effectively eliminating transmission of these viruses from Australia, WMP has expanded to now be working in 16 countries across Asia, Oceania and the Americas, protecting more than 13.5 million people. For more information, please visit World Mosquito Program.</span></p>
<p></p>
<h4 style="text-align: left;"><span style="font-family: inherit;"><br /></span></h4><h4 style="text-align: left;"><span style="font-family: inherit;">More information about WMP&#8217;s Wolbachia Method</span></h4><p><span style="font-family: inherit;">Wolbachia &#8211; a common bacterium found in about 50 percent of insects &#8211; is introduced in the Aedes aegypti mosquitoes that transmit dengue, chikungunya, Zika and yellow fever. The Wolbachia bacterium prevents the Aedes aegypti mosquitoes from transmitting these diseases.</span></p>
<p><span style="font-family: inherit;">The Wolbachia mosquitoes are then released in areas where mosquito-borne viruses are endemic. As they breed with wild mosquitoes, the number of Wolbachia mosquitoes grows over time until it remains high without the need for further releases.</span></p>
<p><span style="font-family: inherit;">Unlike other measures against mosquito-borne diseases, the Wolbachia method is safe for people, mosquitoes and the environment, and offers a once-off, long-term and self-sustaining solution to control the spread and impacts of dengue, chikungunya, Zika and yellow fever.</span></p>
<p><span style="font-family: inherit; font-size: small;">[1]&nbsp;</span><span style="font-size: small;">Source: Adi Utarini et al &#8220;Efficacy of Wolbachia-Infected Mosquito Deployments for the Control of Dengue&#8221; The New England Journal of Medicine, Vol 384, No 23, June 2021 (</span><a href="https://www.nejm.org/doi/full/10.1056/NEJMoa2030243?query=featured_home" style="font-size: small;" target="_blank">link</a><span style="font-size: small;">)</span></p><div><br /></div>

<h4 style="text-align: left;"><span style="font-family: inherit;">About Debug</span></h4>
<p><span style="font-family: inherit;"><a href="https://debug.com" target="_blank">Debug</a> is an Alphabet project that has developed proprietary technology to automate the rearing, sorting, and release of millions of non-biting, non-GMO, sterile male mosquitoes at scale for Wolbachia suppression programs. The end-to-end technology includes automated rearing robots, AI powered visual sex sorting systems, and data surveillance and release platforms to optimize efficiency and performance. Debug releases mosquitoes into targeted areas identified using ongoing surveillance.</span></p>
<p></p>
<br />
<h4 style="line-height: 1; text-align: left;"><span style="font-family: inherit;">Contact Information</span></h4>
<h4 style="line-height: 1; text-align: left;"><br /></h4><h4 style="text-align: left;">World Mosquito Program</h4>
<span style="line-height: 0.5;">
  <p>Alex Jackson</p>
  <p>Global Editorial &amp; Media Relations Manager</p>
  <p>alex.jackson@worldmosquito.org </p>
<br />
<h4 style="text-align: left;">Debug</h4>
<p>Press and Media Relations</p>
<p><a href="mailto:press@debug.com">press@debug.com</a></p>
</span>




<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
<meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
</noscript>
</div>
</div>
<div class='share'>
<span class='gplus-share social-wrapper' data-href='https://plus.google.com/share?url=https://blog.debug.com/2025/03/world-mosquito-program-and-debug-to.html'>
<img alt='Share on Google+' height='24' src='https://www.gstatic.com/images/branding/google_plus/2x/ic_w_post_gplus_black_24dp.png' width='24'/>
</span>
<span class='twitter-custom social-wrapper' data-href='http://twitter.com/share?text=Debug Project:World Mosquito Program and Debug to form a global technology alliance&url=https://blog.debug.com/2025/03/world-mosquito-program-and-debug-to.html'>
<img alt='Share on Twitter' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_twitter_black_24dp.png' width='24'/>
</span>
<span class='fb-custom social-wrapper' data-href='https://www.facebook.com/sharer.php?u=https://blog.debug.com/2025/03/world-mosquito-program-and-debug-to.html'>
<img alt='Share on Facebook' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_facebook_black_24dp.png' width='24'/>
</span>
</div>
<div class='post-footer'>
<div class='cmt_iframe_holder' data-href='https://blog.debug.com/2025/03/world-mosquito-program-and-debug-to.html' data-viewtype='FILTERED_POSTMOD'></div>
<a href='https://plus.google.com/112374322230920073195' rel='author' style='display:none;'>
                        Google
                      </a>
<div class='label-footer'>
</div>
</div>
</div>
<div class='post' data-id='2085090753853578802' itemscope='' itemtype='http://schema.org/BlogPosting'>
<h2 class='title' itemprop='name'>
<a href='https://blog.debug.com/2024/04/expansion-of-project-wolbachia-in.html' itemprop='url' title='Expansion of Project Wolbachia in Singapore'>
Expansion of Project Wolbachia in Singapore
</a>
</h2>
<div class='post-header'>
<div class='published'>
<span class='publishdate' itemprop='datePublished'>
Monday, April 15, 2024
</span>
</div>
</div>
<div class='post-body'>
<div class='post-content' itemprop='articleBody'>
<script type='text/template'>
                          <p><span face="Karla, sans-serif" style="font-size: 11pt; white-space-collapse: preserve;">Author: Yanni Yoong (Sr Program Mgr), Evdoxia Kakani, PhD (Staff Scientist), Monica Tsai (BD)</span></p><span id="docs-internal-guid-dae2b361-7fff-0242-f455-1b794a139be6"><br /><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Following </span><a href="https://www.nea.gov.sg/corporate-functions/resources/research/wolbachia-aedes-mosquito-suppression-strategy" style="text-decoration-line: none;"><span face="Karla, sans-serif" style="color: #1155cc; font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">positive results</span></a><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"> from release of male </span><span face="Karla, sans-serif" style="font-size: 11pt; font-style: italic; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Wolbachia</span><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">-carrying </span><span face="Karla, sans-serif" style="font-size: 11pt; font-style: italic; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Aedes aegypti</span><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"> in Singapore, we are happy to announce that Debug is supporting the expansion of </span><a href="https://www.nea.gov.sg/corporate-functions/resources/research/wolbachia-aedes-mosquito-suppression-strategy" style="text-decoration-line: none;"><span face="Karla, sans-serif" style="color: #1155cc; font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">Project Wolbachia in Singapore</span></a><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"> to cover 5 new residential sites to increase Project Wolbachia&#8217;s coverage from 350,000 households in 2023 to 480,000 households by Q1 2024 - an increase from 26% to 35% of households in Singapore.</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"><br /></span></p><br /><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">Results from NEA&#8217;s Project </span><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-style: italic; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">Wolbachia</span><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;"> &#8211; Singapore</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-style: italic; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Aedes aegypti</span><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"> mosquito populations in the existing study sites of Bukit Batok, Choa Chu Kang, Tampines (releases done by Debug by Verily since 2018), and Yishun have generally fallen by more than 90 per cent. Data from 2019 to 2022 indicates that residents living in areas with at least one year of releases were up to 77 per cent less likely to be infected with dengue.</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><br /></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">Results from Debug&#8217;s release areas.&nbsp;</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">The heatmaps in Tampines and Marine Parade below show the &#8220;eraser effect&#8221; where releases of male </span><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-style: italic; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Wolbachia-Aedes</span><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"> mosquitoes has decreased the dengue risk over time.</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"></span></p><div class="separator" style="clear: both; text-align: center;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"><a href="https://blogger.googleusercontent.com/img/a/AVvXsEjMd-K5iR1ct65tngwNoBuyBDeQ7Wxyejoj-8LNy8Qw-b8GT6dmhIlSQDzcj_FZW162YWz44PXsxehYxqAgIWdYXvgzJ_VF5vuSUC2utlG2Hej5IWoUMqGC2p8TmLOlmK4RpScjrWi_cVnaezUhDLuUnNLPCK1IcZ83tLcC3-u0MwGA3aXeS26R8xl31_sg" style="margin-left: 1em; margin-right: 1em;"><img alt="" data-original-height="434" data-original-width="463" height="600" src="https://blogger.googleusercontent.com/img/a/AVvXsEjMd-K5iR1ct65tngwNoBuyBDeQ7Wxyejoj-8LNy8Qw-b8GT6dmhIlSQDzcj_FZW162YWz44PXsxehYxqAgIWdYXvgzJ_VF5vuSUC2utlG2Hej5IWoUMqGC2p8TmLOlmK4RpScjrWi_cVnaezUhDLuUnNLPCK1IcZ83tLcC3-u0MwGA3aXeS26R8xl31_sg=w640-h600" width="640" /></a></span></div><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"><br /><br /></span><p></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"></span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Source: </span><a href="https://www.nea.gov.sg/corporate-functions/resources/research/wolbachia-aedes-mosquito-suppression-strategy" style="text-decoration-line: none;"><span face="Karla, sans-serif" style="color: #1155cc; font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">NEA website</span></a></p><br /><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">The increased capacity for Project Wolbachia from 7 million in 2023 to 11 million male Wolbachia-Aedes mosquitoes produced and released weekly is made possible by Singapore&#8217;s National Environment Agency (NEA) and its collaboration with Debug.&nbsp; By the end of Q1 2024, Debug will be producing and releasing more than 6 million male Wolbachia-Aedes mosquitoes per week for Project Wolbachia in Singapore </span><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">.</span></p><br /><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Debug has been using its proprietary automation technology for the production, sex-sorting, and release of male Wolbachia-Aedes mosquitoes at the Tampines and Marine Parade study sites since 2023, following a collaborative research from 2018 to 2023.&nbsp;&nbsp;</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"><br /></span></p><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto;"><tbody><tr><td style="text-align: center;"><img alt="Verily&#39;s Program Manager Yanni Yoong explaining to Senior Minister of State for National Development and Foreign Affairs Sim Ann and pre-school children how male male Wolbachia-Aedes mosquitoes are released via hand containers at the expansion of Project Wolbachia in Clementi residential estate." height="360" src="https://lh7-us.googleusercontent.com/djDOEYXl0ApHmouxoWQGrbcq0peEW2qku8-7c5yXvX5jBAtirQ64R2E5iThDFLW0yJ4qRSHORuovWlQqbypYjrGGmdZRlgRDmEvyV86TEtkK0-jVOHewIosVJwhuXdQ8AWoRuLxgwF0G19z2vEVlAFyx-bInEg-m3K82L80NL5bcv4wKNl5R1DAboGUlfcQ=w640-h360" style="margin-left: auto; margin-right: auto; margin-top: 0px;" width="640" /></td></tr><tr><td class="tr-caption" style="text-align: left;"><span id="docs-internal-guid-c9e0c675-7fff-8c11-2d23-0bd18ed7d4d8"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Verily's Program Manager Yanni Yoong explaining to Senior Minister of State for National Development and Foreign Affairs Sim Ann and pre-school children how male male Wolbachia-Aedes mosquitoes are released via hand containers at the expansion of Project Wolbachia in Clementi residential estate.</span></span></td></tr></tbody></table><div class="separator" style="clear: both; text-align: center;"><br /></div><div class="separator" style="clear: both; text-align: center;"><br /></div><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto;"><tbody><tr><td style="text-align: center;"><img alt="Male Wolbachia-Aedes mosquitoes are released using Debug&#8217;s vans to efficiently cover larger areas and evenly disperse mosquitoes among the blocks." height="330" src="https://lh7-us.googleusercontent.com/fia8D3jwOZR145yDbBaQwZTQ6yOT95dMon3NQqaEL9LPJEPcG5sAhWNaRdpvAOyMd0DOssFjoffiONdW3du5bVaY1w3KJbYpZW3YBkZ5gcnlgPg8PLPd6PdvaK-GsS0yyUhDX4MTQZCmH-VDPTrlcL4YvuR0tZh9esag8_uFPhteReouAbIy1BAlsKu56ZQ=w640-h330" style="background-color: white; color: #666666; font-family: Karla, sans-serif; font-size: 9pt; margin-left: auto; margin-right: auto; margin-top: -33.2608px; text-align: left; white-space-collapse: preserve;" width="640" /></td></tr><tr><td class="tr-caption" style="text-align: left;"><span id="docs-internal-guid-525b18fe-7fff-5d3a-948e-68d1bfb78601"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Male Wolbachia-Aedes mosquitoes are released using Debug&#8217;s vans to efficiently cover larger areas and evenly disperse mosquitoes among the blocks.<br /></span></span></td></tr></tbody></table><br /><sup style="white-space-collapse: preserve;">1</sup><span style="font-size: 8pt; white-space-collapse: preserve;">Around 4 million male Wolbachia-Aedes mosquitoes for the expansion sites and around 2 million for the existing sites (Tampines and Marine Parade) are produced and released weekly. </span></span>
<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
  <meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
                        </script>
<noscript>
<p><span face="Karla, sans-serif" style="font-size: 11pt; white-space-collapse: preserve;">Author: Yanni Yoong (Sr Program Mgr), Evdoxia Kakani, PhD (Staff Scientist), Monica Tsai (BD)</span></p><span id="docs-internal-guid-dae2b361-7fff-0242-f455-1b794a139be6"><br /><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Following </span><a href="https://www.nea.gov.sg/corporate-functions/resources/research/wolbachia-aedes-mosquito-suppression-strategy" style="text-decoration-line: none;"><span face="Karla, sans-serif" style="color: #1155cc; font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">positive results</span></a><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"> from release of male </span><span face="Karla, sans-serif" style="font-size: 11pt; font-style: italic; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Wolbachia</span><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">-carrying </span><span face="Karla, sans-serif" style="font-size: 11pt; font-style: italic; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Aedes aegypti</span><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"> in Singapore, we are happy to announce that Debug is supporting the expansion of </span><a href="https://www.nea.gov.sg/corporate-functions/resources/research/wolbachia-aedes-mosquito-suppression-strategy" style="text-decoration-line: none;"><span face="Karla, sans-serif" style="color: #1155cc; font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">Project Wolbachia in Singapore</span></a><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"> to cover 5 new residential sites to increase Project Wolbachia&#8217;s coverage from 350,000 households in 2023 to 480,000 households by Q1 2024 - an increase from 26% to 35% of households in Singapore.</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"><br /></span></p><br /><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">Results from NEA&#8217;s Project </span><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-style: italic; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">Wolbachia</span><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;"> &#8211; Singapore</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-style: italic; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Aedes aegypti</span><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"> mosquito populations in the existing study sites of Bukit Batok, Choa Chu Kang, Tampines (releases done by Debug by Verily since 2018), and Yishun have generally fallen by more than 90 per cent. Data from 2019 to 2022 indicates that residents living in areas with at least one year of releases were up to 77 per cent less likely to be infected with dengue.</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><br /></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">Results from Debug&#8217;s release areas.&nbsp;</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">The heatmaps in Tampines and Marine Parade below show the &#8220;eraser effect&#8221; where releases of male </span><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-style: italic; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Wolbachia-Aedes</span><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"> mosquitoes has decreased the dengue risk over time.</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"></span></p><div class="separator" style="clear: both; text-align: center;"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"><a href="https://blogger.googleusercontent.com/img/a/AVvXsEjMd-K5iR1ct65tngwNoBuyBDeQ7Wxyejoj-8LNy8Qw-b8GT6dmhIlSQDzcj_FZW162YWz44PXsxehYxqAgIWdYXvgzJ_VF5vuSUC2utlG2Hej5IWoUMqGC2p8TmLOlmK4RpScjrWi_cVnaezUhDLuUnNLPCK1IcZ83tLcC3-u0MwGA3aXeS26R8xl31_sg" style="margin-left: 1em; margin-right: 1em;"><img alt="" data-original-height="434" data-original-width="463" height="600" src="https://blogger.googleusercontent.com/img/a/AVvXsEjMd-K5iR1ct65tngwNoBuyBDeQ7Wxyejoj-8LNy8Qw-b8GT6dmhIlSQDzcj_FZW162YWz44PXsxehYxqAgIWdYXvgzJ_VF5vuSUC2utlG2Hej5IWoUMqGC2p8TmLOlmK4RpScjrWi_cVnaezUhDLuUnNLPCK1IcZ83tLcC3-u0MwGA3aXeS26R8xl31_sg=w640-h600" width="640" /></a></span></div><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"><br /><br /></span><p></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"></span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Source: </span><a href="https://www.nea.gov.sg/corporate-functions/resources/research/wolbachia-aedes-mosquito-suppression-strategy" style="text-decoration-line: none;"><span face="Karla, sans-serif" style="color: #1155cc; font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space-collapse: preserve;">NEA website</span></a></p><br /><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">The increased capacity for Project Wolbachia from 7 million in 2023 to 11 million male Wolbachia-Aedes mosquitoes produced and released weekly is made possible by Singapore&#8217;s National Environment Agency (NEA) and its collaboration with Debug.&nbsp; By the end of Q1 2024, Debug will be producing and releasing more than 6 million male Wolbachia-Aedes mosquitoes per week for Project Wolbachia in Singapore </span><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">.</span></p><br /><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Debug has been using its proprietary automation technology for the production, sex-sorting, and release of male Wolbachia-Aedes mosquitoes at the Tampines and Marine Parade study sites since 2023, following a collaborative research from 2018 to 2023.&nbsp;&nbsp;</span></p><p dir="ltr" style="line-height: 1.38; margin-bottom: 0pt; margin-top: 0pt;"><span face="Karla, sans-serif" style="font-size: 11pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;"><br /></span></p><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto;"><tbody><tr><td style="text-align: center;"><img alt="Verily&#39;s Program Manager Yanni Yoong explaining to Senior Minister of State for National Development and Foreign Affairs Sim Ann and pre-school children how male male Wolbachia-Aedes mosquitoes are released via hand containers at the expansion of Project Wolbachia in Clementi residential estate." height="360" src="https://lh7-us.googleusercontent.com/djDOEYXl0ApHmouxoWQGrbcq0peEW2qku8-7c5yXvX5jBAtirQ64R2E5iThDFLW0yJ4qRSHORuovWlQqbypYjrGGmdZRlgRDmEvyV86TEtkK0-jVOHewIosVJwhuXdQ8AWoRuLxgwF0G19z2vEVlAFyx-bInEg-m3K82L80NL5bcv4wKNl5R1DAboGUlfcQ=w640-h360" style="margin-left: auto; margin-right: auto; margin-top: 0px;" width="640" /></td></tr><tr><td class="tr-caption" style="text-align: left;"><span id="docs-internal-guid-c9e0c675-7fff-8c11-2d23-0bd18ed7d4d8"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Verily's Program Manager Yanni Yoong explaining to Senior Minister of State for National Development and Foreign Affairs Sim Ann and pre-school children how male male Wolbachia-Aedes mosquitoes are released via hand containers at the expansion of Project Wolbachia in Clementi residential estate.</span></span></td></tr></tbody></table><div class="separator" style="clear: both; text-align: center;"><br /></div><div class="separator" style="clear: both; text-align: center;"><br /></div><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto;"><tbody><tr><td style="text-align: center;"><img alt="Male Wolbachia-Aedes mosquitoes are released using Debug&#8217;s vans to efficiently cover larger areas and evenly disperse mosquitoes among the blocks." height="330" src="https://lh7-us.googleusercontent.com/fia8D3jwOZR145yDbBaQwZTQ6yOT95dMon3NQqaEL9LPJEPcG5sAhWNaRdpvAOyMd0DOssFjoffiONdW3du5bVaY1w3KJbYpZW3YBkZ5gcnlgPg8PLPd6PdvaK-GsS0yyUhDX4MTQZCmH-VDPTrlcL4YvuR0tZh9esag8_uFPhteReouAbIy1BAlsKu56ZQ=w640-h330" style="background-color: white; color: #666666; font-family: Karla, sans-serif; font-size: 9pt; margin-left: auto; margin-right: auto; margin-top: -33.2608px; text-align: left; white-space-collapse: preserve;" width="640" /></td></tr><tr><td class="tr-caption" style="text-align: left;"><span id="docs-internal-guid-525b18fe-7fff-5d3a-948e-68d1bfb78601"><span face="Karla, sans-serif" style="background-color: white; color: #666666; font-size: 9pt; font-variant-alternates: normal; font-variant-east-asian: normal; font-variant-numeric: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;">Male Wolbachia-Aedes mosquitoes are released using Debug&#8217;s vans to efficiently cover larger areas and evenly disperse mosquitoes among the blocks.<br /></span></span></td></tr></tbody></table><br /><sup style="white-space-collapse: preserve;">1</sup><span style="font-size: 8pt; white-space-collapse: preserve;">Around 4 million male Wolbachia-Aedes mosquitoes for the expansion sites and around 2 million for the existing sites (Tampines and Marine Parade) are produced and released weekly. </span></span>
<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
<meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
</noscript>
</div>
</div>
<div class='share'>
<span class='gplus-share social-wrapper' data-href='https://plus.google.com/share?url=https://blog.debug.com/2024/04/expansion-of-project-wolbachia-in.html'>
<img alt='Share on Google+' height='24' src='https://www.gstatic.com/images/branding/google_plus/2x/ic_w_post_gplus_black_24dp.png' width='24'/>
</span>
<span class='twitter-custom social-wrapper' data-href='http://twitter.com/share?text=Debug Project:Expansion of Project Wolbachia in Singapore&url=https://blog.debug.com/2024/04/expansion-of-project-wolbachia-in.html'>
<img alt='Share on Twitter' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_twitter_black_24dp.png' width='24'/>
</span>
<span class='fb-custom social-wrapper' data-href='https://www.facebook.com/sharer.php?u=https://blog.debug.com/2024/04/expansion-of-project-wolbachia-in.html'>
<img alt='Share on Facebook' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_facebook_black_24dp.png' width='24'/>
</span>
</div>
<div class='post-footer'>
<div class='cmt_iframe_holder' data-href='https://blog.debug.com/2024/04/expansion-of-project-wolbachia-in.html' data-viewtype='FILTERED_POSTMOD'></div>
<a href='https://plus.google.com/112374322230920073195' rel='author' style='display:none;'>
                        Google
                      </a>
<div class='label-footer'>
</div>
</div>
</div>
<div class='post' data-id='3837791725236916337' itemscope='' itemtype='http://schema.org/BlogPosting'>
<h2 class='title' itemprop='name'>
<a href='https://blog.debug.com/2022/09/bugout-wolbachia-launches-in-british.html' itemprop='url' title='BugOut Wolbachia launches in the British Virgin Islands '>
BugOut Wolbachia launches in the British Virgin Islands 
</a>
</h2>
<div class='post-header'>
<div class='published'>
<span class='publishdate' itemprop='datePublished'>
Thursday, September 8, 2022
</span>
</div>
</div>
<div class='post-body'>
<div class='post-content' itemprop='articleBody'>
<script type='text/template'>
                          <p>Author: Jo Ohm, Scientist&nbsp;</p><p>We are excited to announce that the Verily Debug team is starting a collaboration with the <a href="https://greenvi.org/bugout/" rel="noopener" target="_blank">BugOut program</a>&nbsp;on Virgin Gorda in the British Virgin Islands. BugOut is a community-driven vector control initiative with the mission to reduce <em>Aedes aegypti</em> mosquitoes in the Territory. <em>Aedes aegypti</em> is invasive in the BVI and is both a vector of dengue, Zika and chikunguyna diseases, and a significant nuisance pest. The BugOut program is managed by Green VI, a BVI-based non-profit that works on environmental programs including waste management and environmental education.</p>
<p>BugOut&#8217;s aim to reduce <em>Aedes aegypti</em> mosquitoes ties in with Green VI&#8217;s other environment-focused initiatives, and piggybacks off the waste management effort to clean up neglected containers and piled trash that become breeding grounds for mosquitoes. Through targeted education, data-driven field work, and a consistent community presence, Green VI&#8217;s BugOut has successfully reduced mosquito breeding sites by 50% over the past 5 years. Debug is partnering with BugOut to launch the next phase of their program to further reduce <em>Aedes aegypti</em> mosquitoes using a <em>Wolbachia</em>-based incompatible insect technique (IIT). We are excited to be on board and looking forward to working on a unique and synergistic approach to mosquito control.</p>
<p>The Debug-BugOut partnership is launching as BugOut Wolbachia and combines Debug&#8217;s expertise in <em>Wolbachia</em>-male releases with BugOut&#8217;s ongoing efforts to rid the community of larval breeding sites. We will use our combined sets of tools to suppress <em>Aedes aegypti</em> on BVI in a way that follows Green VI&#8217;s environmentally-conscious and community-driven mission.</p><p><span><span face="Roboto, sans-serif" style="color: #434343; font-size: 10pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"></span></span></p><div class="separator" style="clear: both; text-align: center;"><span><span face="Roboto, sans-serif" style="color: #434343; font-size: 10pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgqweMQ-wrO5yBGO5zGFOVkJ-NGg20K2Vd3FVzXBCugajy_sRb6yq53WsIxWkPQj09N-O01yRgoZjx2eFe9QrECn0-0OZEjJNt7JVQo2hnxjrdv0QIhW7I8H4rowD8CnMTXa3kFP5MU4joMCrPLe6zCCWWSu1VL8RSQ2jALMWS_OZN3tsK3LmW8wHj6/s512/debug1.png" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="384" data-original-width="512" height="480" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgqweMQ-wrO5yBGO5zGFOVkJ-NGg20K2Vd3FVzXBCugajy_sRb6yq53WsIxWkPQj09N-O01yRgoZjx2eFe9QrECn0-0OZEjJNt7JVQo2hnxjrdv0QIhW7I8H4rowD8CnMTXa3kFP5MU4joMCrPLe6zCCWWSu1VL8RSQ2jALMWS_OZN3tsK3LmW8wHj6/w640-h480/debug1.png" width="640" /></a></span></span></div><span><span face="Roboto, sans-serif" style="color: #434343; font-size: 10pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"><br /></span></span><p>We will spend the next several months supporting Green VI&#8217;s BugOut team and their community representatives as they evaluate how to integrate a <i>Wolbachia</i>-male <i>Aedes aegypti</i> release program into their toolkit. Our BugOut Wolbachia collaboration started collecting data on the existing mosquito population on Virgin Gorda in February 2022. We have begun engaging with the community to share knowledge of how <i>Wolbachia</i> works and how it can be used to reduce mosquitoes and hopefully mosquito-borne disease in the BVI. We have also been working with the community on preliminary studies of released <i>Wolbachia</i> male mosquitoes to evaluate their ability to survive and disperse in the field. Virgin Gorda will be the first island in the BVI to pilot the BugOut Wolbachia program as we learn and adapt our methods to match the unique needs of the local community and mosquito population before potentially scaling to other parts of the Territory.</p><p><span><span face="Roboto, sans-serif" style="color: #434343; font-size: 10pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"></span></span></p><div class="separator" style="clear: both; text-align: center;"><span><span face="Roboto, sans-serif" style="color: #434343; font-size: 10pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjasxAzXD7DTMbyy3p0itugBllX0NPe3ndbsr6kx3tTs5VCNRrBhX4yfBTvRg-dN9QUFd0QD7OVcl1xL7To1rG2ziz7C82iezX6gYym6x65r9efT7r72gbQn2ygiiO_UwF6moi1mHuM1v_unAbhQiAJrwXWoLlM76TH8wTb56dtILbLP9YK7kN59Eah/s512/debug2.png" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="512" data-original-width="384" height="640" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjasxAzXD7DTMbyy3p0itugBllX0NPe3ndbsr6kx3tTs5VCNRrBhX4yfBTvRg-dN9QUFd0QD7OVcl1xL7To1rG2ziz7C82iezX6gYym6x65r9efT7r72gbQn2ygiiO_UwF6moi1mHuM1v_unAbhQiAJrwXWoLlM76TH8wTb56dtILbLP9YK7kN59Eah/w480-h640/debug2.png" width="480" /></a></span></span></div><p></p><div>We look forward to the start of a shared venture in reducing <i>Aedes aegypti</i> on Virgin Gorda with BugOut Wolbachia. Fewer mosquitoes in the BVI will help reduce the incidence of mosquito-borne diseases but also promises to reduce nuisance biting, enhance tourism, and diversify the BugOut toolkit with an additional non-toxic, eco-friendly approach to mosquito control.</div><div><br /></div><div class="separator" style="clear: both; text-align: center;"><br /></div><br /><div><br /></div><div class="separator" style="clear: both; text-align: center;"><br /></div><br /><p><br /></p>
<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
  <meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
                        </script>
<noscript>
<p>Author: Jo Ohm, Scientist&nbsp;</p><p>We are excited to announce that the Verily Debug team is starting a collaboration with the <a href="https://greenvi.org/bugout/" rel="noopener" target="_blank">BugOut program</a>&nbsp;on Virgin Gorda in the British Virgin Islands. BugOut is a community-driven vector control initiative with the mission to reduce <em>Aedes aegypti</em> mosquitoes in the Territory. <em>Aedes aegypti</em> is invasive in the BVI and is both a vector of dengue, Zika and chikunguyna diseases, and a significant nuisance pest. The BugOut program is managed by Green VI, a BVI-based non-profit that works on environmental programs including waste management and environmental education.</p>
<p>BugOut&#8217;s aim to reduce <em>Aedes aegypti</em> mosquitoes ties in with Green VI&#8217;s other environment-focused initiatives, and piggybacks off the waste management effort to clean up neglected containers and piled trash that become breeding grounds for mosquitoes. Through targeted education, data-driven field work, and a consistent community presence, Green VI&#8217;s BugOut has successfully reduced mosquito breeding sites by 50% over the past 5 years. Debug is partnering with BugOut to launch the next phase of their program to further reduce <em>Aedes aegypti</em> mosquitoes using a <em>Wolbachia</em>-based incompatible insect technique (IIT). We are excited to be on board and looking forward to working on a unique and synergistic approach to mosquito control.</p>
<p>The Debug-BugOut partnership is launching as BugOut Wolbachia and combines Debug&#8217;s expertise in <em>Wolbachia</em>-male releases with BugOut&#8217;s ongoing efforts to rid the community of larval breeding sites. We will use our combined sets of tools to suppress <em>Aedes aegypti</em> on BVI in a way that follows Green VI&#8217;s environmentally-conscious and community-driven mission.</p><p><span><span face="Roboto, sans-serif" style="color: #434343; font-size: 10pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"></span></span></p><div class="separator" style="clear: both; text-align: center;"><span><span face="Roboto, sans-serif" style="color: #434343; font-size: 10pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgqweMQ-wrO5yBGO5zGFOVkJ-NGg20K2Vd3FVzXBCugajy_sRb6yq53WsIxWkPQj09N-O01yRgoZjx2eFe9QrECn0-0OZEjJNt7JVQo2hnxjrdv0QIhW7I8H4rowD8CnMTXa3kFP5MU4joMCrPLe6zCCWWSu1VL8RSQ2jALMWS_OZN3tsK3LmW8wHj6/s512/debug1.png" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="384" data-original-width="512" height="480" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgqweMQ-wrO5yBGO5zGFOVkJ-NGg20K2Vd3FVzXBCugajy_sRb6yq53WsIxWkPQj09N-O01yRgoZjx2eFe9QrECn0-0OZEjJNt7JVQo2hnxjrdv0QIhW7I8H4rowD8CnMTXa3kFP5MU4joMCrPLe6zCCWWSu1VL8RSQ2jALMWS_OZN3tsK3LmW8wHj6/w640-h480/debug1.png" width="640" /></a></span></span></div><span><span face="Roboto, sans-serif" style="color: #434343; font-size: 10pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"><br /></span></span><p>We will spend the next several months supporting Green VI&#8217;s BugOut team and their community representatives as they evaluate how to integrate a <i>Wolbachia</i>-male <i>Aedes aegypti</i> release program into their toolkit. Our BugOut Wolbachia collaboration started collecting data on the existing mosquito population on Virgin Gorda in February 2022. We have begun engaging with the community to share knowledge of how <i>Wolbachia</i> works and how it can be used to reduce mosquitoes and hopefully mosquito-borne disease in the BVI. We have also been working with the community on preliminary studies of released <i>Wolbachia</i> male mosquitoes to evaluate their ability to survive and disperse in the field. Virgin Gorda will be the first island in the BVI to pilot the BugOut Wolbachia program as we learn and adapt our methods to match the unique needs of the local community and mosquito population before potentially scaling to other parts of the Territory.</p><p><span><span face="Roboto, sans-serif" style="color: #434343; font-size: 10pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"></span></span></p><div class="separator" style="clear: both; text-align: center;"><span><span face="Roboto, sans-serif" style="color: #434343; font-size: 10pt; font-variant-east-asian: normal; font-variant-numeric: normal; vertical-align: baseline; white-space: pre-wrap;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjasxAzXD7DTMbyy3p0itugBllX0NPe3ndbsr6kx3tTs5VCNRrBhX4yfBTvRg-dN9QUFd0QD7OVcl1xL7To1rG2ziz7C82iezX6gYym6x65r9efT7r72gbQn2ygiiO_UwF6moi1mHuM1v_unAbhQiAJrwXWoLlM76TH8wTb56dtILbLP9YK7kN59Eah/s512/debug2.png" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="512" data-original-width="384" height="640" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjasxAzXD7DTMbyy3p0itugBllX0NPe3ndbsr6kx3tTs5VCNRrBhX4yfBTvRg-dN9QUFd0QD7OVcl1xL7To1rG2ziz7C82iezX6gYym6x65r9efT7r72gbQn2ygiiO_UwF6moi1mHuM1v_unAbhQiAJrwXWoLlM76TH8wTb56dtILbLP9YK7kN59Eah/w480-h640/debug2.png" width="480" /></a></span></span></div><p></p><div>We look forward to the start of a shared venture in reducing <i>Aedes aegypti</i> on Virgin Gorda with BugOut Wolbachia. Fewer mosquitoes in the BVI will help reduce the incidence of mosquito-borne diseases but also promises to reduce nuisance biting, enhance tourism, and diversify the BugOut toolkit with an additional non-toxic, eco-friendly approach to mosquito control.</div><div><br /></div><div class="separator" style="clear: both; text-align: center;"><br /></div><br /><div><br /></div><div class="separator" style="clear: both; text-align: center;"><br /></div><br /><p><br /></p>
<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
<meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
</noscript>
</div>
</div>
<div class='share'>
<span class='gplus-share social-wrapper' data-href='https://plus.google.com/share?url=https://blog.debug.com/2022/09/bugout-wolbachia-launches-in-british.html'>
<img alt='Share on Google+' height='24' src='https://www.gstatic.com/images/branding/google_plus/2x/ic_w_post_gplus_black_24dp.png' width='24'/>
</span>
<span class='twitter-custom social-wrapper' data-href='http://twitter.com/share?text=Debug Project:BugOut Wolbachia launches in the British Virgin Islands &url=https://blog.debug.com/2022/09/bugout-wolbachia-launches-in-british.html'>
<img alt='Share on Twitter' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_twitter_black_24dp.png' width='24'/>
</span>
<span class='fb-custom social-wrapper' data-href='https://www.facebook.com/sharer.php?u=https://blog.debug.com/2022/09/bugout-wolbachia-launches-in-british.html'>
<img alt='Share on Facebook' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_facebook_black_24dp.png' width='24'/>
</span>
</div>
<div class='post-footer'>
<div class='cmt_iframe_holder' data-href='https://blog.debug.com/2022/09/bugout-wolbachia-launches-in-british.html' data-viewtype='FILTERED_POSTMOD'></div>
<a href='https://plus.google.com/112374322230920073195' rel='author' style='display:none;'>
                        Google
                      </a>
<div class='label-footer'>
</div>
</div>
</div>
<div class='post' data-id='4526598761093885766' itemscope='' itemtype='http://schema.org/BlogPosting'>
<h2 class='title' itemprop='name'>
<a href='https://blog.debug.com/2020/10/singapore-prime-minister-lee-hsien.html' itemprop='url' title='Singapore Prime Minister Lee Hsien Loong visits Verily’s mosquito sex sorting operations at the Environmental Health Institute '>
Singapore Prime Minister Lee Hsien Loong visits Verily&#8217;s mosquito sex sorting operations at the Environmental Health Institute 
</a>
</h2>
<div class='post-header'>
<div class='published'>
<span class='publishdate' itemprop='datePublished'>
Tuesday, October 20, 2020
</span>
</div>
</div>
<div class='post-body'>
<div class='post-content' itemprop='articleBody'>
<script type='text/template'>
                          <p>
On September 15, the Debug team welcomed Singapore Prime Minister Lee Hsien Loong to our operations in Singapore, as part of his tour of the National Environment Agency (NEA) - Environmental Health Institute (EHI) Mosquito Production Facility. In addition to ongoing threats from Covid-19, dengue remains a top priority in Singapore, and his tour highlighted the importance of developing novel tools such as <a href="https://www.nea.gov.sg/corporate-functions/resources/research/wolbachia-aedes-mosquito-suppression-strategy" rel="noopener" target="_blank">Project Wolbachia</a> &#8211; Singapore to prevent the spread of dengue.
</p>

<p>
Prime Minister Lee saw first hand some of the tools that have enabled the success of Project Wolbachia &#8211; Singapore, in which Verily has <a href="https://blog.debug.com/2018/09/singapore-welcomes-debug-project.html">partnered</a> with the NEA-EHI since 2018. As part of the program, Verily has released male Wolbachia-carrying <i>Aedes aegypti </i>mosquitoes in parts of Tampines town and has achieved a <a href="https://www.nea.gov.sg/media/news/news/index/successful-study-paves-the-way-for-doubling-the-size-of-male-wolbachia-aedes-mosquito-release" rel="noopener" target="_blank">greater than 90% reduction in mosquito population,</a> resulting in <a href="https://www.nea.gov.sg/media/news/news/index/nea-expands-project-wolbachia-singapore-to-dengue-high-risk-areas-in-selected-neighbourhoods-at-choa-chu-kang-and-bukit-batok-towns" rel="noopener" target="_blank">65-80% reduction in dengue cases</a>.
</p>

<p>
We were honored to demonstrate our technology to Prime Minister Lee and Mrs. Lee, who joined him on the tour. Together they visited our Sex Sorting Room, currently housed within the NEA-EHI Mosquito Production Facility and took a deep dive into understanding our mosquito sex-sorting technology, which has been successfully used in <a href="https://blog.verily.com/2018/11/debug-fresno-2018-results-in-95.html" rel="noopener" target="_blank">Debug Fresno</a> and <a href="https://blog.debug.com/2018/07/debug-innisfail-achieves-strong.html" rel="noopener" target="_blank">Debug Innisfail</a> to separate male and female mosquitoes using a computer vision algorithm and artificial intelligence.
</p>

<div class="separator" style="clear: both; text-align: center;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjCgUiILgz7VGygyVnvup17v1maIQ_rCARAcEpHJrZviYeT9DZPTThw_ktshRT53OUnr4lbtLOdhszHW0QwYBFxD-TFme_PYJgYdyuu7G3G4j2eiuavy1q8hR87jmSJ0g7czlDjYbr7-UQ/s1500/image1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="1200" data-original-width="1500" height="512" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjCgUiILgz7VGygyVnvup17v1maIQ_rCARAcEpHJrZviYeT9DZPTThw_ktshRT53OUnr4lbtLOdhszHW0QwYBFxD-TFme_PYJgYdyuu7G3G4j2eiuavy1q8hR87jmSJ0g7czlDjYbr7-UQ/w640-h512/image1.jpg" width="640" /></a></div>

<div style="color: #999999; text-align: center;">
  <i>
  Prime Minister Lee Hsien Loong and Mrs. Lee taking a closer look at Verily sex sorters
  </i>
</div>

<p>
We are excited to continue to deploy our engineering and scientific capabilities to support NEA-EHI in scaling up production, sex sorting and release of male Wolbachia-carrying <i>Aedes aegypti</i> mosquitoes over the years to come.
</p>

<div class="separator" style="clear: both; text-align: center;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzr_KDVyxFkDQGdq6SIPbciI3SSWrOBXx4KexjVZurw4um3arRPRZoUouxny2aiZUAJnDGqckCOwegeCijpu2L_ajiHjCCVQOV37aALboOnVp4viLNcCt3EqILFwnLNBq-3Qo7vME8VKY/s983/image2.jpg" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="737" data-original-width="983" height="480" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzr_KDVyxFkDQGdq6SIPbciI3SSWrOBXx4KexjVZurw4um3arRPRZoUouxny2aiZUAJnDGqckCOwegeCijpu2L_ajiHjCCVQOV37aALboOnVp4viLNcCt3EqILFwnLNBq-3Qo7vME8VKY/w640-h480/image2.jpg" width="640" /></a></div>

<div style="color: #999999; text-align: center;">
<i> Debug team members with Prime Minister Lee Hsien Loong (center) and Mrs. Lee ( right of center)</i>
<div></div></div>

<p><br /></p><p><br /></p><p>Yanni Yoong, Program Manager, Debug; Hyegi Chung, Country Lead, Verily</p>

<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
  <meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
                        </script>
<noscript>
<p>
On September 15, the Debug team welcomed Singapore Prime Minister Lee Hsien Loong to our operations in Singapore, as part of his tour of the National Environment Agency (NEA) - Environmental Health Institute (EHI) Mosquito Production Facility. In addition to ongoing threats from Covid-19, dengue remains a top priority in Singapore, and his tour highlighted the importance of developing novel tools such as <a href="https://www.nea.gov.sg/corporate-functions/resources/research/wolbachia-aedes-mosquito-suppression-strategy" rel="noopener" target="_blank">Project Wolbachia</a> &#8211; Singapore to prevent the spread of dengue.
</p>

<p>
Prime Minister Lee saw first hand some of the tools that have enabled the success of Project Wolbachia &#8211; Singapore, in which Verily has <a href="https://blog.debug.com/2018/09/singapore-welcomes-debug-project.html">partnered</a> with the NEA-EHI since 2018. As part of the program, Verily has released male Wolbachia-carrying <i>Aedes aegypti </i>mosquitoes in parts of Tampines town and has achieved a <a href="https://www.nea.gov.sg/media/news/news/index/successful-study-paves-the-way-for-doubling-the-size-of-male-wolbachia-aedes-mosquito-release" rel="noopener" target="_blank">greater than 90% reduction in mosquito population,</a> resulting in <a href="https://www.nea.gov.sg/media/news/news/index/nea-expands-project-wolbachia-singapore-to-dengue-high-risk-areas-in-selected-neighbourhoods-at-choa-chu-kang-and-bukit-batok-towns" rel="noopener" target="_blank">65-80% reduction in dengue cases</a>.
</p>

<p>
We were honored to demonstrate our technology to Prime Minister Lee and Mrs. Lee, who joined him on the tour. Together they visited our Sex Sorting Room, currently housed within the NEA-EHI Mosquito Production Facility and took a deep dive into understanding our mosquito sex-sorting technology, which has been successfully used in <a href="https://blog.verily.com/2018/11/debug-fresno-2018-results-in-95.html" rel="noopener" target="_blank">Debug Fresno</a> and <a href="https://blog.debug.com/2018/07/debug-innisfail-achieves-strong.html" rel="noopener" target="_blank">Debug Innisfail</a> to separate male and female mosquitoes using a computer vision algorithm and artificial intelligence.
</p>

<div class="separator" style="clear: both; text-align: center;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjCgUiILgz7VGygyVnvup17v1maIQ_rCARAcEpHJrZviYeT9DZPTThw_ktshRT53OUnr4lbtLOdhszHW0QwYBFxD-TFme_PYJgYdyuu7G3G4j2eiuavy1q8hR87jmSJ0g7czlDjYbr7-UQ/s1500/image1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="1200" data-original-width="1500" height="512" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjCgUiILgz7VGygyVnvup17v1maIQ_rCARAcEpHJrZviYeT9DZPTThw_ktshRT53OUnr4lbtLOdhszHW0QwYBFxD-TFme_PYJgYdyuu7G3G4j2eiuavy1q8hR87jmSJ0g7czlDjYbr7-UQ/w640-h512/image1.jpg" width="640" /></a></div>

<div style="color: #999999; text-align: center;">
  <i>
  Prime Minister Lee Hsien Loong and Mrs. Lee taking a closer look at Verily sex sorters
  </i>
</div>

<p>
We are excited to continue to deploy our engineering and scientific capabilities to support NEA-EHI in scaling up production, sex sorting and release of male Wolbachia-carrying <i>Aedes aegypti</i> mosquitoes over the years to come.
</p>

<div class="separator" style="clear: both; text-align: center;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzr_KDVyxFkDQGdq6SIPbciI3SSWrOBXx4KexjVZurw4um3arRPRZoUouxny2aiZUAJnDGqckCOwegeCijpu2L_ajiHjCCVQOV37aALboOnVp4viLNcCt3EqILFwnLNBq-3Qo7vME8VKY/s983/image2.jpg" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="737" data-original-width="983" height="480" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzr_KDVyxFkDQGdq6SIPbciI3SSWrOBXx4KexjVZurw4um3arRPRZoUouxny2aiZUAJnDGqckCOwegeCijpu2L_ajiHjCCVQOV37aALboOnVp4viLNcCt3EqILFwnLNBq-3Qo7vME8VKY/w640-h480/image2.jpg" width="640" /></a></div>

<div style="color: #999999; text-align: center;">
<i> Debug team members with Prime Minister Lee Hsien Loong (center) and Mrs. Lee ( right of center)</i>
<div></div></div>

<p><br /></p><p><br /></p><p>Yanni Yoong, Program Manager, Debug; Hyegi Chung, Country Lead, Verily</p>
<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
<meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
</noscript>
</div>
</div>
<div class='share'>
<span class='gplus-share social-wrapper' data-href='https://plus.google.com/share?url=https://blog.debug.com/2020/10/singapore-prime-minister-lee-hsien.html'>
<img alt='Share on Google+' height='24' src='https://www.gstatic.com/images/branding/google_plus/2x/ic_w_post_gplus_black_24dp.png' width='24'/>
</span>
<span class='twitter-custom social-wrapper' data-href='http://twitter.com/share?text=Debug Project:Singapore Prime Minister Lee Hsien Loong visits Verily’s mosquito sex sorting operations at the Environmental Health Institute &url=https://blog.debug.com/2020/10/singapore-prime-minister-lee-hsien.html'>
<img alt='Share on Twitter' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_twitter_black_24dp.png' width='24'/>
</span>
<span class='fb-custom social-wrapper' data-href='https://www.facebook.com/sharer.php?u=https://blog.debug.com/2020/10/singapore-prime-minister-lee-hsien.html'>
<img alt='Share on Facebook' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_facebook_black_24dp.png' width='24'/>
</span>
</div>
<div class='post-footer'>
<div class='cmt_iframe_holder' data-href='https://blog.debug.com/2020/10/singapore-prime-minister-lee-hsien.html' data-viewtype='FILTERED_POSTMOD'></div>
<a href='https://plus.google.com/112374322230920073195' rel='author' style='display:none;'>
                        Google
                      </a>
<div class='label-footer'>
</div>
</div>
</div>
<div class='post' data-id='5969163714744715176' itemscope='' itemtype='http://schema.org/BlogPosting'>
<h2 class='title' itemprop='name'>
<a href='https://blog.debug.com/2020/09/debug-to-partner-with-puerto-rico.html' itemprop='url' title='Debug to partner with Puerto Rico Vector Control Unit in a large CDC-backed epidemiological trial '>
Debug to partner with Puerto Rico Vector Control Unit in a large CDC-backed epidemiological trial 
</a>
</h2>
<div class='post-header'>
<div class='published'>
<span class='publishdate' itemprop='datePublished'>
Friday, September 4, 2020
</span>
</div>
</div>
<div class='post-body'>
<div class='post-content' itemprop='articleBody'>
<script type='text/template'>
                          Today, we are excited to announce that Debug will be participating in <a href="http://prvectorcontrol.org/copa-project/" target="_blank">Communities Organized for the Prevention of Arbovirus</a> (COPA) based in Ponce, Puerto Rico. COPA is a community-based project to prevent diseases transmitted by mosquitoes. A central component of the project is a large epidemiological randomized control trial (RCT) to evaluate methods for suppressing mosquito populations and whether they can reduce the incidence of human arboviral infection. Debug was selected by the COPA steering committee to implement a <i>Wolbachia</i>-based sterile insect technique (SIT) for this trial to evaluate the extent to which SIT can reduce <i>Aedes aegypti</i> in Ponce release neighborhoods and reduce diseases like dengue and Zika, when coupled with community education.<br />
<br />
<div class="separator" style="clear: both;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhbeDNsGMOqqyCqmhqJQ_XnUkJcafktLnoqrggoIihbuaprovGfwd3tGl-SFa8vNCZ042A5lAiABy74LpFLxLkoUU57S46e8i5JUP7cukPS-r5ewXKosxaC_0biRNgSx3fLJXdLJtpo13A/s1148/Screen+Shot+2020-09-04+at+9.24.18+AM.png" style="display: block; padding: 1em 0; text-align: center;"><img alt="" border="0" data-original-height="740" data-original-width="1148" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhbeDNsGMOqqyCqmhqJQ_XnUkJcafktLnoqrggoIihbuaprovGfwd3tGl-SFa8vNCZ042A5lAiABy74LpFLxLkoUU57S46e8i5JUP7cukPS-r5ewXKosxaC_0biRNgSx3fLJXdLJtpo13A/s400/Screen+Shot+2020-09-04+at+9.24.18+AM.png" width="400"/></a></div><br />
<br />
This project is in collaboration with the <a href="http://prvectorcontrol.org/about/" target="_blank">Puerto Rico Vector Control Unit</a> (PRVCU), who will be running the release program in Ponce using Debug technology and WB1 <i>Wolbachia</i> mosquitoes (through our partnership with <a href="https://mosquitomate.com/about-us/" target="_blank">MosquitoMate</a>), Ponce Health Sciences University, and the Centers for Disease Control and Prevention (CDC), who will be independently collecting epidemiological data from residents in both the release and control neighborhoods.  <br />
<br />
<div class="separator" style="clear: both;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjjBqyKlcwmHXU7qM2jA2zlTTSvsjuZN9Nrr1x4y26W5T5W-i1mbQQktH3f989yoUb33ftjFytPEYKJ7p-sgfGQGJAo9I3L1EvOxm3HW3HvZKuCIOXHS-clW9g4oaBNxLfpIVFbxS1hzQ4/s1024/Partial_view_of_the_City_of_Ponce%252C_looking_SSW_from_Cerro_El_Vigi%25CC%2581a%252C_Barrio_Portugue%25CC%2581s_Urbano%252C_Ponce%252C_Puerto_Rico.jpg" style="display: block; padding: 1em 0; text-align: center;"><img alt="" border="0" data-original-height="768" data-original-width="1024" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjjBqyKlcwmHXU7qM2jA2zlTTSvsjuZN9Nrr1x4y26W5T5W-i1mbQQktH3f989yoUb33ftjFytPEYKJ7p-sgfGQGJAo9I3L1EvOxm3HW3HvZKuCIOXHS-clW9g4oaBNxLfpIVFbxS1hzQ4/s600/Partial_view_of_the_City_of_Ponce%252C_looking_SSW_from_Cerro_El_Vigi%25CC%2581a%252C_Barrio_Portugue%25CC%2581s_Urbano%252C_Ponce%252C_Puerto_Rico.jpg" width="600"/></a></div>
<div style="text-align: center;">
<span style="color: #999999;"><i>Credit: <a href="https://commons.wikimedia.org/w/index.php?curid=891318" target="_blank">Jose Oquendo</a> - Own work, CC BY-SA 3.0 </i></span></div>
<br />
<br />
<br />
<br />
Our ability to contribute to this important evaluation is based on several successful Debug field trials, which demonstrated a considerable reduction in the <i>Ae. aegypti</i> mosquito populations in areas of <a href="https://www.nature.com/articles/s41587-020-0471-x" target="_blank">California</a>, <a href="https://blog.debug.com/2019/11/singapore-collaboration-achieves.html" target="_blank">Singapore</a> and <a href="https://blog.debug.com/2018/07/debug-innisfail-achieves-strong.html" target="_blank">Australia</a>. Like our other field releases, Debug technology will be used to rear and release male <i>Ae. aegypti</i> mosquitoes with <i>Wolbachia</i> - a naturally occurring bacterium. When our male mosquitoes mate with local female <i>Ae. aegypti</i> mosquitoes, their eggs do not hatch, reducing the population over time. Our participation in COPA represents Debug&#8217;s first opportunity to directly assess, through an RCT, the impact of our approach on human disease outcomes, with the hope of reducing the incidence of diseases spread by <i>Ae. aegypti</i>. Puerto Rico has endured a number of large arboviral outbreaks in recent years, including major dengue epidemics in 2010, 2012-2013, chikungunya in 2014, and a large Zika outbreak in 2016.<br />
<br />
<div class="separator" style="clear: both;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi5RGAqFswLw_lJEb6U_c4p6CgRY2cLpt-FAl-ZvHdkKXM_v2EurQy9Db2WD3q598iyC5T3-QyyEffxkCXKiw5uKYQfWEWNMjDX85srsdI_qrktfbQ1_v_zyjTAuEiL88U4eTdSewiGKyM/s1200/Screen+Shot+2020-09-04+at+9.41.10+AM.png" style="display: block; padding: 1em 0; text-align: center;"><img alt="" border="0" data-original-height="638" data-original-width="1200" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi5RGAqFswLw_lJEb6U_c4p6CgRY2cLpt-FAl-ZvHdkKXM_v2EurQy9Db2WD3q598iyC5T3-QyyEffxkCXKiw5uKYQfWEWNMjDX85srsdI_qrktfbQ1_v_zyjTAuEiL88U4eTdSewiGKyM/s600/Screen+Shot+2020-09-04+at+9.41.10+AM.png" width="600"/></a></div>
<div style="text-align: center;">
<span style="color: #999999;">Yearly Arboviral Confirmed and Probable Cases, Puerto Rico, 2007- 2020. 
Data sources: dengue: <a href="https://www.paho.org/data/index.php/en/mnu-topics/indicadores-dengue-en/dengue-nacional-en/252-dengue-pais-ano-en.html?start=1" target="_blank">PAHO, confirmed and probable cases</a>, chikungunya: <a href="http://www.salud.gov.pr/Estadisticas-Registros-y-Publicaciones/Pages/Chikungunya.aspx" target="_blank">PRDH, confirmed and probable cases</a>, Zika: <a href="https://www.paho.org/data/index.php/en/?option=com_content&amp;view=article&amp;id=524:zika-weekly-en&amp;Itemid=352" target="_blank">PAHO, confirmed and probable cases</a>, last updated: July 17, 2020. </span></div><br />
<br />
<br />
<br /> 
<br />
For COPA, we are very fortunate to build on multiple years of work from PRVCU and the CDC whose efforts with community outreach, mosquito surveillance, trial design, and serological testing form the strong foundation upon which this evaluation can take place. Our partnership has commenced releases for the COPA RCT, which consists of 12 neighborhood zones where mosquito and serological surveillance has been performed. Clusters within these 12 zones have been randomly selected to receive Debug&#8217;s <i>Wolbachia</i>-based SIT and the remaining areas will act as controls. <br />
<br />
<div class="separator" style="clear: both;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjo4MeilpdmpVkVVStR85K_ppVna2M_W2IYx7QIRmVu0KyPIYBR3A78K82u6df9Eu9GbNtMEFZyjrNRgdKY_L-TCoaIZZJAQvwDTZ9NsYBY7XqMN_LjnTK6NqrSiPKw2KtXMdO7Lb-I7Go/s1518/Screen+Shot+2020-09-04+at+10.09.41+AM.png" style="display: block; padding: 1em 0; text-align: center;"><img alt="" border="0" data-original-height="616" data-original-width="1518" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjo4MeilpdmpVkVVStR85K_ppVna2M_W2IYx7QIRmVu0KyPIYBR3A78K82u6df9Eu9GbNtMEFZyjrNRgdKY_L-TCoaIZZJAQvwDTZ9NsYBY7XqMN_LjnTK6NqrSiPKw2KtXMdO7Lb-I7Go/s600/Screen+Shot+2020-09-04+at+10.09.41+AM.png" width="600"/></a></div>
<div style="text-align: center;">
<span style="color: #999999;">12 neighborhood zones in the COPA RCT in Ponce, Puerto Rico</span></div>
<br />
<br />
<br />
<br /> 
This is an important next step for Debug, as we deploy our technique for the first time in this region where diseases spread by <i>Ae. aegypti</i> pose a consistent threat to human health and wellness. We are thrilled to partner with local and national experts in this program as we work together to hopefully see a significant, positive impact on the health of people in Ponce.<br />
<br />
<br />
<br />
<span style="color: #999999;">Sara N Mitchell, PhD, Senior Scientist, Verily</span>





<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
  <meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
                        </script>
<noscript>
Today, we are excited to announce that Debug will be participating in <a href="http://prvectorcontrol.org/copa-project/" target="_blank">Communities Organized for the Prevention of Arbovirus</a> (COPA) based in Ponce, Puerto Rico. COPA is a community-based project to prevent diseases transmitted by mosquitoes. A central component of the project is a large epidemiological randomized control trial (RCT) to evaluate methods for suppressing mosquito populations and whether they can reduce the incidence of human arboviral infection. Debug was selected by the COPA steering committee to implement a <i>Wolbachia</i>-based sterile insect technique (SIT) for this trial to evaluate the extent to which SIT can reduce <i>Aedes aegypti</i> in Ponce release neighborhoods and reduce diseases like dengue and Zika, when coupled with community education.<br />
<br />
<div class="separator" style="clear: both;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhbeDNsGMOqqyCqmhqJQ_XnUkJcafktLnoqrggoIihbuaprovGfwd3tGl-SFa8vNCZ042A5lAiABy74LpFLxLkoUU57S46e8i5JUP7cukPS-r5ewXKosxaC_0biRNgSx3fLJXdLJtpo13A/s1148/Screen+Shot+2020-09-04+at+9.24.18+AM.png" style="display: block; padding: 1em 0; text-align: center;"><img alt="" border="0" data-original-height="740" data-original-width="1148" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhbeDNsGMOqqyCqmhqJQ_XnUkJcafktLnoqrggoIihbuaprovGfwd3tGl-SFa8vNCZ042A5lAiABy74LpFLxLkoUU57S46e8i5JUP7cukPS-r5ewXKosxaC_0biRNgSx3fLJXdLJtpo13A/s400/Screen+Shot+2020-09-04+at+9.24.18+AM.png" width="400"/></a></div><br />
<br />
This project is in collaboration with the <a href="http://prvectorcontrol.org/about/" target="_blank">Puerto Rico Vector Control Unit</a> (PRVCU), who will be running the release program in Ponce using Debug technology and WB1 <i>Wolbachia</i> mosquitoes (through our partnership with <a href="https://mosquitomate.com/about-us/" target="_blank">MosquitoMate</a>), Ponce Health Sciences University, and the Centers for Disease Control and Prevention (CDC), who will be independently collecting epidemiological data from residents in both the release and control neighborhoods.  <br />
<br />
<div class="separator" style="clear: both;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjjBqyKlcwmHXU7qM2jA2zlTTSvsjuZN9Nrr1x4y26W5T5W-i1mbQQktH3f989yoUb33ftjFytPEYKJ7p-sgfGQGJAo9I3L1EvOxm3HW3HvZKuCIOXHS-clW9g4oaBNxLfpIVFbxS1hzQ4/s1024/Partial_view_of_the_City_of_Ponce%252C_looking_SSW_from_Cerro_El_Vigi%25CC%2581a%252C_Barrio_Portugue%25CC%2581s_Urbano%252C_Ponce%252C_Puerto_Rico.jpg" style="display: block; padding: 1em 0; text-align: center;"><img alt="" border="0" data-original-height="768" data-original-width="1024" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjjBqyKlcwmHXU7qM2jA2zlTTSvsjuZN9Nrr1x4y26W5T5W-i1mbQQktH3f989yoUb33ftjFytPEYKJ7p-sgfGQGJAo9I3L1EvOxm3HW3HvZKuCIOXHS-clW9g4oaBNxLfpIVFbxS1hzQ4/s600/Partial_view_of_the_City_of_Ponce%252C_looking_SSW_from_Cerro_El_Vigi%25CC%2581a%252C_Barrio_Portugue%25CC%2581s_Urbano%252C_Ponce%252C_Puerto_Rico.jpg" width="600"/></a></div>
<div style="text-align: center;">
<span style="color: #999999;"><i>Credit: <a href="https://commons.wikimedia.org/w/index.php?curid=891318" target="_blank">Jose Oquendo</a> - Own work, CC BY-SA 3.0 </i></span></div>
<br />
<br />
<br />
<br />
Our ability to contribute to this important evaluation is based on several successful Debug field trials, which demonstrated a considerable reduction in the <i>Ae. aegypti</i> mosquito populations in areas of <a href="https://www.nature.com/articles/s41587-020-0471-x" target="_blank">California</a>, <a href="https://blog.debug.com/2019/11/singapore-collaboration-achieves.html" target="_blank">Singapore</a> and <a href="https://blog.debug.com/2018/07/debug-innisfail-achieves-strong.html" target="_blank">Australia</a>. Like our other field releases, Debug technology will be used to rear and release male <i>Ae. aegypti</i> mosquitoes with <i>Wolbachia</i> - a naturally occurring bacterium. When our male mosquitoes mate with local female <i>Ae. aegypti</i> mosquitoes, their eggs do not hatch, reducing the population over time. Our participation in COPA represents Debug&#8217;s first opportunity to directly assess, through an RCT, the impact of our approach on human disease outcomes, with the hope of reducing the incidence of diseases spread by <i>Ae. aegypti</i>. Puerto Rico has endured a number of large arboviral outbreaks in recent years, including major dengue epidemics in 2010, 2012-2013, chikungunya in 2014, and a large Zika outbreak in 2016.<br />
<br />
<div class="separator" style="clear: both;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi5RGAqFswLw_lJEb6U_c4p6CgRY2cLpt-FAl-ZvHdkKXM_v2EurQy9Db2WD3q598iyC5T3-QyyEffxkCXKiw5uKYQfWEWNMjDX85srsdI_qrktfbQ1_v_zyjTAuEiL88U4eTdSewiGKyM/s1200/Screen+Shot+2020-09-04+at+9.41.10+AM.png" style="display: block; padding: 1em 0; text-align: center;"><img alt="" border="0" data-original-height="638" data-original-width="1200" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi5RGAqFswLw_lJEb6U_c4p6CgRY2cLpt-FAl-ZvHdkKXM_v2EurQy9Db2WD3q598iyC5T3-QyyEffxkCXKiw5uKYQfWEWNMjDX85srsdI_qrktfbQ1_v_zyjTAuEiL88U4eTdSewiGKyM/s600/Screen+Shot+2020-09-04+at+9.41.10+AM.png" width="600"/></a></div>
<div style="text-align: center;">
<span style="color: #999999;">Yearly Arboviral Confirmed and Probable Cases, Puerto Rico, 2007- 2020. 
Data sources: dengue: <a href="https://www.paho.org/data/index.php/en/mnu-topics/indicadores-dengue-en/dengue-nacional-en/252-dengue-pais-ano-en.html?start=1" target="_blank">PAHO, confirmed and probable cases</a>, chikungunya: <a href="http://www.salud.gov.pr/Estadisticas-Registros-y-Publicaciones/Pages/Chikungunya.aspx" target="_blank">PRDH, confirmed and probable cases</a>, Zika: <a href="https://www.paho.org/data/index.php/en/?option=com_content&amp;view=article&amp;id=524:zika-weekly-en&amp;Itemid=352" target="_blank">PAHO, confirmed and probable cases</a>, last updated: July 17, 2020. </span></div><br />
<br />
<br />
<br /> 
<br />
For COPA, we are very fortunate to build on multiple years of work from PRVCU and the CDC whose efforts with community outreach, mosquito surveillance, trial design, and serological testing form the strong foundation upon which this evaluation can take place. Our partnership has commenced releases for the COPA RCT, which consists of 12 neighborhood zones where mosquito and serological surveillance has been performed. Clusters within these 12 zones have been randomly selected to receive Debug&#8217;s <i>Wolbachia</i>-based SIT and the remaining areas will act as controls. <br />
<br />
<div class="separator" style="clear: both;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjo4MeilpdmpVkVVStR85K_ppVna2M_W2IYx7QIRmVu0KyPIYBR3A78K82u6df9Eu9GbNtMEFZyjrNRgdKY_L-TCoaIZZJAQvwDTZ9NsYBY7XqMN_LjnTK6NqrSiPKw2KtXMdO7Lb-I7Go/s1518/Screen+Shot+2020-09-04+at+10.09.41+AM.png" style="display: block; padding: 1em 0; text-align: center;"><img alt="" border="0" data-original-height="616" data-original-width="1518" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjo4MeilpdmpVkVVStR85K_ppVna2M_W2IYx7QIRmVu0KyPIYBR3A78K82u6df9Eu9GbNtMEFZyjrNRgdKY_L-TCoaIZZJAQvwDTZ9NsYBY7XqMN_LjnTK6NqrSiPKw2KtXMdO7Lb-I7Go/s600/Screen+Shot+2020-09-04+at+10.09.41+AM.png" width="600"/></a></div>
<div style="text-align: center;">
<span style="color: #999999;">12 neighborhood zones in the COPA RCT in Ponce, Puerto Rico</span></div>
<br />
<br />
<br />
<br /> 
This is an important next step for Debug, as we deploy our technique for the first time in this region where diseases spread by <i>Ae. aegypti</i> pose a consistent threat to human health and wellness. We are thrilled to partner with local and national experts in this program as we work together to hopefully see a significant, positive impact on the health of people in Ponce.<br />
<br />
<br />
<br />
<span style="color: #999999;">Sara N Mitchell, PhD, Senior Scientist, Verily</span>




<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
<meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
</noscript>
</div>
</div>
<div class='share'>
<span class='gplus-share social-wrapper' data-href='https://plus.google.com/share?url=https://blog.debug.com/2020/09/debug-to-partner-with-puerto-rico.html'>
<img alt='Share on Google+' height='24' src='https://www.gstatic.com/images/branding/google_plus/2x/ic_w_post_gplus_black_24dp.png' width='24'/>
</span>
<span class='twitter-custom social-wrapper' data-href='http://twitter.com/share?text=Debug Project:Debug to partner with Puerto Rico Vector Control Unit in a large CDC-backed epidemiological trial &url=https://blog.debug.com/2020/09/debug-to-partner-with-puerto-rico.html'>
<img alt='Share on Twitter' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_twitter_black_24dp.png' width='24'/>
</span>
<span class='fb-custom social-wrapper' data-href='https://www.facebook.com/sharer.php?u=https://blog.debug.com/2020/09/debug-to-partner-with-puerto-rico.html'>
<img alt='Share on Facebook' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_facebook_black_24dp.png' width='24'/>
</span>
</div>
<div class='post-footer'>
<div class='cmt_iframe_holder' data-href='https://blog.debug.com/2020/09/debug-to-partner-with-puerto-rico.html' data-viewtype='FILTERED_POSTMOD'></div>
<a href='https://plus.google.com/112374322230920073195' rel='author' style='display:none;'>
                        Google
                      </a>
<div class='label-footer'>
</div>
</div>
</div>
<div class='post' data-id='8093894661617583129' itemscope='' itemtype='http://schema.org/BlogPosting'>
<h2 class='title' itemprop='name'>
<a href='https://blog.debug.com/2020/04/nature-biotechnology-features-debug.html' itemprop='url' title='Nature Biotechnology features Debug Fresno'>
Nature Biotechnology features Debug Fresno
</a>
</h2>
<div class='post-header'>
<div class='published'>
<span class='publishdate' itemprop='datePublished'>
Monday, April 6, 2020
</span>
</div>
</div>
<div class='post-body'>
<div class='post-content' itemprop='articleBody'>
<script type='text/template'>
                          Today, our <a href="https://www.nature.com/articles/s41587-020-0471-x">scientific paper</a> reporting near-elimination of <i>Aedes aegypti</i> from three neighborhoods in Fresno County, California was published in the journal Nature Biotechnology. While we <a href="https://blog.debug.com/2018/11/debug-fresno-2018-results-in-95.html">previously summarized</a> the impressive topline results of our Debug Fresno program, the peer-reviewed paper provides extensive new details regarding our field study design, mosquito rearing and release technology, trapping data, and analysis methods. The general public, mosquito control community, governmental stakeholders, and regulators alike can now independently review our methods and results.<br />
<br />
<br />
<br />
<div class="separator" style="clear: both; text-align: center;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjmheIJqOt4owgX_mFti0Po1DqZmmOUi1l3UpeLbURNui0LnElDYuGyVajMP0SW_lc0ygP-_wV5kKnPnkIqQvBrD7HVb0qODV8Tr8BGr3O5c06elFimfe6wjjB5q-rSb-vy9Ec62F4Olhs/s1600/sex_sorter_lane_cropped.gif" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="421" data-original-width="893" height="302" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjmheIJqOt4owgX_mFti0Po1DqZmmOUi1l3UpeLbURNui0LnElDYuGyVajMP0SW_lc0ygP-_wV5kKnPnkIqQvBrD7HVb0qODV8Tr8BGr3O5c06elFimfe6wjjB5q-rSb-vy9Ec62F4Olhs/s640/sex_sorter_lane_cropped.gif" width="640" /></a></div>
<span style="color: #999999;">Debug-built sex sorters achieve unprecedented accuracy by classifying individual males and females using industrial vision and machine learning algorithms.</span>
<br />
<br />
<br />
<br />

Of particular interest, the manuscript reveals formerly undisclosed features and performance metrics of our automated mosquito production and release tools. In the paper, we describe how we reared mosquito larvae in disposable, thermoformed plastic containers, resulting in unprecedented consistency in male mosquito production. We also provide a step-by-step breakdown of our automated sex separation process including calculations of accuracy at each step. For the end-to-end process, we achieved a remarkable level of accuracy that is orders of magnitude better than manual sex separation methods. On the release side, we provide visualizations of how custom software guides male mosquito releases from our vans and allows us to detect and target those areas where releasing additional male mosquitoes would further improve program effectiveness. In addition to these metrics and descriptions, we are releasing all of the field data we collected during the course of the study to allow for analytical replication. <br />
<br />

 
Debug Fresno was an incredibly rewarding partnership among ourselves, the Consolidated Mosquito Abatement District, MosquitoMate, and the residents of Fresno County. As our first field trial, it taught us many lessons about how to successfully run a sterile insect technique (SIT) program. Publication of the results from this field study marks a critical point in the evolution of the Debug project. We now have clear, peer-reviewed evidence that Debug technology can be used to massively suppress the number of biting female <i>Aedes aegypti</i> by automating both mass-rearing and release of sterile male mosquitoes. More than 2 billion people are at risk of contracting <i>Aedes</i>-borne viruses such as dengue, Zika, and chikungunya, and the global distribution of <i>Aedes aegypti</i> continues to expand worldwide. Our results give hope that we&#8212;in collaboration with forward-thinking partners&#8212;can turn the tide in this ongoing global health challenge.  We have already incorporated what we learned from this trial into our other programs around the world, including our work with <a href="https://blog.debug.com/2019/11/singapore-collaboration-achieves.html">The National Environment Agency (NEA) in Singapore</a>, and look forward to expanding to additional communities that routinely suffer from outbreaks of <i>Aedes</i>-transmitted diseases. <br />
<br />
<br />
<br />
<br />
<br />
<span style="color: #999999;">Jacob Crawford, PhD, Sr. Scientist, Verily and Brad White, PhD, Debug Lead Scientist, Verily </span>
 

<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
  <meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
                        </script>
<noscript>
Today, our <a href="https://www.nature.com/articles/s41587-020-0471-x">scientific paper</a> reporting near-elimination of <i>Aedes aegypti</i> from three neighborhoods in Fresno County, California was published in the journal Nature Biotechnology. While we <a href="https://blog.debug.com/2018/11/debug-fresno-2018-results-in-95.html">previously summarized</a> the impressive topline results of our Debug Fresno program, the peer-reviewed paper provides extensive new details regarding our field study design, mosquito rearing and release technology, trapping data, and analysis methods. The general public, mosquito control community, governmental stakeholders, and regulators alike can now independently review our methods and results.<br />
<br />
<br />
<br />
<div class="separator" style="clear: both; text-align: center;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjmheIJqOt4owgX_mFti0Po1DqZmmOUi1l3UpeLbURNui0LnElDYuGyVajMP0SW_lc0ygP-_wV5kKnPnkIqQvBrD7HVb0qODV8Tr8BGr3O5c06elFimfe6wjjB5q-rSb-vy9Ec62F4Olhs/s1600/sex_sorter_lane_cropped.gif" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="421" data-original-width="893" height="302" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjmheIJqOt4owgX_mFti0Po1DqZmmOUi1l3UpeLbURNui0LnElDYuGyVajMP0SW_lc0ygP-_wV5kKnPnkIqQvBrD7HVb0qODV8Tr8BGr3O5c06elFimfe6wjjB5q-rSb-vy9Ec62F4Olhs/s640/sex_sorter_lane_cropped.gif" width="640" /></a></div>
<span style="color: #999999;">Debug-built sex sorters achieve unprecedented accuracy by classifying individual males and females using industrial vision and machine learning algorithms.</span>
<br />
<br />
<br />
<br />

Of particular interest, the manuscript reveals formerly undisclosed features and performance metrics of our automated mosquito production and release tools. In the paper, we describe how we reared mosquito larvae in disposable, thermoformed plastic containers, resulting in unprecedented consistency in male mosquito production. We also provide a step-by-step breakdown of our automated sex separation process including calculations of accuracy at each step. For the end-to-end process, we achieved a remarkable level of accuracy that is orders of magnitude better than manual sex separation methods. On the release side, we provide visualizations of how custom software guides male mosquito releases from our vans and allows us to detect and target those areas where releasing additional male mosquitoes would further improve program effectiveness. In addition to these metrics and descriptions, we are releasing all of the field data we collected during the course of the study to allow for analytical replication. <br />
<br />

 
Debug Fresno was an incredibly rewarding partnership among ourselves, the Consolidated Mosquito Abatement District, MosquitoMate, and the residents of Fresno County. As our first field trial, it taught us many lessons about how to successfully run a sterile insect technique (SIT) program. Publication of the results from this field study marks a critical point in the evolution of the Debug project. We now have clear, peer-reviewed evidence that Debug technology can be used to massively suppress the number of biting female <i>Aedes aegypti</i> by automating both mass-rearing and release of sterile male mosquitoes. More than 2 billion people are at risk of contracting <i>Aedes</i>-borne viruses such as dengue, Zika, and chikungunya, and the global distribution of <i>Aedes aegypti</i> continues to expand worldwide. Our results give hope that we&#8212;in collaboration with forward-thinking partners&#8212;can turn the tide in this ongoing global health challenge.  We have already incorporated what we learned from this trial into our other programs around the world, including our work with <a href="https://blog.debug.com/2019/11/singapore-collaboration-achieves.html">The National Environment Agency (NEA) in Singapore</a>, and look forward to expanding to additional communities that routinely suffer from outbreaks of <i>Aedes</i>-transmitted diseases. <br />
<br />
<br />
<br />
<br />
<br />
<span style="color: #999999;">Jacob Crawford, PhD, Sr. Scientist, Verily and Brad White, PhD, Debug Lead Scientist, Verily </span>
 
<span itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
<meta content='https://plus.google.com/116899029375914044550' itemprop='url'/>
</span>
</noscript>
</div>
</div>
<div class='share'>
<span class='gplus-share social-wrapper' data-href='https://plus.google.com/share?url=https://blog.debug.com/2020/04/nature-biotechnology-features-debug.html'>
<img alt='Share on Google+' height='24' src='https://www.gstatic.com/images/branding/google_plus/2x/ic_w_post_gplus_black_24dp.png' width='24'/>
</span>
<span class='twitter-custom social-wrapper' data-href='http://twitter.com/share?text=Debug Project:Nature Biotechnology features Debug Fresno&url=https://blog.debug.com/2020/04/nature-biotechnology-features-debug.html'>
<img alt='Share on Twitter' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_twitter_black_24dp.png' width='24'/>
</span>
<span class='fb-custom social-wrapper' data-href='https://www.facebook.com/sharer.php?u=https://blog.debug.com/2020/04/nature-biotechnology-features-debug.html'>
<img alt='Share on Facebook' height='24' src='https://www.gstatic.com/images/icons/material/system/2x/post_facebook_black_24dp.png' width='24'/>
</span>
</div>
<div class='post-footer'>
<div class='cmt_iframe_holder' data-href='https://blog.debug.com/2020/04/nature-biotechnology-features-debug.html' data-viewtype='FILTERED_POSTMOD'></div>
<a href='https://plus.google.com/112374322230920073195' rel='author' style='display:none;'>
                        Google
                      </a>
<div class='label-footer'>
</div>
</div>
</div>
<div class='blog-pager' id='blog-pager'>
<a class='home-link' href='https://blog.debug.com/'>
<i class='material-icons'>
                      &#59530;
                    </i>
</a>
<i class='material-icons disabled'>
                      &#58820;
                    </i>
<span id='blog-pager-older-link'>
<a class='blog-pager-older-link' href='https://blog.debug.com/search?updated-max=2020-04-06T08:01:00-07:00&max-results=7' id='Blog1_blog-pager-older-link' title='Older Posts'>
<i class='material-icons'>
                          &#58824;
                        </i>
</a>
</span>
</div>
<div class='clear'></div>
</div></div>
</div>
</div>
<div class='col-right'>
<div class='section' id='sidebar-top'><div class='widget HTML' data-version='1' id='HTML7'>
<div class='widget-content'>
<div class='searchBox'>
<input type='text' title='Search This Blog' placeholder='Search blog ...' />
</div>
</div>
<div class='clear'></div>
</div></div>
<div id='aside'>
<div class='section' id='sidebar'>
<div class='widget BlogArchive' data-version='1' id='BlogArchive1'>
<div class='tab'>
<i class='material-icons icon'>
                      &#58055;
                    </i>
<h2>
Archive
</h2>
<i class='material-icons arrow'>
                      &#58821;
                    </i>
</div>
<div class='widget-content'>
<div id='ArchiveList'>
<div id='BlogArchive1_ArchiveList'>
<ul class='hierarchy'>
<li class='archivedate expanded'>
<div class='intervalToggle'>
<span class='new-toggle' href='javascript:void(0)'>
<i class='material-icons arrow'>
                    &#58821;
                  </i>
</span>
<a class='toggle' href='javascript:void(0)' style='display: none'>
<span class='zippy toggle-open'>
<i class='material-icons'>
                        &#58823;
                      </i>
                      &#160;
                      
</span>
</a>
<a class='post-count-link' href='https://blog.debug.com/2025/'>
2025
</a>
</div>
<div class='items'>
<ul class='hierarchy'>
<li class='archivedate expanded'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2025/09/'>
Sep
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2025/03/'>
Mar
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class='intervalToggle'>
<span class='new-toggle' href='javascript:void(0)'>
<i class='material-icons arrow'>
                    &#58821;
                  </i>
</span>
<a class='toggle' href='javascript:void(0)' style='display: none'>
<span class='zippy'>
<i class='material-icons'>
                        &#58821;
                      </i>
                      &#160;
                    
</span>
</a>
<a class='post-count-link' href='https://blog.debug.com/2024/'>
2024
</a>
</div>
<div class='items'>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2024/04/'>
Apr
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class='intervalToggle'>
<span class='new-toggle' href='javascript:void(0)'>
<i class='material-icons arrow'>
                    &#58821;
                  </i>
</span>
<a class='toggle' href='javascript:void(0)' style='display: none'>
<span class='zippy'>
<i class='material-icons'>
                        &#58821;
                      </i>
                      &#160;
                    
</span>
</a>
<a class='post-count-link' href='https://blog.debug.com/2022/'>
2022
</a>
</div>
<div class='items'>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2022/09/'>
Sep
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class='intervalToggle'>
<span class='new-toggle' href='javascript:void(0)'>
<i class='material-icons arrow'>
                    &#58821;
                  </i>
</span>
<a class='toggle' href='javascript:void(0)' style='display: none'>
<span class='zippy'>
<i class='material-icons'>
                        &#58821;
                      </i>
                      &#160;
                    
</span>
</a>
<a class='post-count-link' href='https://blog.debug.com/2020/'>
2020
</a>
</div>
<div class='items'>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2020/10/'>
Oct
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2020/09/'>
Sep
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2020/04/'>
Apr
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2020/01/'>
Jan
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class='intervalToggle'>
<span class='new-toggle' href='javascript:void(0)'>
<i class='material-icons arrow'>
                    &#58821;
                  </i>
</span>
<a class='toggle' href='javascript:void(0)' style='display: none'>
<span class='zippy'>
<i class='material-icons'>
                        &#58821;
                      </i>
                      &#160;
                    
</span>
</a>
<a class='post-count-link' href='https://blog.debug.com/2019/'>
2019
</a>
</div>
<div class='items'>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2019/11/'>
Nov
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2019/06/'>
Jun
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class='intervalToggle'>
<span class='new-toggle' href='javascript:void(0)'>
<i class='material-icons arrow'>
                    &#58821;
                  </i>
</span>
<a class='toggle' href='javascript:void(0)' style='display: none'>
<span class='zippy'>
<i class='material-icons'>
                        &#58821;
                      </i>
                      &#160;
                    
</span>
</a>
<a class='post-count-link' href='https://blog.debug.com/2018/'>
2018
</a>
</div>
<div class='items'>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2018/11/'>
Nov
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2018/09/'>
Sep
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2018/07/'>
Jul
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2018/04/'>
Apr
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class='intervalToggle'>
<span class='new-toggle' href='javascript:void(0)'>
<i class='material-icons arrow'>
                    &#58821;
                  </i>
</span>
<a class='toggle' href='javascript:void(0)' style='display: none'>
<span class='zippy'>
<i class='material-icons'>
                        &#58821;
                      </i>
                      &#160;
                    
</span>
</a>
<a class='post-count-link' href='https://blog.debug.com/2017/'>
2017
</a>
</div>
<div class='items'>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2017/12/'>
Dec
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2017/11/'>
Nov
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2017/07/'>
Jul
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2017/03/'>
Mar
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2017/02/'>
Feb
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2017/01/'>
Jan
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
</div>
</li>
</ul>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class='intervalToggle'>
<span class='new-toggle' href='javascript:void(0)'>
<i class='material-icons arrow'>
                    &#58821;
                  </i>
</span>
<a class='toggle' href='javascript:void(0)' style='display: none'>
<span class='zippy'>
<i class='material-icons'>
                        &#58821;
                      </i>
                      &#160;
                    
</span>
</a>
<a class='post-count-link' href='https://blog.debug.com/2016/'>
2016
</a>
</div>
<div class='items'>
<ul class='hierarchy'>
<li class='archivedate collapsed'>
<div class=''>
<a class='post-count-link' href='https://blog.debug.com/2016/10/'>
Oct
</a>
</div>
<div class='items'>
</div>
</li>
</ul>
</div>
</li>
</ul>
</div>
</div>
<div class='clear'></div>
</div>
</div><div class='widget HTML' data-version='1' id='HTML6'>
<div class='widget-content'>
<a href="http://feeds.feedburner.com/debugproject">
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAihJREFUeNrsWa9Pw0AU7viRMDFRBAkzJDMIBIhJJhCzk7NILIqMv4AEhdz+BCY3OYssAlGBoAJREpZwAlHEBO8lr8nSvNeVbu1dyX3JlzTrXfa+u/e9d7c5joWFhYVO1Fa8PwH2gK6m+BRwAvSlAdsrgr8E1jUuMH73GTAEzrkBWymTewZlihhLmgDXIAFuHgGVQOUF7OSYM1p6PgTuA1vAZlUEvAnPdapcMY0VICECekQ0XRfYrqoHsAGNgXfAoMomRiFDEhOZkkL3S88hMaB2LwXp0bj+ps2edpToZpjfoIDQtBeU+xjoDzP2G/gCPKZ5f8WsCAFJoJgOCcFdWSTeL9YQMSvTA1h9BkI5jaiXhLpSCL/8mVZY0UpyJ9ZdOkniu1dmJ96BpzQu9w6s28gcOq9j6pwLdR8/36NK5CQKwJSMrb2MhhSglBpt4UjsrdsnNu0B3J0HCozbCc4TjyY2srEgos/4RQljCzNxl4ireQD8FOq+T+W0mTB2g7njhlR+Sy2jsXFvU658U8YTbeaGpdIu7mWkEAq5ZtIjIhFZdtfX7QHckSvB2B6zC3VdAkZk0kAQwaXTk/CzTXK3wjIExCs6ZJpTnE4uY1KV+KzFzA3KTiFPENHJkOPcsfpLhwe4btoSuvUqAR+6TOxlCE6ZfKUsJLgsqGW8OpqAGx2X+sLxrwUog+JUeQRMDBIwyXOcnlPtPnL0/UsT/8LnOxYWFhZG4leAAQAAQHEaYuzHbAAAAABJRU5ErkJggg==" class="sidebar-icon" />
<h2>Feed</h2>
</a>
</div>
<div class='clear'></div>
</div><div class='widget HTML' data-version='1' id='HTML1'>
<div class='widget-content'>
<form style="text-align:center;" action="https://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open('https://feedburner.google.com/fb/a/mailverify?uri=debugproject', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true"><p>Subscribe through email:</p><p><input type="text" style="width:140px" name="email"/></p><input type="hidden" value="debugproject" name="uri"/><input type="hidden" name="loc" value="en_US"/><input type="submit" value="Subscribe" /></form>
</div>
<div class='clear'></div>
</div></div>
<div class='no-items section' id='sidebar-bottom'></div>
</div>
</div>
<div style='clear:both;'></div>
</div>
</div>
<!-- Footer -->
<div class='footer-outer loading'>
<div class='footer-inner'>
<div class='footer-inner-2'>
<div style='width:33%;float:left;'>
<div class='no-items section' id='footer-1'></div>
</div>
<div style='width:33%;float:left;'>
<div class='no-items section' id='footer-2'></div>
</div>
<div style='width:33%;float:left;'>
<div class='no-items section' id='footer-3'></div>
</div>
<div style='clear:both;'></div>
</div>
</div>
</div>
<!-- <div class='google-footer-outer loading'> <div id='google-footer'> <a href='//www.google.com/'> <img class='google-logo-dark' height='36' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiIcdC1mxq7zf0j3GcX1BwSoY1vTQ2BGpkeIO2lXtxXzOqZdkyfCSuXB_jRaBU3TVgzBUdB06zDl1sNXfYbkVDx3ruhl9Yz_QsVkDIq1TjYYCLr4ntpmL_yAAMlfXTvg7m6Bgfxm7l4aCMm/s1600/debug-bw.png' style='margin-top: -16px;'/> </a> <ul> <li> <a href='//www.google.com/'> Google </a> </li> <li> <a href='//www.google.com/policies/privacy/'> Privacy </a> </li> <li> <a href='//www.google.com/policies/terms/'> Terms </a> </li> </ul> </div> </div> -->
<footer class='glue-footer'>
<section class='glue-footer__global'>
<div class='glue-footer__logo'>
<a href='https://www.google.com' title='Google'>
<svg aria-hidden='true' class='glue-footer__logo-img' role='presentation'>
<path d='M9.24 8.19v2.46h5.88c-.18 1.38-.64 2.39-1.34 3.1-.86.86-2.2 1.8-4.54 1.8-3.62 0-6.45-2.92-6.45-6.54s2.83-6.54 6.45-6.54c1.95 0 3.38.77 4.43 1.76L15.4 2.5C13.94 1.08 11.98 0 9.24 0 4.28 0 .11 4.04.11 9s4.17 9 9.13 9c2.68 0 4.7-.88 6.28-2.52 1.62-1.62 2.13-3.91 2.13-5.75 0-.57-.04-1.1-.13-1.54H9.24zm15.76-2c-3.21 0-5.83 2.44-5.83 5.81 0 3.34 2.62 5.81 5.83 5.81s5.83-2.46 5.83-5.81c0-3.37-2.62-5.81-5.83-5.81zm0 9.33c-1.76 0-3.28-1.45-3.28-3.52 0-2.09 1.52-3.52 3.28-3.52s3.28 1.43 3.28 3.52c0 2.07-1.52 3.52-3.28 3.52zm28.58-8.03h-.09c-.57-.68-1.67-1.3-3.06-1.3C47.53 6.19 45 8.72 45 12c0 3.26 2.53 5.81 5.43 5.81 1.39 0 2.49-.62 3.06-1.32h.09v.81c0 2.22-1.19 3.41-3.1 3.41-1.56 0-2.53-1.12-2.93-2.07l-2.22.92c.64 1.54 2.33 3.43 5.15 3.43 2.99 0 5.52-1.76 5.52-6.05V6.49h-2.42v1zm-2.93 8.03c-1.76 0-3.1-1.5-3.1-3.52 0-2.05 1.34-3.52 3.1-3.52 1.74 0 3.1 1.5 3.1 3.54.01 2.03-1.36 3.5-3.1 3.5zM38 6.19c-3.21 0-5.83 2.44-5.83 5.81 0 3.34 2.62 5.81 5.83 5.81s5.83-2.46 5.83-5.81c0-3.37-2.62-5.81-5.83-5.81zm0 9.33c-1.76 0-3.28-1.45-3.28-3.52 0-2.09 1.52-3.52 3.28-3.52s3.28 1.43 3.28 3.52c0 2.07-1.52 3.52-3.28 3.52zM58 .24h2.51v17.57H58zm10.26 15.28c-1.3 0-2.22-.59-2.82-1.76l7.77-3.21-.26-.66c-.48-1.3-1.96-3.7-4.97-3.7-2.99 0-5.48 2.35-5.48 5.81 0 3.26 2.46 5.81 5.76 5.81 2.66 0 4.2-1.63 4.84-2.57l-1.98-1.32c-.66.96-1.56 1.6-2.86 1.6zm-.18-7.15c1.03 0 1.91.53 2.2 1.28l-5.25 2.17c0-2.44 1.73-3.45 3.05-3.45z'>
</path>
</svg>
</a>
</div>
<ul class='glue-footer__global-links glue-no-bullet' role='list'>
<li class='glue-footer__global-links-list-item'>
<a class='glue-footer__link' href='https://about.google/'>
              About Google
            </a>
</li>
<li class='glue-footer__global-links-list-item'>
<a class='glue-footer__link' href='https://about.google/products/'>
              Google products
            </a>
</li>
<li class='glue-footer__global-links-list-item'>
<a class='glue-footer__link' href='https://policies.google.com/privacy'>
              Privacy
            </a>
</li>
<li class='glue-footer__global-links-list-item'>
<a class='glue-footer__link' href='https://policies.google.com/terms'>
              Terms
            </a>
</li>
</ul>
<ul class='glue-footer__global-links glue-footer__global-links--extra glue-no-bullet' role='list'>
<li class='glue-footer__global-links-list-item glue-footer__global-links-list-item--extra'>
<a class='glue-footer__link' href='https://support.google.com/?hl=en'>
<svg aria-hidden='true' class='glue-icon glue-icon--24px glue-icon--footer-help' role='presentation'>
<path d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z'>
</path>
</svg>
              Help
            </a>
</li>
</ul>
</section>
</footer>
<script type='text/javascript'>
      //<![CDATA[
      // Social sharing popups.
      var postEl = document.getElementsByClassName('social-wrapper');
      var postCount = postEl.length;
      for(i=0; i<postCount;i++){
        postEl[i].addEventListener("click", function(event){
          var postUrl = this.getAttribute("data-href");
          window.open(
            postUrl,'popUpWindow','height=500,width=500,left=10,top=10,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no,status=yes');
        });}
      //]]>
    </script>
<style>
.footer {
      display: flex;
      flex-wrap: nowrap;
      font-family: 'Work Sans', sans-serif;
      margin-top: 30px;
      flex-direction: column-reverse;
    }

    .footer .image-container {
      margin-right: auto;
      max-height: 100px;
      order: 2;
      width: 80px;
      margin-top: auto;
    }

    .footer .image-container svg path {
      fill: rgba(0, 0, 0, .4);
    }

    .footer .copyright {
      color: rgba(0, 0, 0, .6);
    }

    .footer .links {
      list-style-type: none;
      padding: 0;
      margin-bottom: 0;
    }

    .footer .links li {
      display: block;
      padding-top: 10px;
    }

    .footer .links a {
      color: rgba(0, 0, 0, .5);
      text-decoration: none;
    }

    @media screen and (min-width: 480px) {
      body {
        padding: 0 25px 50px;
      }
    }

    @media screen and (min-width: 650px) {
      body {
        padding: 0 50px 50px;
      }

      nav {
        line-height: inherit;
      }

      .header .links.responsive .icon {
          display: block;
      }

      .header .links .icon {
          display: none;
      }

      .links .link {
        display: block;
      }

      .footer {
        flex-direction: row;
      }

      .footer .image-container {
        margin-right: 0;
        margin-left: auto;
      }

      .footer .links li {
        display: inline-block;
        padding-top: 0;
        padding-right: 10px;
      }
    }

    @media screen and (min-width: 1100px) {
      .footer {
        flex-direction: row;
      }

      .footer .image-container {
        margin-right: 0;
        margin-left: auto;
      }

      .footer .links li {
        display: inline-block;
        padding-top: 0;
        padding-right: 10px;
      }
    }
</style>
<script type='text/javascript'>
      var hamburgerEl = document.querySelector('#hamburger');
      var navLinksEl = document.querySelector('#nav-links');
      var navEl = document.querySelector('#the-nav');
      var linkEls = Array.from(document.querySelectorAll('nav .link'));

      function toggleClass(el, clazz) {
        if (el.classList.contains(clazz)) {
          el.classList.remove(clazz);
        } else {
          el.classList.add(clazz);
        }
      }

      hamburgerEl.addEventListener('mouseup', function() {
        linkEls.forEach(function(el) {
          toggleClass(el, 'responsive');
          toggleClass(navEl, 'responsive');
        });
        toggleClass(navLinksEl, 'responsive');
      });
    </script>

<script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/432983155-widgets.js"></script>
<script type='text/javascript'>
window['__wavt'] = 'AOuZoY4vcrNjWbLkExANFUisxj5tWLePHw:1773124159494';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d5918582181149193944','//blog.debug.com/','5918582181149193944');
_WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '5918582181149193944', 'title': 'Debug Project', 'url': 'https://blog.debug.com/', 'canonicalUrl': 'https://blog.debug.com/', 'homepageUrl': 'https://blog.debug.com/', 'searchUrl': 'https://blog.debug.com/search', 'canonicalHomepageUrl': 'https://blog.debug.com/', 'blogspotFaviconUrl': 'https://blog.debug.com/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': true, 'httpsEnabled': true, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': 'UA-71044448-2', 'encoding': 'UTF-8', 'locale': 'en', 'localeUnderscoreDelimited': 'en', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': false, 'isMobileRequest': false, 'mobileClass': '', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Debug Project - Atom\x22 href\x3d\x22https://blog.debug.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22Debug Project - RSS\x22 href\x3d\x22https://blog.debug.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Debug Project - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/5918582181149193944/posts/default\x22 /\x3e\n', 'meTag': '', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': false, 'adsenseAutoAds': false, 'boqCommentIframeForm': true, 'loginRedirectParam': '', 'isGoogleEverywhereLinkTooltipEnabled': true, 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/161f3d7a7a4c36d2', 'plusOneApiSrc': 'https://apis.google.com/js/platform.js', 'disableGComments': true, 'interstitialAccepted': false, 'sharing': {'platforms': [{'name': 'Get link', 'key': 'link', 'shareMessage': 'Get link', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': 'Share to Facebook', 'target': 'facebook'}, {'name': 'BlogThis!', 'key': 'blogThis', 'shareMessage': 'BlogThis!', 'target': 'blog'}, {'name': 'X', 'key': 'twitter', 'shareMessage': 'Share to X', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': 'Share to Pinterest', 'target': 'pinterest'}, {'name': 'Email', 'key': 'email', 'shareMessage': 'Email', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27en\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': false, 'jumpLinkMessage': 'Read more', 'pageType': 'index', 'pageName': '', 'pageTitle': 'Debug Project'}}, {'name': 'features', 'data': {}}, {'name': 'messages', 'data': {'edit': 'Edit', 'linkCopiedToClipboard': 'Link copied to clipboard!', 'ok': 'Ok', 'postLink': 'Post Link'}}, {'name': 'template', 'data': {'name': 'custom', 'localizedName': 'Custom', 'isResponsive': false, 'isAlternateRendering': false, 'isCustom': true}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': 'Debug Project', 'description': '', 'url': 'https://blog.debug.com/', 'type': 'feed', 'isSingleItem': false, 'isMultipleItems': true, 'isError': false, 'isPage': false, 'isPost': false, 'isHomepage': true, 'isArchive': false, 'isLabelSearch': false}}]);
_WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'main', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/978252763-lbx.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/828616780-lightbox_bundle.css'}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML7', 'sidebar-top', document.getElementById('HTML7'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_BlogArchiveView', new _WidgetInfo('BlogArchive1', 'sidebar', document.getElementById('BlogArchive1'), {'languageDirection': 'ltr', 'loadingMessage': 'Loading\x26hellip;'}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML6', 'sidebar', document.getElementById('HTML6'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML1', 'sidebar', document.getElementById('HTML1'), {}, 'displayModeFull'));
</script>
</body>
</html>