{"id":145,"date":"2019-12-05T10:38:35","date_gmt":"2019-12-05T10:38:35","guid":{"rendered":"https:\/\/www.mission-us.org\/?post_type=games&#038;p=145"},"modified":"2024-09-18T09:16:09","modified_gmt":"2024-09-18T09:16:09","slug":"up-from-the-dust","status":"publish","type":"games","link":"https:\/\/www.mission-us.org\/games\/up-from-the-dust\/","title":{"rendered":"Up from the Dust"},"content":{"rendered":"<section class=\"block-game-content mb-3\">\n      <h2 class=\"title-md text-normal mb-1\">Up from The Dust<\/h2>\n        <span class=\"title-label my-1\">ESTIMATED TIME: 2-2.5 HOURS<\/span>\n        <div class=\"default-content\">\n      <p>The year is 1929. You&#8217;re one of the Dunn twins. When the Great Depression hits, can you help save the family farm? Play online or download the iPad or Windows 10 app.<\/p>\n      <p> <a class=\"scroll-to\" href=\"#characters\">Meet the Characters<\/a><\/p>\n    <\/div>\n  <\/section>\n\n\n<section class=\"block-game-code my-3\">\n  <!-- Game -->\n            <div class=\"content\">\n  <div id=\"game-container\" class=\"border-inside unity-desktop\">\n          <img decoding=\"async\" class=\"stretch-image\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2019\/12\/08163638\/Prologue7.png\" alt=\"Up from the Dust Frank and Ginny\">\n        <div class=\"embed-responsive embed-responsive-4by3\">\n      <canvas id=\"unity-canvas\" class=\"embed-responsive-item\"><\/canvas>\n      <div class=\"game-start-button\">\n        <button class=\"btn btn-lg btn-border-primary js-start-mission d-none\" id=\"start-mission-default\">Start Mission<\/button>\n        <a class=\"btn btn-lg btn-border-primary js-start-mission\" id=\"start-mission\" data-toggle=\"collapse\" href=\"#login-form\" aria-expanded=\"false\" aria-controls=\"login-form\">Start Mission<\/a>\n      <\/div>\n      <div id=\"unity-loading-bar\">\n        <div id=\"unity-logo\"><\/div>\n        <div id=\"unity-progress-bar-empty\">\n          <div id=\"unity-progress-bar-full\"><\/div>\n        <\/div>\n      <\/div>\n      <div id=\"unity-warning\"> <\/div>\n      <div id=\"unity-footer\">\n        <div id=\"unity-webgl-logo\"><\/div>\n        <div id=\"unity-fullscreen-button\"><\/div>\n        <div id=\"unity-build-title\"><\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n<\/div>\n\n<script type=\"text\/javascript\">\n  var container = document.querySelector(\"#game-container\");\n  var canvas = document.querySelector(\"#unity-canvas\");\n  var loadingBar = document.querySelector(\"#unity-loading-bar\");\n  var progressBarFull = document.querySelector(\"#unity-progress-bar-full\");\n  var fullscreenButton = document.querySelector(\"#unity-fullscreen-button\");\n  var warningBanner = document.querySelector(\"#unity-warning\");\n\n  \/\/ Shows a temporary message banner\/ribbon for a few seconds, or\n  \/\/ a permanent error message on top of the canvas if type=='error'.\n  \/\/ If type=='warning', a yellow highlight color is used.\n  \/\/ Modify or remove this function to customize the visually presented\n  \/\/ way that non-critical warnings and error messages are presented to the\n  \/\/ user.\n  function unityShowBanner(msg, type) {\n    function updateBannerVisibility() {\n      warningBanner.style.display = warningBanner.children.length ? 'block' : 'none';\n    }\n    var div = document.createElement('div');\n    div.innerHTML = msg;\n    warningBanner.appendChild(div);\n    if (type == 'error') div.style = 'background: red; padding: 10px;';\n    else {\n      if (type == 'warning') div.style = 'background: yellow; padding: 10px;';\n      setTimeout(function() {\n        warningBanner.removeChild(div);\n        updateBannerVisibility();\n      }, 5000);\n    }\n    updateBannerVisibility();\n  }\n\n  var buildUrl = \"https:\/\/games.staging.mission-us.org\/mission-5\/webgl-2021\/v011924\/Build\";\n  var loaderUrl = buildUrl + \"\/Player.loader.js\";\n  var config = {\n    dataUrl: buildUrl + \"\/Player.data.br\",\n    frameworkUrl: buildUrl + \"\/Player.framework.js.br\",\n    codeUrl: buildUrl + \"\/Player.wasm.br\",\n    streamingAssetsUrl: \"StreamingAssets\",\n    companyName: \"DefaultCompany\",\n    productName: \"Mission01\",\n    productVersion: \"1.0\",\n    showBanner: unityShowBanner,\n  };\n\n  \/\/ By default Unity keeps WebGL canvas render target size matched with\n  \/\/ the DOM size of the canvas element (scaled by window.devicePixelRatio)\n  \/\/ Set this to false if you want to decouple this synchronization from\n  \/\/ happening inside the engine, and you would instead like to size up\n  \/\/ the canvas DOM size and WebGL render target sizes yourself.\n  \/\/ config.matchWebGLToCanvasSize = false;\n\n  if (\/iPhone|iPad|iPod|Android\/i.test(navigator.userAgent)) {\n    \/\/ Mobile device style: fill the whole browser client area with the game canvas:\n\n    var meta = document.createElement('meta');\n    meta.name = 'viewport';\n    meta.content = 'width=device-width, height=device-height, initial-scale=1.0, user-scalable=no, shrink-to-fit=yes';\n    document.getElementsByTagName('head')[0].appendChild(meta);\n    container.className = \"unity-mobile\";\n    canvas.className = \"unity-mobile\";\n\n    \/\/ To lower canvas resolution on mobile devices to gain some\n    \/\/ performance, uncomment the following line:\n    \/\/ config.devicePixelRatio = 1;\n\n    unityShowBanner('WebGL builds are not supported on mobile devices.');\n  } else {\n    \/\/ Desktop style: Render the game canvas in a window that can be maximized to fullscreen:\n\n    canvas.style.width = \"100%\";\n    canvas.style.height = \"100%\";\n  }\n\n  loadingBar.style.display = \"block\";\n\n  function loadGame() {\n    var script = document.createElement(\"script\");\n    script.src = loaderUrl;\n\n    const loadingBox = document.getElementById(\"loading-box\");\n    const startMission = document.querySelectorAll(\".js-start-mission\");\n    const gameContainer = document.getElementById(\"game-container\");\n\n    loadingBox ? loadingBox.style.display = \"block\" : null;\n    \/\/ startMission ? startMission.style.display = \"none\" : null;\n    startMission.forEach((el) => {\n      el.style.display = \"none\";\n    });\n    gameContainer ? gameContainer.classList.remove(\"border-inside\") : null;\n\n    script.onload = () => {\n\n      createUnityInstance(canvas, config, (progress) => {\n        let gameInstance = null;\n        progressBarFull.style.width = 100 * progress + \"%\";\n      }).then((unityInstance) => {\n        gameInstance = unityInstance;\n        loadingBar.style.display = \"none\";\n        fullscreenButton.onclick = () => {\n          unityInstance.SetFullscreen(1);\n        };\n      }).catch((message) => {\n        alert(message);\n      });\n    };\n\n    document.body.appendChild(script);\n\n    var recaptureInputAndFocus = function() {\n      var canvas = document.getElementById(\"#canvas\");\n      if (canvas) {\n        canvas.setAttribute(\"tabindex\", \"1\");\n        canvas.focus();\n      } else\n        setTimeout(recaptureInputAndFocus, 100);\n    }\n\n    recaptureInputAndFocus();\n  }\n\n  document.addEventListener('DOMContentLoaded', function() {\n    \/\/ Require login\n    const user_logged_in = getCookie(\"user_logged_in\") ? getCookie(\"user_logged_in\") : false;\n    const user_logged_in_hash = window.location.hash ? window.location.hash.substring(1) : false;\n\n    if (user_logged_in_hash === 'user_logged_in') {\n      [...document.querySelectorAll(\".js-start-mission\")].map((el) => {\n        el.style.display = 'none';\n      });\n      loadGame();\n    }\n\n    if (user_logged_in) {\n      document.getElementById(\"start-mission-default\").classList.remove(\"d-none\");\n      document.getElementById(\"start-mission\").classList.add(\"d-none\");\n      document.getElementById(\"start-mission-default\").addEventListener(\"click\", function(e) {\n        e.preventDefault();\n        loadGame();\n      })\n    }\n  }, false);\n\n  var TOTAL_MEMORY = 268435456;\n  var STATICTOP = null;\n  var STATIC_BASE = null\n  var DYNAMICTOP_PTR = null;\n  var DYNAMIC_BASE = null;\n\n  function getCookie(cname) {\n    var name = cname + \"=\";\n    var decodedCookie = decodeURIComponent(document.cookie);\n    var ca = decodedCookie.split(';');\n    for (var i = 0; i < ca.length; i++) {\n      var c = ca[i];\n      while (c.charAt(0) == ' ') {\n        c = c.substring(1);\n      }\n      if (c.indexOf(name) == 0) {\n        return c.substring(name.length, c.length);\n      }\n    }\n    return null;\n  }\n  var mus = {\n    GetUsername: function() {\n      return getCookie(\"user_name\") ? getCookie(\"user_name\") : \"\";\n    },\n\n    GetUserKey: function() {\n      return getCookie(\"user_token\") ? getCookie(\"user_token\") : \"\";\n    },\n\n    GetFileName: function() {\n      return \"mission5a\";\n    },\n\n    GetLoginURL: function() {\n      return \"\/game_data\/login.xml\";\n    },\n\n    GetSaveURL: function() {\n      return \"\/game_data\/set.xml\";\n    },\n\n    GetLoadURL: function() {\n      return \"\/game_data\/get.xml\";\n    },\n\n    GetUnityAssetBundlesURL: function() {\n      return \"https:\/\/games.staging.mission-us.org\/mission-5\/webgl-2021\/v011924\/\";\n    },\n\n    GetProgressPostURL: function() {\n      return \"\/api\/v1\/game_data\/progress\";\n    },\n\n    GetAssessmentsPostURL: function() {\n      return \"\/api\/v1\/game_data\/assessment\";\n    },\n\n    GetSendProgressData: function() {\n      return true;\n    },\n\n    GetShowQuizzes: function() {\n      if (getCookie(\"user_classroom\") == null) {\n        return false;\n      }\n      return getCookie(\"user_classroom\") === 'true' ? true : false;\n    }\n  };\n<\/script>      <\/section>\n\n  <aside class=\"d-xl-none sidebar sidebar-games mb-3\" id=\"secondary\" role=\"complementary\">\n    <ul class=\"nav sidebar-nav\"><li class=\"sidebar-nav-item\"><a href=\"https:\/\/player.pbs.org\/partnerplayer\/1U53QqXe-KV0rfT4S51gAw==\/?start=0&#038;end=0&#038;topbar=false&#038;autoplay=false&#038;muted=false&#038;endscreen=false\" class=\"link-to-all\"><\/a><h4 class=\"item-title\">Video: Top 5 Things to Know Before You Play<\/h4>Ready to play Mission US? Here are five things to know before you begin.<\/li><li class=\"sidebar-nav-item\"><a href=\"#modal-sidebar-1-mobile-sidebar\" class=\"link-to-all\" data-toggle=\"modal\"><\/a><h4 class=\"item-title\">Top 5 Things to Know Before You Play<\/h4>Key things to know before playing <i>Mission US<\/i>.<div class=\"modal fade modal-sidebar-links\" id=\"modal-sidebar-1-mobile-sidebar\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"modal-sidebar\" aria-hidden=\"true\" style=\"display: none;\">\n                <div class=\"modal-dialog modal-dialog-centered modal-lg\" role=\"document\">\n                  <div class=\"modal-content\">\n                    <div class=\"modal-header\">\n                      <h4 class=\"title-xs-sans\">: <\/h4>\n                      <h3 class=\"title-md-serif\"><\/h3>\n                      <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\">\n                        <span aria-hidden=\"true\" class=\"icon-close\"><\/span>\n                      <\/button>\n                    <\/div>\n                    <div class=\"modal-body\">\n                      <div class=\"d-lg-flex justify-content-between mb-3\">\n                        <h5 class=\"title-sm-sans text-normal\">Top 5 Things to Know Before You Play <i>Mission US<\/i><\/h5>\n                        <div class=\"btn-container mt-2 mt-lg-0\">\n                          <a href=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2025\/04\/09153251\/Top5ThingsMUSFINAL-4.9.25-1.docx\" class=\"btn btn-sm btn-outline-primary\">DOC<\/a>\n                          <a href=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2025\/04\/09153237\/Top5ThingsMUSFINAL-4.9.25-1.pdf\" class=\"btn btn-sm btn-outline-primary\">PDF<\/a>\n                        <\/div>\n                      <\/div>\n                      <div class=\"default-content\">\n                        <ol>\n<li><strong><em>Mission US <\/em>is a role-playing game (RPG). <\/strong>In each mission you\u2019ll step into the shoes of a young person during an important time period in US history. While your character and many of the characters in the game are fictional, they are based on the experiences of real people. (You will also encounter some actual historical figures and witness historical events in the game!)<\/li>\n<li><strong>There are no right or wrong answers. <\/strong>The goal of <em>Mission US <\/em>is to understand history, not to win. In each mission, you\u2019ll meet a range of people with very different viewpoints, explore historical settings, and witness key past events &#8212; and will have to make difficult decisions. All of the decisions represent real alternatives that people might have encountered.<\/li>\n<li><strong>You decide your character\u2019s fate. <\/strong>Like other choose-your-own-adventure stories, the fate of your character is based on your choices in the game. Some of the choices you make will unlock different badges, which will also impact the outcome of your character\u2019s story in the game epilogue. You can replay the game and make different choices to see how your character\u2019s story might have turned out differently.<\/li>\n<li><strong>You will encounter difficult and challenging <\/strong><strong>moments in US history. <\/strong><em>Mission US <\/em>covers some troubling topics, including injustice and war, many of which remain challenges today. We think learning about such historical moments is essential for understanding both the past and present. We encourage you to reach out to a parent, teacher, or other adult you trust if you have any questions about the content you encounter in the game.<\/li>\n<li><strong>There is never just one story. <\/strong>Like any work of history, <em>Mission US <\/em>games are interpretations of what happened in the past based on careful research. Since they can\u2019t capture the whole story, we encourage you to learn more about this history by checking out the additional resources for each mission.<\/li>\n<\/ol>\n \n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div>\n              <\/div><\/li><li class=\"sidebar-nav-item\"><a href=\"https:\/\/www.mission-us.org\/about\/creating-mission-us\/about-the-missions\/#upfromthedust\" class=\"link-to-all\"><\/a><h4 class=\"item-title\">About This Mission<\/h4>Learn more about the creation of and team behind <i>Up from the Dust<\/i>.<\/li><li class=\"sidebar-nav-item\"><a href=\"\/teach\/up-from-the-dust\/teach-this-mission\/curriculum-overview\/\" class=\"link-to-all\"><\/a><h4 class=\"item-title\">Teacher's Guide to Using this Mission<\/h4>Overview\/background materials, activities, and more.<\/li><\/ul><div class=\"widget-list-downloads mt-2\"><p class=\"mt-2\">Download for Chromebook:<\/p><ul class=\"list-unstyled\"><li><a href=\"#modal-downloads-0-mobile-sidebar\" class=\"\" data-toggle=\"modal\">Download Chromebook app<\/a><div class=\"modal fade modal-downloads-links\" id=\"modal-downloads-0-mobile-sidebar\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"modal-downloads\" aria-hidden=\"true\" style=\"display: none;\">\n                  <div class=\"modal-dialog modal-dialog-centered modal-lg\" role=\"document\">\n                    <div class=\"modal-content\">\n                      <div class=\"modal-header\">\n                        <h4 class=\"title-xs-sans\">: <\/h4>\n                        <h3 class=\"title-md-serif\"><\/h3>\n                        <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\">\n                          <span aria-hidden=\"true\" class=\"icon-close\"><\/span>\n                        <\/button>\n                      <\/div>\n                      <div class=\"modal-body\">\n                        <div class=\"d-flex justify-content-between mb-3\">\n                          <h5 class=\"title-sm-sans text-normal\">Download the free Chromebook app<\/h5>\n                          <div class=\"btn-container\">\n                            <a href=\"https:\/\/play.google.com\/store\/apps\/details?id=com.WNET.UpFromTheDust\" class=\"btn btn-sm btn-outline-primary\">Download Chromebook app<\/a>\n                          <\/div>\n                        <\/div>\n                        <div class=\"default-content\">\n                           \n                        <\/div>\n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div><\/li><\/ul><p class=\"mt-2\">Play on your iPad:<\/p><ul class=\"list-unstyled\"><li><a href=\"#modal-downloads-1-mobile-sidebar\" class=\"\" data-toggle=\"modal\">Download iPad app<\/a><div class=\"modal fade modal-downloads-links\" id=\"modal-downloads-1-mobile-sidebar\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"modal-downloads\" aria-hidden=\"true\" style=\"display: none;\">\n                  <div class=\"modal-dialog modal-dialog-centered modal-lg\" role=\"document\">\n                    <div class=\"modal-content\">\n                      <div class=\"modal-header\">\n                        <h4 class=\"title-xs-sans\">: <\/h4>\n                        <h3 class=\"title-md-serif\"><\/h3>\n                        <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\">\n                          <span aria-hidden=\"true\" class=\"icon-close\"><\/span>\n                        <\/button>\n                      <\/div>\n                      <div class=\"modal-body\">\n                        <div class=\"d-flex justify-content-between mb-3\">\n                          <h5 class=\"title-sm-sans text-normal\">Download the free iPad app here.<\/h5>\n                          <div class=\"btn-container\">\n                            <a href=\"https:\/\/apps.apple.com\/us\/app\/mission-us-up-from-the-dust\/id1137321335\" class=\"btn btn-sm btn-outline-primary\">Download iPad app<\/a>\n                          <\/div>\n                        <\/div>\n                        <div class=\"default-content\">\n                           \n                        <\/div>\n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div><\/li><\/ul><p class=\"mt-2\">Play offline on your Windows device:<\/p><ul class=\"list-unstyled\"><li><a href=\"#modal-downloads-2-mobile-sidebar\" class=\"\" data-toggle=\"modal\">Download Windows 10 app<\/a><div class=\"modal fade modal-downloads-links\" id=\"modal-downloads-2-mobile-sidebar\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"modal-downloads\" aria-hidden=\"true\" style=\"display: none;\">\n                  <div class=\"modal-dialog modal-dialog-centered modal-lg\" role=\"document\">\n                    <div class=\"modal-content\">\n                      <div class=\"modal-header\">\n                        <h4 class=\"title-xs-sans\">: <\/h4>\n                        <h3 class=\"title-md-serif\"><\/h3>\n                        <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\">\n                          <span aria-hidden=\"true\" class=\"icon-close\"><\/span>\n                        <\/button>\n                      <\/div>\n                      <div class=\"modal-body\">\n                        <div class=\"d-flex justify-content-between mb-3\">\n                          <h5 class=\"title-sm-sans text-normal\">Download the free Windows 10 app from the Microsoft Store here.<\/h5>\n                          <div class=\"btn-container\">\n                            <a href=\"https:\/\/www.microsoft.com\/en-us\/p\/mission-us-up-from-the-dust\/9mz32sqt8x13?activetab=pivot:overviewtab\" class=\"btn btn-sm btn-outline-primary\">Download Windows 10 app<\/a>\n                          <\/div>\n                        <\/div>\n                        <div class=\"default-content\">\n                           \n                        <\/div>\n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div><\/li><\/ul><\/div>  <\/aside>\n<section class=\"block-meet-characters my-3\" id=\"characters\">\n      <h3 class=\"title-md-sans mb-2\">Meet the Characters<\/h3>\n    <div class=\"meet-characters py-xs d-none d-xl-block\">\n    <div class=\"meet-characters-pic\">\n                                <div id=\"character-1\" class=\"pic active-character position-z-index-3\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110400\/roberto-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110403\/roberto.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-2\" class=\"pic position-z-index-1\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110401\/italian_enrollee-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110404\/italian_enrollee.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-3\" class=\"pic position-z-index-3\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110400\/mrs_huff-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110403\/mrs_huff.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-4\" class=\"pic position-z-index-1\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110359\/sharecropper-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110403\/sharecropper.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-5\" class=\"pic position-z-index-2\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110400\/ma_dunn-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110404\/ma_dunn.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-6\" class=\"pic position-z-index-3\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110401\/ginny-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110404\/ginny.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-7\" class=\"pic position-z-index-2\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110402\/frank-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110404\/frank.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-8\" class=\"pic position-z-index-1\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110400\/pa_dunn-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110403\/pa_dunn.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-9\" class=\"pic position-z-index-3\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110359\/thelma-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110402\/thelma.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-10\" class=\"pic position-z-index-2\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110402\/dorothea_lange-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110405\/dorothea_lange.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-11\" class=\"pic position-z-index-1\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110400\/mr_mitchell-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110403\/mr_mitchell.png\" alt=\"\">\n          <\/div>\n                  <div id=\"character-12\" class=\"pic position-z-index-1\">\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110401\/hobo_vet-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110404\/hobo_vet.png\" alt=\"\">\n          <\/div>\n                    <div class=\"meet-characters-hover\">\n                                        <div id=\"character-hover-1\" class=\"character-hover position-z-index-3\" style=\"width:57px; height:442px; margin-left:57px\"><\/div>\n                      <div id=\"character-hover-2\" class=\"character-hover position-z-index-1\" style=\"width:52.666666666667px; height:445px; margin-left:52.666666666667px\"><\/div>\n                      <div id=\"character-hover-3\" class=\"character-hover position-z-index-3\" style=\"width:47.666666666667px; height:421px; margin-left:47.666666666667px\"><\/div>\n                      <div id=\"character-hover-4\" class=\"character-hover position-z-index-1\" style=\"width:57.333333333333px; height:443px; margin-left:57.333333333333px\"><\/div>\n                      <div id=\"character-hover-5\" class=\"character-hover position-z-index-2\" style=\"width:51.333333333333px; height:415px; margin-left:51.333333333333px\"><\/div>\n                      <div id=\"character-hover-6\" class=\"character-hover position-z-index-3\" style=\"width:44.333333333333px; height:413px; margin-left:44.333333333333px\"><\/div>\n                      <div id=\"character-hover-7\" class=\"character-hover position-z-index-2\" style=\"width:49.666666666667px; height:430px; margin-left:49.666666666667px\"><\/div>\n                      <div id=\"character-hover-8\" class=\"character-hover position-z-index-1\" style=\"width:55.666666666667px; height:457px; margin-left:55.666666666667px\"><\/div>\n                      <div id=\"character-hover-9\" class=\"character-hover position-z-index-3\" style=\"width:45.333333333333px; height:409px; margin-left:45.333333333333px\"><\/div>\n                      <div id=\"character-hover-10\" class=\"character-hover position-z-index-2\" style=\"width:52.333333333333px; height:432px; margin-left:52.333333333333px\"><\/div>\n                      <div id=\"character-hover-11\" class=\"character-hover position-z-index-1\" style=\"width:53.666666666667px; height:441px; margin-left:53.666666666667px\"><\/div>\n                      <div id=\"character-hover-12\" class=\"character-hover position-z-index-1\" style=\"width:53.666666666667px; height:442px; margin-left:53.666666666667px\"><\/div>\n                        <\/div>\n    <\/div>\n\n    <p class=\"roll_over d-none d-md-block py-3 text-right\">Roll over a character to learn more.<\/p>\n\n    <div class=\"meet-characters-info\">\n                                <div id=\"character-info-1\" class=\"info active-info\">\n            <h5 class=\"title text-normal\">Roberto Lopez<\/h5>\n            <p>Roberto Lopez is a Rock Island Railroad line worker. He works in a small group to keep the railroad tracks clear and level, cleans freight cars, and helps load and unload freight. His family came from Chihuahua, Mexico, where his father worked on a large ranch, but the Mexican Revolution caused the ranch owner to flee. His father was recruited by the railroad 20 years ago to work laying track.<\/p>\n          <\/div>\n                  <div id=\"character-info-2\" class=\"info\">\n            <h5 class=\"title text-normal\">Tony Amato<\/h5>\n            <p>Tony Amato is 19 years old and becomes friends with Frank Dunn when they are in the CCC together. The son of Italian immigrants, he grew up in the Bronx in New York City. His father is an unemployed laborer and brick layer and his mother takes care of his three younger siblings. His first CCC assignment was in upstate New York planting trees, then he was transferred to the camp in Texas where he meets Frank.<\/p>\n          <\/div>\n                  <div id=\"character-info-3\" class=\"info\">\n            <h5 class=\"title text-normal\">Evelyn Huff<\/h5>\n            <p>Mrs. Evelyn Huff runs a general store near the Dunn farm. She knows everybody who farms nearby and barters eggs, butter, homemade jams, and other farm goods for necessities such as sugar, flour, and salt. She also allows most of the local families to pay on credit while they wait to sell their yearly crop.<\/p>\n          <\/div>\n                  <div id=\"character-info-4\" class=\"info\">\n            <h5 class=\"title text-normal\">Edward \u201cNed\u201d Shaw<\/h5>\n            <p>Ned Shaw is a sharecropper from Arkansas who was cheated by the owner of the land he farmed. He feared violence from the Ku Klux Klan if he tried to seek justice, so he decided to move his family to Los Angeles, California, in search of better conditions.<\/p>\n          <\/div>\n                  <div id=\"character-info-5\" class=\"info\">\n            <h5 class=\"title text-normal\">Trudy Dunn (Ma)<\/h5>\n            <p>Trudy Dunn has lived in the southern Texas Panhandle her whole life. Her father acquired public land from the government in the 1870s and began planting a hardy strain of wheat that could survive the harsh climate. After marrying Raymond Dunn, the couple took over her family\u2019s wheat farm and expanded it.<\/p>\n          <\/div>\n                  <div id=\"character-info-6\" class=\"info\">\n            <h5 class=\"title text-normal\">Virginia (Ginny) Dunn<\/h5>\n            <p>Ginny (Frank\u2019s twin sister) is thirteen when \u201cUp from the Dust\u201d begins. She lives with her family on a wheat farm in the Texas Panhandle a few miles outside of Dalhart. She goes to school in Dalhart and helps out on the farm taking care of the chickens and making butter. She is active in the 4-H Club and is close friends with her neighbor Thelma.<\/p>\n          <\/div>\n                  <div id=\"character-info-7\" class=\"info\">\n            <h5 class=\"title text-normal\">Frank Dunn<\/h5>\n            <p>Frank (Ginny\u2019s twin brother) is thirteen when \u201cUp from the Dust\u201d begins. He lives with his family on a wheat farm in the Texas Panhandle a few miles outside of Dalhart. He goes to school, helps take care of the beef and milk cows on the farm, and enjoys reading adventure stories in his spare time. He doesn\u2019t always get along with his older brothers, but is close to Ginny. He\u2019s raising a calf on his own and hoping she will win a ribbon at the county fair.<\/p>\n          <\/div>\n                  <div id=\"character-info-8\" class=\"info\">\n            <h5 class=\"title text-normal\">Raymond Dunn (Pa)<\/h5>\n            <p>Raymond Dunn farms wheat and raises a few head of cattle on 640 acres in the Texas Panhandle. His father was a ranch hand on the XIT ranch in the Texas Panhandle. Raymond hoped to become a cattle rancher, too, but a wheat boom during World War I encouraged him to switch to wheat farming and to teach his sons all he\u2019s learned about raising wheat.<\/p>\n          <\/div>\n                  <div id=\"character-info-9\" class=\"info\">\n            <h5 class=\"title text-normal\">Thelma Mitchell<\/h5>\n            <p>Thelma is Ginny\u2019s best friend and is also thirteen years old at the start of \u201cUp from the Dust.\u201d Her family are tenant farmers, so they do not own their own land. When hard times hit, they are already in debt and unable to borrow more money to cover their expenses. Thelma goes to school with Ginny and Frank and is also active in the 4-H Club.<\/p>\n          <\/div>\n                  <div id=\"character-info-10\" class=\"info\">\n            <h5 class=\"title text-normal\">Dorothea Lange<\/h5>\n            <p>Dorothea Lange (1895-1965) is a documentary photographer best known for her images of American hardship during the Great Depression. Born in New Jersey, she moved to northern California when she was in her 20s and lived there for the rest of her life. Lange worked for a variety of U.S. government agencies from 1935-1945, traveling around the country to photograph the Dust Bowl, conditions in migrant labor camps, rural poverty, wartime defense industry workers, and imprisoned Japanese Americans.<\/p>\n          <\/div>\n                  <div id=\"character-info-11\" class=\"info\">\n            <h5 class=\"title text-normal\">Tom Mitchell<\/h5>\n            <p>Mr. Mitchell is a tenant farmer who lives with his wife and two daughters near the Dunns. After World War I, he moved his family from Arkansas to the Texas Panhandle, hoping to make enough money growing wheat to buy his own land. With declining wheat prices, it hasn\u2019t worked out that way. He works on land owned by a businessman in Dalhart to whom he pays a portion of his wheat crop as rent.<\/p>\n          <\/div>\n                  <div id=\"character-info-12\" class=\"info\">\n            <h5 class=\"title text-normal\">Charlie, a Bonus Army veteran<\/h5>\n            <p>Charlie fought in World War I and was promised an additional cash bonus for his military service, to be paid in 1945. When unemployment rose after the stock market crash he was laid off from his factory job and has not been able to find any work., Along with thousands of other World War I veterans, he is traveling to Washington, D.C., to ask the government to pay veterans their bonuses now.<\/p>\n          <\/div>\n                  <\/div>\n  <\/div>\n\n  <style>\n    #character-1 {\n      left: 0%;\n    }\n\n    #character-hover-1 {\n      left: 0%;\n    }\n\n    #character-2 {\n      left: 7.25%;\n    }\n\n    #character-hover-2 {\n      left: 7.25%;\n    }\n\n    #character-3 {\n      left: 14.5%;\n    }\n\n    #character-hover-3 {\n      left: 14.5%;\n    }\n\n    #character-4 {\n      left: 21.75%;\n    }\n\n    #character-hover-4 {\n      left: 21.75%;\n    }\n\n    #character-5 {\n      left: 29%;\n    }\n\n    #character-hover-5 {\n      left: 29%;\n    }\n\n    #character-6 {\n      left: 36.25%;\n    }\n\n    #character-hover-6 {\n      left: 36.25%;\n    }\n\n    #character-7 {\n      left: 43.5%;\n    }\n\n    #character-hover-7 {\n      left: 43.5%;\n    }\n\n    #character-8 {\n      left: 50.75%;\n    }\n\n    #character-hover-8 {\n      left: 50.75%;\n    }\n\n    #character-9 {\n      left: 58%;\n    }\n\n    #character-hover-9 {\n      left: 58%;\n    }\n\n    #character-10 {\n      left: 65.25%;\n    }\n\n    #character-hover-10 {\n      left: 65.25%;\n    }\n\n    #character-11 {\n      left: 72.5%;\n    }\n\n    #character-hover-11 {\n      left: 72.5%;\n    }\n\n    #character-12 {\n      left: 79.75%;\n    }\n\n    #character-hover-12 {\n      left: 79.75%;\n    }\n\n      <\/style>\n  <? \/\/= (12 \/ $character_counter) + ($character_counter \/ 100) \n  ?>\n  <div class=\"meet-characters-mobile px-2 d-xl-none\">\n    <div class=\"meet-characters-pic-mobile\">\n                                <div id=\"character-0\" class=\"pic my-4 flex-row-reverse\">\n            <div class=\"character-hover\"><\/div>\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110400\/roberto-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110403\/roberto.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Roberto Lopez<\/h5>\n              <p>Roberto Lopez is a Rock Island Railroad line worker. He works in a small group to keep the railroad tracks clear and level, cleans freight cars, and helps load and unload freight. His family came from Chihuahua, Mexico, where his father worked on a large ranch, but the Mexican Revolution caused the ranch owner to flee. His father was recruited by the railroad 20 years ago to work laying track.<\/p>\n            <\/div>\n          <\/div>\n                  <div id=\"character-1\" class=\"pic my-4 \">\n            <div class=\"character-hover\"><\/div>\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110401\/italian_enrollee-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110404\/italian_enrollee.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Tony Amato<\/h5>\n              <p>Tony Amato is 19 years old and becomes friends with Frank Dunn when they are in the CCC together. The son of Italian immigrants, he grew up in the Bronx in New York City. His father is an unemployed laborer and brick layer and his mother takes care of his three younger siblings. His first CCC assignment was in upstate New York planting trees, then he was transferred to the camp in Texas where he meets Frank.<\/p>\n            <\/div>\n          <\/div>\n                  <div id=\"character-2\" class=\"pic my-4 flex-row-reverse\">\n            <div class=\"character-hover\"><\/div>\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110400\/mrs_huff-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110403\/mrs_huff.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Evelyn Huff<\/h5>\n              <p>Mrs. Evelyn Huff runs a general store near the Dunn farm. She knows everybody who farms nearby and barters eggs, butter, homemade jams, and other farm goods for necessities such as sugar, flour, and salt. She also allows most of the local families to pay on credit while they wait to sell their yearly crop.<\/p>\n            <\/div>\n          <\/div>\n                  <div id=\"character-3\" class=\"pic my-4 \">\n            <div class=\"character-hover\"><\/div>\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110359\/sharecropper-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110403\/sharecropper.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Edward \u201cNed\u201d Shaw<\/h5>\n              <p>Ned Shaw is a sharecropper from Arkansas who was cheated by the owner of the land he farmed. He feared violence from the Ku Klux Klan if he tried to seek justice, so he decided to move his family to Los Angeles, California, in search of better conditions.<\/p>\n            <\/div>\n          <\/div>\n                  <div id=\"character-4\" class=\"pic my-4 flex-row-reverse\">\n            <div class=\"character-hover\"><\/div>\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110400\/ma_dunn-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110404\/ma_dunn.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Trudy Dunn (Ma)<\/h5>\n              <p>Trudy Dunn has lived in the southern Texas Panhandle her whole life. Her father acquired public land from the government in the 1870s and began planting a hardy strain of wheat that could survive the harsh climate. After marrying Raymond Dunn, the couple took over her family\u2019s wheat farm and expanded it.<\/p>\n            <\/div>\n          <\/div>\n                  <div id=\"character-5\" class=\"pic my-4 \">\n            <div class=\"character-hover\"><\/div>\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110401\/ginny-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110404\/ginny.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Virginia (Ginny) Dunn<\/h5>\n              <p>Ginny (Frank\u2019s twin sister) is thirteen when \u201cUp from the Dust\u201d begins. She lives with her family on a wheat farm in the Texas Panhandle a few miles outside of Dalhart. She goes to school in Dalhart and helps out on the farm taking care of the chickens and making butter. She is active in the 4-H Club and is close friends with her neighbor Thelma.<\/p>\n            <\/div>\n          <\/div>\n                  <div id=\"character-6\" class=\"pic my-4 flex-row-reverse\">\n            <div class=\"character-hover\"><\/div>\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110402\/frank-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110404\/frank.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Frank Dunn<\/h5>\n              <p>Frank (Ginny\u2019s twin brother) is thirteen when \u201cUp from the Dust\u201d begins. He lives with his family on a wheat farm in the Texas Panhandle a few miles outside of Dalhart. He goes to school, helps take care of the beef and milk cows on the farm, and enjoys reading adventure stories in his spare time. He doesn\u2019t always get along with his older brothers, but is close to Ginny. He\u2019s raising a calf on his own and hoping she will win a ribbon at the county fair.<\/p>\n            <\/div>\n          <\/div>\n                  <div id=\"character-7\" class=\"pic my-4 \">\n            <div class=\"character-hover\"><\/div>\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110400\/pa_dunn-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110403\/pa_dunn.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Raymond Dunn (Pa)<\/h5>\n              <p>Raymond Dunn farms wheat and raises a few head of cattle on 640 acres in the Texas Panhandle. His father was a ranch hand on the XIT ranch in the Texas Panhandle. Raymond hoped to become a cattle rancher, too, but a wheat boom during World War I encouraged him to switch to wheat farming and to teach his sons all he\u2019s learned about raising wheat.<\/p>\n            <\/div>\n          <\/div>\n                  <div id=\"character-8\" class=\"pic my-4 flex-row-reverse\">\n            <div class=\"character-hover\"><\/div>\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110359\/thelma-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110402\/thelma.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Thelma Mitchell<\/h5>\n              <p>Thelma is Ginny\u2019s best friend and is also thirteen years old at the start of \u201cUp from the Dust.\u201d Her family are tenant farmers, so they do not own their own land. When hard times hit, they are already in debt and unable to borrow more money to cover their expenses. Thelma goes to school with Ginny and Frank and is also active in the 4-H Club.<\/p>\n            <\/div>\n          <\/div>\n                  <div id=\"character-9\" class=\"pic my-4 \">\n            <div class=\"character-hover\"><\/div>\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110402\/dorothea_lange-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110405\/dorothea_lange.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Dorothea Lange<\/h5>\n              <p>Dorothea Lange (1895-1965) is a documentary photographer best known for her images of American hardship during the Great Depression. Born in New Jersey, she moved to northern California when she was in her 20s and lived there for the rest of her life. Lange worked for a variety of U.S. government agencies from 1935-1945, traveling around the country to photograph the Dust Bowl, conditions in migrant labor camps, rural poverty, wartime defense industry workers, and imprisoned Japanese Americans.<\/p>\n            <\/div>\n          <\/div>\n                  <div id=\"character-10\" class=\"pic my-4 flex-row-reverse\">\n            <div class=\"character-hover\"><\/div>\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110400\/mr_mitchell-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110403\/mr_mitchell.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Tom Mitchell<\/h5>\n              <p>Mr. Mitchell is a tenant farmer who lives with his wife and two daughters near the Dunns. After World War I, he moved his family from Arkansas to the Texas Panhandle, hoping to make enough money growing wheat to buy his own land. With declining wheat prices, it hasn\u2019t worked out that way. He works on land owned by a businessman in Dalhart to whom he pays a portion of his wheat crop as rent.<\/p>\n            <\/div>\n          <\/div>\n                  <div id=\"character-11\" class=\"pic my-4 \">\n            <div class=\"character-hover\"><\/div>\n            <img decoding=\"async\" class=\"glow\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110401\/hobo_vet-1.png\" alt=\"\">\n            <img decoding=\"async\" class=\"character\" src=\"https:\/\/assets.mission-us.org\/wp-content\/uploads\/2020\/01\/28110404\/hobo_vet.png\" alt=\"\">\n            <div class=\"descriptions\">\n              <h5 class=\"title text-normal mb-1\">Charlie, a Bonus Army veteran<\/h5>\n              <p>Charlie fought in World War I and was promised an additional cash bonus for his military service, to be paid in 1945. When unemployment rose after the stock market crash he was laid off from his factory job and has not been able to find any work., Along with thousands of other World War I veterans, he is traveling to Washington, D.C., to ask the government to pay veterans their bonuses now.<\/p>\n            <\/div>\n          <\/div>\n                  <\/div>\n  <\/div>\n<\/section>","protected":false},"excerpt":{"rendered":"<p>It\u2019s 1929. You\u2019re one of the Dunn twins. When the Depression hits, can you help save the family farm?<\/p>","protected":false},"featured_media":0,"parent":0,"template":"","meta":{"_acf_changed":false,"inline_featured_image":false},"class_list":["post-145","games","type-games","status-publish","hentry","entry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Up from the Dust - MissionUS<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.mission-us.org\/games\/up-from-the-dust\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Up from the Dust - MissionUS\" \/>\n<meta property=\"og:description\" content=\"It\u2019s 1929. You\u2019re one of the Dunn twins. When the Depression hits, can you help save the family farm?\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.mission-us.org\/games\/up-from-the-dust\/\" \/>\n<meta property=\"og:site_name\" content=\"MissionUS\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-18T09:16:09+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.mission-us.org\/games\/up-from-the-dust\/\",\"url\":\"https:\/\/www.mission-us.org\/games\/up-from-the-dust\/\",\"name\":\"Up from the Dust - MissionUS\",\"isPartOf\":{\"@id\":\"https:\/\/www.mission-us.org\/#website\"},\"datePublished\":\"2019-12-05T10:38:35+00:00\",\"dateModified\":\"2024-09-18T09:16:09+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.mission-us.org\/games\/up-from-the-dust\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.mission-us.org\/games\/up-from-the-dust\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.mission-us.org\/games\/up-from-the-dust\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.mission-us.org\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Up from the Dust\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.mission-us.org\/#website\",\"url\":\"https:\/\/www.mission-us.org\/\",\"name\":\"MissionUS\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.mission-us.org\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Up from the Dust - MissionUS","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.mission-us.org\/games\/up-from-the-dust\/","og_locale":"en_US","og_type":"article","og_title":"Up from the Dust - MissionUS","og_description":"It\u2019s 1929. You\u2019re one of the Dunn twins. When the Depression hits, can you help save the family farm?","og_url":"https:\/\/www.mission-us.org\/games\/up-from-the-dust\/","og_site_name":"MissionUS","article_modified_time":"2024-09-18T09:16:09+00:00","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.mission-us.org\/games\/up-from-the-dust\/","url":"https:\/\/www.mission-us.org\/games\/up-from-the-dust\/","name":"Up from the Dust - MissionUS","isPartOf":{"@id":"https:\/\/www.mission-us.org\/#website"},"datePublished":"2019-12-05T10:38:35+00:00","dateModified":"2024-09-18T09:16:09+00:00","breadcrumb":{"@id":"https:\/\/www.mission-us.org\/games\/up-from-the-dust\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.mission-us.org\/games\/up-from-the-dust\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.mission-us.org\/games\/up-from-the-dust\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.mission-us.org\/"},{"@type":"ListItem","position":2,"name":"Up from the Dust"}]},{"@type":"WebSite","@id":"https:\/\/www.mission-us.org\/#website","url":"https:\/\/www.mission-us.org\/","name":"MissionUS","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.mission-us.org\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/www.mission-us.org\/wp-json\/wp\/v2\/games\/145"}],"collection":[{"href":"https:\/\/www.mission-us.org\/wp-json\/wp\/v2\/games"}],"about":[{"href":"https:\/\/www.mission-us.org\/wp-json\/wp\/v2\/types\/games"}],"version-history":[{"count":60,"href":"https:\/\/www.mission-us.org\/wp-json\/wp\/v2\/games\/145\/revisions"}],"predecessor-version":[{"id":13506,"href":"https:\/\/www.mission-us.org\/wp-json\/wp\/v2\/games\/145\/revisions\/13506"}],"wp:attachment":[{"href":"https:\/\/www.mission-us.org\/wp-json\/wp\/v2\/media?parent=145"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}