<snapdata remixID="11329528"><project name="L14 Bar Graph" app="Snap! 7, https://snap.berkeley.edu" version="2"><notes></notes><thumbnail>data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKAAAAB4CAYAAAB1ovlvAAAAAXNSR0IArs4c6QAAAu5JREFUeF7t1EFqG1AQREH7iF7Jt/RlfB+FZJVleGo8EEqgZc9HxUPvz+fz+eZD4EjgXYBH8p79IyBAIZwKCPCU3+MC1MCpgABP+T0uQA2cCgjwlN/jAtTAqYAAT/k9/nKAHx8fb19fXyQJJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJAEBJjajlYAAV5LuJIFJgI/HIz1u9P8KfH5+/tOPeznA7+/vt99fHwJ/C/xYgNgJvCLw8j/gK4/bEhCgBk4FBHjK73EBauBUQICn/B4XoAZOBQR4yu9xAWrgVECAp/weF6AGTgUEeMrvcQFq4FRAgKf8HhegBk4FBHjK73EBauBUQICn/B4XoAZOBQR4yu9xAWrgVECAp/weF6AGTgUEeMrvcQFq4FRAgKf8HhegBk4FBHjK73EBauBU4BfEj9S3AvbXxQAAAABJRU5ErkJggg==</thumbnail><scenes select="1"><scene name="L14 Bar Graph"><notes></notes><hidden></hidden><headers></headers><code></code><blocks><block-definition s="Bar Graph, data: %&apos;data list&apos;" type="command" category="looks"><comment w="158.8" collapsed="true">Fill in the blanks</comment><header></header><code></code><translations></translations><inputs><input type="%l"></input></inputs><script><custom-block s="draw axes, x0: %n y0: %n horizontal length: %n vertical height: %n"><l>-190</l><l>-90</l><l>400</l><l>240</l></custom-block><custom-block s="draw bars, bar width: %n max bar height: %n data: %l"><l>20</l><l>240</l><block var="data list"/></custom-block><custom-block s="label vertical axis, vertical height: %n data: %l"><l>240</l><block var="data list"/></custom-block></script></block-definition><block-definition s="data-record, label: %&apos;label&apos; value: %&apos;value&apos;" type="reporter" category="operators"><header></header><code></code><translations></translations><inputs><input type="%txt"></input><input type="%n"></input></inputs><script><block s="doReport"><block s="reportNewList"><list><block var="label"/><block var="value"/></list></block></block></script></block-definition><block-definition s="label from data-record: %&apos;data-record&apos;" type="reporter" category="operators"><header></header><code></code><translations></translations><inputs><input type="%l"></input></inputs><script><block s="doReport"><block s="reportListItem"><l>1</l><block var="data-record"/></block></block></script></block-definition><block-definition s="value from data-record: %&apos;data-record&apos;" type="reporter" category="operators"><header></header><code></code><translations></translations><inputs><input type="%l"></input></inputs><script><block s="doReport"><block s="reportListItem"><l>2</l><block var="data-record"/></block></block></script></block-definition><block-definition s="label %&apos;text&apos; of size %&apos;size&apos;" type="command" category="pen"><comment x="0" y="0" w="90" collapsed="false">LABEL will stamp text on the stage at the given font size. The direction of the text is the direction the sprite is facing, and color will match the pen color.</comment><header></header><code></code><translations></translations><inputs><input type="%txt">Hello!</input><input type="%n">12</input></inputs><script><block s="doRun"><block s="reportJSFunction"><list><l>text</l><l>size</l></list><l>var stage = this.parentThatIsA(StageMorph),&#xD;    context = stage.penTrails().getContext(&apos;2d&apos;),&#xD;    rotation = radians(this.direction() - 90),&#xD;    trans = new Point(&#xD;      this.center().x - stage.left(),&#xD;      this.center().y - stage.top()&#xD;    ),&#xD;    isWarped = this.Warped,&#xD;    len,&#xD;    pos;&#xD;&#xD;if (isWarped) {endWarp(); }&#xD;context.save();&#xD;context.font = size + &apos;px monospace&apos;;&#xD;context.textAlign = &apos;left&apos;;&#xD;context.textBaseline = &apos;alphabetic&apos;;&#xD;context.fillStyle = this.color.toString();&#xD;len = context.measureText(text).width;&#xD;trans = trans.multiplyBy(1 / stage.scale);&#xD;context.translate(trans.x, trans.y);&#xD;context.rotate(rotation);&#xD;context.fillText(text, 0, 0);&#xD;context.translate(-trans.x, -trans.y);&#xD;context.restore();&#xD;pos = new Point(&#xD;  len * Math.sin(radians(this.direction())),&#xD;  len * Math.cos(radians(this.direction())));&#xD;pos = pos.add(new Point(this.xPosition(), this.yPosition()));&#xD;this.gotoXY(pos.x, pos.y, false);&#xD;this.changed();&#xD;if (isWarped) {this.startWarp(); }&#xD;stage.changed();</l></block><list><block var="text"/><block var="size"/></list></block></script></block-definition><block-definition s="map %&apos;function&apos; over %&apos;lists&apos;" type="reporter" category="lists"><header></header><code></code><translations></translations><inputs><input type="%repRing"></input><input type="%mult%l"></input></inputs><script><block s="doWarp"><script><block s="doDeclareVariables"><list><l>mapone</l><l>mapmany</l></list></block><block s="doSetVar"><l>mapone</l><block s="reifyScript"><script><block s="doIf"><custom-block s="empty? %l"><block var="data"/></custom-block><script><block s="doReport"><block s="reportNewList"><list></list></block></block></script></block><block s="doReport"><block s="reportCONS"><block s="evaluate"><block var="function"/><list><block s="reportListItem"><l>1</l><block var="data"/></block></list></block><block s="evaluate"><block var="mapone"/><list><block s="reportCDR"><block var="data"/></block></list></block></block></block></script><list><l>data</l></list></block></block><block s="doSetVar"><l>mapmany</l><block s="reifyScript"><script><block s="doIf"><custom-block s="empty? %l"><block s="reportListItem"><l>1</l><block var="data lists"/></block></custom-block><script><block s="doReport"><block s="reportNewList"><list></list></block></block></script></block><block s="doReport"><block s="reportCONS"><block s="evaluate"><block var="function"/><custom-block s="map %repRing over %mult%l"><block s="reifyReporter"><autolambda><block s="reportListItem"><l>1</l><l/></block></autolambda><list></list></block><list><block var="data lists"/></list></custom-block></block><block s="evaluate"><block var="mapmany"/><list><custom-block s="map %repRing over %mult%l"><block s="reifyReporter"><autolambda><block s="reportCDR"><l/></block></autolambda><list></list></block><list><block var="data lists"/></list></custom-block></list></block></block></block></script><list><l>data lists</l></list></block></block><block s="doIfElse"><custom-block s="empty? %l"><block s="reportCDR"><block var="lists"/></block></custom-block><script><block s="doReport"><block s="evaluate"><block var="mapone"/><list><block s="reportListItem"><l>1</l><block var="lists"/></block></list></block></block></script><script><block s="doReport"><block s="evaluate"><block var="mapmany"/><list><block var="lists"/></list></block></block></script></block></script></block></script></block-definition><block-definition s="empty? %&apos;data&apos;" type="predicate" category="lists"><header></header><code></code><translations></translations><inputs><input type="%l"></input></inputs><script><block s="doReport"><block s="reportEquals"><block var="data"/><block s="reportNewList"><list></list></block></block></block></script></block-definition><block-definition s="keep items such that %&apos;pred&apos; from %&apos;data&apos;" type="reporter" category="lists"><header></header><code></code><translations></translations><inputs><input type="%predRing"></input><input type="%l"></input></inputs><script><block s="doWarp"><script><block s="doIf"><custom-block s="empty? %l"><block var="data"/></custom-block><script><block s="doReport"><block s="reportNewList"><list></list></block></block></script></block><block s="doIfElse"><block s="evaluate"><block var="pred"/><list><block s="reportListItem"><l>1</l><block var="data"/></block></list></block><script><block s="doReport"><block s="reportCONS"><block s="reportListItem"><l>1</l><block var="data"/></block><custom-block s="keep items such that %predRing from %l"><block var="pred"/><block s="reportCDR"><block var="data"/></block></custom-block></block></block></script><script><block s="doReport"><custom-block s="keep items such that %predRing from %l"><block var="pred"/><block s="reportCDR"><block var="data"/></block></custom-block></block></script></block></script></block></script></block-definition><block-definition s="combine with %&apos;function&apos; items of %&apos;data&apos;" type="reporter" category="lists"><header></header><code></code><translations></translations><inputs><input type="%repRing"></input><input type="%l"></input></inputs><script><block s="doWarp"><script><block s="doIf"><custom-block s="empty? %l"><block s="reportCDR"><block var="data"/></block></custom-block><script><block s="doReport"><block s="reportListItem"><l>1</l><block var="data"/></block></block></script></block><block s="doReport"><block s="evaluate"><block var="function"/><list><block s="reportListItem"><l>1</l><block var="data"/></block><custom-block s="combine with %repRing items of %l"><block var="function"/><block s="reportCDR"><block var="data"/></block></custom-block></list></block></block></script></block></script></block-definition><block-definition s="if %&apos;test&apos; then %&apos;true&apos; else %&apos;false&apos;" type="reporter" category="control"><header></header><code></code><translations></translations><inputs><input type="%b"></input><input type="%anyUE"></input><input type="%anyUE"></input></inputs><script><block s="doIfElse"><block var="test"/><script><block s="doReport"><block s="evaluate"><block var="true"/><list></list></block></block></script><script><block s="doReport"><block s="evaluate"><block var="false"/><list></list></block></block></script></block></script></block-definition><block-definition s="for %&apos;i&apos; = %&apos;start&apos; to %&apos;end&apos; %&apos;action&apos;" type="command" category="control"><header></header><code></code><translations></translations><inputs><input type="%upvar"></input><input type="%n">1</input><input type="%n">10</input><input type="%cs"></input></inputs><script><block s="doDeclareVariables"><list><l>step</l><l>tester</l></list></block><block s="doIfElse"><block s="reportGreaterThan"><block var="start"/><block var="end"/></block><script><block s="doSetVar"><l>step</l><l>-1</l></block><block s="doSetVar"><l>tester</l><block s="reifyReporter"><autolambda><block s="reportLessThan"><block var="i"/><block var="end"/></block></autolambda><list></list></block></block></script><script><block s="doSetVar"><l>step</l><l>1</l></block><block s="doSetVar"><l>tester</l><block s="reifyReporter"><autolambda><block s="reportGreaterThan"><block var="i"/><block var="end"/></block></autolambda><list></list></block></block></script></block><block s="doSetVar"><l>i</l><block var="start"/></block><block s="doUntil"><block s="evaluate"><block var="tester"/><list></list></block><script><block s="doRun"><block var="action"/><list></list></block><block s="doChangeVar"><l>i</l><block var="step"/></block></script></block></script></block-definition><block-definition s="join words %&apos;words&apos;" type="reporter" category="operators"><header></header><code></code><translations></translations><inputs><input type="%mult%txt"></input></inputs><script><block s="doWarp"><script><block s="doIf"><custom-block s="empty? %l"><block s="reportCDR"><block var="words"/></block></custom-block><script><block s="doReport"><block s="reportListItem"><l>1</l><block var="words"/></block></block></script></block><block s="doIf"><block s="reportEquals"><l></l><block s="reportListItem"><l>1</l><block var="words"/></block></block><script><block s="doReport"><custom-block s="join words %mult%txt"><block s="reportCDR"><block var="words"/></block></custom-block></block></script></block><block s="doIf"><block s="reportEquals"><l></l><block s="reportListItem"><l>2</l><block var="words"/></block></block><script><block s="doReport"><custom-block s="join words %mult%txt"><block s="reportCONS"><block s="reportListItem"><l>1</l><block var="words"/></block><block s="reportCDR"><block s="reportCDR"><block var="words"/></block></block></block></custom-block></block></script></block><block s="doReport"><block s="reportJoinWords"><list><block s="reportListItem"><l>1</l><block var="words"/></block><l> </l><custom-block s="join words %mult%txt"><block s="reportCDR"><block var="words"/></block></custom-block></list></block></block></script></block></script><scripts><script x="229.00000300000002" y="196.7777807777777"><block s="reportJoinWords"><list><l></l><l></l></list></block></script></scripts></block-definition><block-definition s="list $arrowRight sentence %&apos;data&apos;" type="reporter" category="operators"><header></header><code></code><translations></translations><inputs><input type="%l"></input></inputs><script><block s="doWarp"><script><block s="doReport"><custom-block s="join words %mult%txt"><block var="data"/></custom-block></block></script></block></script></block-definition><block-definition s="sentence $arrowRight list %&apos;text&apos;" type="reporter" category="operators"><header></header><code></code><translations></translations><inputs><input type="%txt"></input></inputs><script><block s="doWarp"><script><block s="doReport"><block s="reportTextSplit"><block var="text"/><l><option>whitespace</option></l></block></block></script></block></script></block-definition><block-definition s="catch %&apos;tag&apos; %&apos;action&apos;" type="command" category="control"><header></header><code></code><translations></translations><inputs><input type="%upvar"></input><input type="%cs"></input></inputs><script><block s="doCallCC"><block s="reifyScript"><script><block s="doSetVar"><l>tag</l><block var="cont"/></block><block s="doRun"><block var="action"/><list></list></block></script><list><l>cont</l></list></block></block><custom-block s="ignore %s"><l>3</l></custom-block></script></block-definition><block-definition s="throw %&apos;cont&apos;" type="command" category="control"><header></header><code></code><translations></translations><inputs><input type="%s">catchtag</input></inputs><script><block s="doRun"><block var="cont"/><list></list></block></script></block-definition><block-definition s="catch %&apos;tag&apos; %&apos;value&apos;" type="reporter" category="control"><header></header><code></code><translations></translations><inputs><input type="%upvar"></input><input type="%anyUE"></input></inputs><script><block s="doCallCC"><block s="reifyScript"><script><block s="doSetVar"><l>tag</l><block var="cont"/></block><block s="doReport"><block s="evaluate"><block var="value"/><list></list></block></block></script><list><l>cont</l></list></block></block></script></block-definition><block-definition s="throw %&apos;tag&apos; %&apos;value&apos;" type="command" category="control"><header></header><code></code><translations></translations><inputs><input type="%s">catchtag</input><input type="%s"></input></inputs><script><block s="doRun"><block var="tag"/><list><block var="value"/></list></block></script></block-definition><block-definition s="for each %&apos;item&apos; of %&apos;data&apos; %&apos;action&apos;" type="command" category="lists"><header></header><code></code><translations></translations><inputs><input type="%upvar"></input><input type="%l"></input><input type="%cs"></input></inputs><script><block s="doUntil"><custom-block s="empty? %l"><block var="data"/></custom-block><script><block s="doSetVar"><l>item</l><block s="reportListItem"><l>1</l><block var="data"/></block></block><block s="doRun"><block var="action"/><list><block s="reportListItem"><l>1</l><block var="data"/></block></list></block><block s="doSetVar"><l>data</l><block s="reportCDR"><block var="data"/></block></block></script></block></script></block-definition><block-definition s="if %&apos;test&apos; do %&apos;action&apos; and pause all $pause-1-255-220-0" type="command" category="control"><header></header><code></code><translations></translations><inputs><input type="%boolUE"></input><input type="%cs"></input></inputs><script><block s="doDeclareVariables"><list><l>breakpoint</l></list></block><block s="doIf"><block s="evaluate"><block var="test"/><list></list></block><script><block s="doSetVar"><l>breakpoint</l><block var="test"/></block><block s="doShowVar"><l>breakpoint</l></block><block s="doRun"><block var="action"/><list></list></block><block s="doPauseAll"></block><block s="doHideVar"><l></l></block></script></block></script></block-definition><block-definition s="word $arrowRight list %&apos;word&apos;" type="reporter" category="operators"><header></header><code></code><translations></translations><inputs><input type="%txt"></input></inputs><script><block s="doWarp"><script><block s="doReport"><block s="reportTextSplit"><block var="word"/><l><option>letter</option></l></block></block></script></block></script></block-definition><block-definition s="ignore %&apos;x&apos;" type="command" category="control"><header></header><code></code><translations></translations><inputs><input type="%s"></input></inputs></block-definition><block-definition s="tell %&apos;sprite&apos; to %&apos;action&apos;" type="command" category="control"><header></header><code></code><translations></translations><inputs><input type="%s">Sprite</input><input type="%cs"></input></inputs><script><block s="doRun"><block s="reportAttributeOf"><block var="action"/><block var="sprite"/></block><list></list></block></script></block-definition><block-definition s="ask %&apos;sprite&apos; for %&apos;expression&apos;" type="reporter" category="control"><header></header><code></code><translations></translations><inputs><input type="%s">Sprite</input><input type="%repRing"></input></inputs><script><block s="doReport"><block s="evaluate"><block s="reportAttributeOf"><block var="expression"/><block var="sprite"/></block><list></list></block></block></script></block-definition><block-definition s="list $arrowRight word %&apos;list&apos;" type="reporter" category="operators"><header></header><code></code><translations></translations><inputs><input type="%l"></input></inputs><script><block s="doWarp"><script><block s="doReport"><block s="reportJoinWords"><block var="list"/></block></block></script></block></script></block-definition><block-definition s="min of list %&apos;list&apos;" type="reporter" category="operators"><header></header><code></code><translations></translations><inputs><input type="%l"></input></inputs><script><block s="doReport"><custom-block s="combine with %repRing items of %l"><block s="reifyReporter"><autolambda><custom-block s="min of %s , %s"><l></l><l></l></custom-block></autolambda><list></list></block><block var="list"/></custom-block></block></script></block-definition><block-definition s="max of list %&apos;list&apos;" type="reporter" category="operators"><header></header><code></code><translations></translations><inputs><input type="%l"></input></inputs><script><block s="doReport"><custom-block s="combine with %repRing items of %l"><block s="reifyReporter"><autolambda><custom-block s="max of %s , %s"><l></l><l></l></custom-block></autolambda><list></list></block><block var="list"/></custom-block></block></script></block-definition><block-definition s="min of %&apos;a&apos; , %&apos;b&apos;" type="reporter" category="operators"><header></header><code></code><translations></translations><inputs><input type="%s"></input><input type="%s"></input></inputs><script><block s="doIfElse"><block s="reportLessThan"><block var="a"/><block var="b"/></block><script><block s="doReport"><block var="a"/></block></script><script><block s="doReport"><block var="b"/></block></script></block></script></block-definition><block-definition s="max of %&apos;a&apos; , %&apos;b&apos;" type="reporter" category="operators"><header></header><code></code><translations></translations><inputs><input type="%s"></input><input type="%s"></input></inputs><script><block s="doIfElse"><block s="reportGreaterThan"><block var="a"/><block var="b"/></block><script><block s="doReport"><block var="a"/></block></script><script><block s="doReport"><block var="b"/></block></script></block></script></block-definition><block-definition s="CO2 Emissions Data" type="reporter" category="lists"><header></header><code></code><translations></translations><inputs></inputs><script><block s="doReport"><block s="reportNewList"><list><custom-block s="data-record, label: %txt value: %n"><l>China</l><l>8715</l></custom-block><custom-block s="data-record, label: %txt value: %n"><l>USA</l><l>5491</l></custom-block><custom-block s="data-record, label: %txt value: %n"><l>Russia</l><l>1788</l></custom-block><custom-block s="data-record, label: %txt value: %n"><l>India</l><l>1726</l></custom-block><custom-block s="data-record, label: %txt value: %n"><l>Japan</l><l>1181</l></custom-block><custom-block s="data-record, label: %txt value: %n"><l>Germany</l><l>748</l></custom-block><custom-block s="data-record, label: %txt value: %n"><l>Iran</l><l>624</l></custom-block><custom-block s="data-record, label: %txt value: %n"><l>S. Korea</l><l>611</l></custom-block><custom-block s="data-record, label: %txt value: %n"><l>Canada</l><l>553</l></custom-block></list></block></block></script></block-definition><block-definition s="CO2 Emissions per capita Data" type="reporter" category="lists"><header></header><code></code><translations></translations><inputs></inputs><script><block s="doReport"><block s="reportNewList"><list><custom-block s="data-record, label: %txt value: %n"><l>China</l><l>6.52</l></custom-block><custom-block s="data-record, label: %txt value: %n"><l>USA</l><l>17.62</l></custom-block><custom-block s="data-record, label: %txt value: %n"><l>Russia</l><l>12.55</l></custom-block><custom-block s="data-record, label: %txt value: %n"><l>India</l><l>1.45</l></custom-block><custom-block s="data-record, label: %txt value: %n"><l>Japan</l><l>9.26</l></custom-block><custom-block s="data-record, label: %txt value: %n"><l>Germany</l><l>9.19</l></custom-block><custom-block s="data-record, label: %txt value: %n"><l>Iran</l><l>8.02</l></custom-block><custom-block s="data-record, label: %txt value: %n"><l>S. Korea</l><l>12.53</l></custom-block><custom-block s="data-record, label: %txt value: %n"><l>Canada</l><l>16.24</l></custom-block></list></block></block></script></block-definition><block-definition s="label, text: %&apos;text&apos; size: %&apos;size&apos; direction: %&apos;direction&apos;" type="command" category="pen"><header></header><code></code><translations></translations><inputs><input type="%s"></input><input type="%n"></input><input type="%n"></input></inputs><script><block s="setHeading"><block var="direction"/></block><custom-block s="label %txt of size %n"><block var="text"/><block var="size"/></custom-block></script></block-definition><block-definition s="draw bar, label: %&apos;label&apos; label size: %&apos;label size&apos; width: %&apos;width&apos; height: %&apos;height&apos;" type="command" category="pen"><header></header><code></code><translations></translations><inputs><input type="%s"></input><input type="%n"></input><input type="%n"></input><input type="%n"></input></inputs><script><custom-block s="label, text: %s size: %n direction: %n"><block var="label"/><block var="label size"/><l>0</l></custom-block><block s="setYPosition"><block var="y-origin"/></block><block s="down"></block><block s="setSize"><block var="width"/></block><block s="forward"><block var="height"/></block><block s="up"></block></script></block-definition><block-definition s="draw axes, x0: %&apos;x0&apos; y0: %&apos;y0&apos; horizontal length: %&apos;horiz length&apos; vertical height: %&apos;vert height&apos;" type="command" category="pen"><header></header><code></code><translations></translations><inputs><input type="%n"></input><input type="%n"></input><input type="%n"></input><input type="%n"></input></inputs><script><block s="up"></block><block s="doSetVar"><l>x-origin</l><block var="x0"/></block><block s="doSetVar"><l>y-origin</l><block var="y0"/></block><block s="gotoXY"><block var="x-origin"/><block var="y-origin"/></block><block s="setSize"><l>3</l></block><block s="down"></block><block s="changeXPosition"><block var="horiz length"/></block><block s="gotoXY"><block var="x-origin"/><block var="y-origin"/></block><block s="changeYPosition"><block var="vert height"/></block><block s="up"></block></script></block-definition><block-definition s="label vertical axis, vertical height: %&apos;vert height&apos; data: %&apos;data list&apos;" type="command" category="pen"><header></header><code></code><translations></translations><inputs><input type="%n"></input><input type="%l"></input></inputs><script><block s="doSetVar"><l>y-axis scale</l><block s="reportQuotient"><block var="vert height"/><l>10</l></block></block><block s="doSetVar"><l>y-axis values</l><block s="reportQuotient"><block var="maximum of data values"/><l>10</l></block></block><block s="gotoXY"><block s="reportDifference"><block var="x-origin"/><l>35</l></block><block var="y-origin"/></block><custom-block s="label, text: %s size: %n direction: %n"><l>0</l><l>10</l><l>90</l></custom-block><block s="gotoXY"><block s="reportDifference"><block var="x-origin"/><l>16</l></block><block s="reportVariadicSum"><list><block var="y-origin"/><l>1</l></list></block></block><block s="write"><l>__</l><l>14</l></block><block s="doFor"><l>i</l><l>1</l><l>10</l><script><block s="changeYPosition"><block var="y-axis scale"/></block><block s="setXPosition"><block s="reportDifference"><block var="x-origin"/><l>40</l></block></block><custom-block s="label, text: %s size: %n direction: %n"><block s="reportRound"><block s="reportVariadicProduct"><list><block var="y-axis values"/><block var="i"/></list></block></block><l>10</l><l>90</l></custom-block><block s="write"><l>__</l><l>14</l></block></script></block></script><scripts><script x="440.5957031250002" y="234.50000000000193"><block var="y-origin"/></script><script x="436.4541015624998" y="164.99999999999955"><block var="vert height"/></script><script x="447.2265625" y="330.6666666666667"><block var="y-axis values"/></script><script x="238" y="244.33333333333343"><block s="gotoXY"><l>0</l><l>0</l></block></script><script x="425.9912109375001" y="172.33333333333337"><block s="reportDifference"><block var="x-origin"/><l>16</l></block></script><script x="446.0849609375" y="210.33333333333337"><block s="reportVariadicSum"><list><block var="y-origin"/><l>1</l></list></block></script></scripts></block-definition><block-definition s="draw bars, bar width: %&apos;width&apos; max bar height: %&apos;max bar height&apos; data: %&apos;data list&apos;" type="command" category="pen"><header></header><code></code><translations></translations><inputs><input type="%n"></input><input type="%n"></input><input type="%l"></input></inputs><script><block s="doSetVar"><l>maximum of data values</l><custom-block s="max of list %l"><custom-block s="map %repRing over %mult%l"><block s="reifyReporter"><autolambda><custom-block s="value from data-record: %l"><l/></custom-block></autolambda><list></list></block><list><block var="data list"/></list></custom-block></custom-block></block><block s="setXPosition"><block s="reportVariadicSum"><list><block var="x-origin"/><l>15</l></list></block></block><block s="doForEach"><l>item</l><block var="data list"/><script><block s="setYPosition"><l>-155</l></block><custom-block s="draw bar, label: %s label size: %n width: %n height: %n"><custom-block s="label from data-record: %l"><block var="item"/></custom-block><l>12</l><block var="width"/><block s="reportVariadicProduct"><list><block s="reportQuotient"><custom-block s="value from data-record: %l"><block var="item"/></custom-block><block var="maximum of data values"/></block><block var="max bar height"/></list></block></custom-block><block s="changeXPosition"><block s="reportVariadicSum"><list><block var="width"/><l>20</l></list></block></block></script></block></script></block-definition><block-definition s="set origin x: %&apos;x&apos; y: %&apos;y&apos;" type="command" category="motion"><header></header><code></code><translations></translations><inputs><input type="%n"></input><input type="%n"></input></inputs><script><block s="doSetVar"><l>x-origin</l><block var="x"/></block><block s="doSetVar"><l>y-origin</l><block var="y"/></block><block s="gotoXY"><block var="x"/><block var="y"/></block></script></block-definition><block-definition s="Country-GDP-Population Data" type="reporter" category="lists"><header></header><code></code><translations></translations><inputs></inputs><script><block s="doReport"><block s="reportNewList"><list><block s="reportNewList"><list><l>China</l><l>13421985588615</l><l>1336718015</l></list></block><block s="reportNewList"><list><l>USA</l><l>15507135407358</l><l>311050977</l></list></block><block s="reportNewList"><list><l>Russia</l><l>3121925049784</l><l>138739892</l></list></block><block s="reportNewList"><list><l>India</l><l>5806731299998</l><l>1189172906</l></list></block><block s="reportNewList"><list><l>Japan</l><l>4367871360438</l><l>127469543</l></list></block><block s="reportNewList"><list><l>Germany</l><l>3338715757320</l><l>81471834</l></list></block><block s="reportNewList"><list><l>Iran</l><l>1243922783400</l><l>77891220</l></list></block><block s="reportNewList"><list><l>S. Korea</l><l>1415591465995</l><l>48754657</l></list></block><block s="reportNewList"><list><l>Canada</l><l>1374291306176</l><l>34030589</l></list></block></list></block></block></script></block-definition><block-definition s="per capita label" type="command" category="pen"><header></header><code></code><translations></translations><inputs></inputs><script><block s="gotoXY"><l>-140</l><l>155</l></block><custom-block s="label %txt of size %n"><l>2011 Top CO2 Emissions per Capita</l><l>20</l></custom-block><block s="gotoXY"><l>-50</l><l>130</l></block><custom-block s="label %txt of size %n"><l>(in metric tons per person)</l><l>10</l></custom-block></script></block-definition><block-definition s="co2 emissions label" type="command" category="pen"><header></header><code></code><translations></translations><inputs></inputs><script><block s="gotoXY"><l>-140</l><l>155</l></block><custom-block s="label %txt of size %n"><l>2011 Top CO2 Emissions </l><l>20</l></custom-block><block s="gotoXY"><l>-50</l><l>130</l></block><custom-block s="label %txt of size %n"><l>(in millions of metric tons)</l><l>10</l></custom-block></script></block-definition><block-definition s="GDP per Capita Graph, data: %&apos;data list&apos;" type="command" category="looks"><header></header><code></code><translations></translations><inputs><input type="%l"></input></inputs><script><custom-block s="draw axes, x0: %n y0: %n horizontal length: %n vertical height: %n"><l>-190</l><l>-90</l><l>400</l><l>240</l></custom-block><custom-block s="draw bars, bar width: %n max bar height: %n data: %l"><l>20</l><l>240</l><custom-block s="Country-GDP-Per-Capita Data"></custom-block></custom-block><custom-block s="label vertical axis, vertical height: %n data: %l"><l>240</l><custom-block s="Country-GDP-Per-Capita Data"></custom-block></custom-block></script></block-definition><block-definition s="Country-GDP-Per-Capita Data" type="reporter" category="variables"><header></header><code></code><translations></translations><inputs></inputs><script><block s="doReport"><block s="reportNewList"><list><block s="reportNewList"><list><l>China</l><block s="reportQuotient"><block s="reportListItem"><l>2</l><block s="reportListItem"><l>1</l><custom-block s="Country-GDP-Population Data"></custom-block></block></block><block s="reportListItem"><l>3</l><block s="reportListItem"><l>1</l><custom-block s="Country-GDP-Population Data"></custom-block></block></block></block></list></block><block s="reportNewList"><list><l>USA</l><block s="reportQuotient"><block s="reportListItem"><l>2</l><block s="reportListItem"><l>2</l><custom-block s="Country-GDP-Population Data"></custom-block></block></block><block s="reportListItem"><l>3</l><block s="reportListItem"><l>2</l><custom-block s="Country-GDP-Population Data"></custom-block></block></block></block></list></block><block s="reportNewList"><list><l>Russia</l><block s="reportQuotient"><block s="reportListItem"><l>2</l><block s="reportListItem"><l>3</l><custom-block s="Country-GDP-Population Data"></custom-block></block></block><block s="reportListItem"><l>3</l><block s="reportListItem"><l>3</l><custom-block s="Country-GDP-Population Data"></custom-block></block></block></block></list></block><block s="reportNewList"><list><l>India</l><block s="reportQuotient"><block s="reportListItem"><l>2</l><block s="reportListItem"><l>4</l><custom-block s="Country-GDP-Population Data"></custom-block></block></block><block s="reportListItem"><l>3</l><block s="reportListItem"><l>4</l><custom-block s="Country-GDP-Population Data"></custom-block></block></block></block></list></block><block s="reportNewList"><list><l>Japan</l><block s="reportQuotient"><block s="reportListItem"><l>2</l><block s="reportListItem"><l>5</l><custom-block s="Country-GDP-Population Data"></custom-block></block></block><block s="reportListItem"><l>3</l><block s="reportListItem"><l>5</l><custom-block s="Country-GDP-Population Data"></custom-block></block></block></block></list></block><block s="reportNewList"><list><l>Germany</l><block s="reportQuotient"><block s="reportListItem"><l>2</l><block s="reportListItem"><l>6</l><custom-block s="Country-GDP-Population Data"></custom-block></block></block><block s="reportListItem"><l>3</l><block s="reportListItem"><l>6</l><custom-block s="Country-GDP-Population Data"></custom-block></block></block></block></list></block><block s="reportNewList"><list><l>Iran</l><block s="reportQuotient"><block s="reportListItem"><l>2</l><block s="reportListItem"><l>7</l><custom-block s="Country-GDP-Population Data"></custom-block></block></block><block s="reportListItem"><l>3</l><block s="reportListItem"><l>7</l><custom-block s="Country-GDP-Population Data"></custom-block></block></block></block></list></block><block s="reportNewList"><list><l>S. Korea</l><block s="reportQuotient"><block s="reportListItem"><l>2</l><block s="reportListItem"><l>8</l><custom-block s="Country-GDP-Population Data"></custom-block></block></block><block s="reportListItem"><l>3</l><block s="reportListItem"><l>8</l><custom-block s="Country-GDP-Population Data"></custom-block></block></block></block></list></block><block s="reportNewList"><list><l>Canada</l><block s="reportQuotient"><block s="reportListItem"><l>2</l><block s="reportListItem"><l>9</l><custom-block s="Country-GDP-Population Data"></custom-block></block></block><block s="reportListItem"><l>3</l><block s="reportListItem"><l>9</l><custom-block s="Country-GDP-Population Data"></custom-block></block></block></block></list></block></list></block></block></script></block-definition><block-definition s="gdp per capita label" type="command" category="pen"><header></header><code></code><translations></translations><inputs></inputs><script><block s="gotoXY"><l>-100</l><l>155</l></block><custom-block s="label %txt of size %n"><l>GDP Per Capita</l><l>20</l></custom-block></script></block-definition></blocks><stage name="Stage" width="480" height="360" costume="0" color="255,255,255,1" tempo="60" threadsafe="false" penlog="false" volume="100" pan="0" lines="flat" ternary="true" hyperops="true" codify="false" inheritance="false" sublistIDs="false" id="1287"><pentrails>data:image/png;base64,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</pentrails><costumes><list struct="atomic" id="1288"></list></costumes><sounds><list struct="atomic" id="1289"></list></sounds><variables></variables><blocks></blocks><scripts></scripts><sprites select="1"><sprite name="Sprite" idx="1" x="-175" y="-155" heading="0" scale="1" volume="100" pan="0" rotation="1" draggable="true" hidden="true" costume="0" color="80,80,80,1" pen="tip" id="1294"><costumes><list struct="atomic" id="1295"></list></costumes><sounds><list struct="atomic" id="1296"></list></sounds><blocks></blocks><variables></variables><scripts><script x="11" y="96.66666666666478"><block s="clear"></block><custom-block s="Bar Graph, data: %l"><custom-block s="CO2 Emissions per capita Data"></custom-block></custom-block><custom-block s="per capita label"></custom-block></script><script x="16" y="191.49999999999864"><block s="clear"></block><custom-block s="GDP per Capita Graph, data: %l"><custom-block s="Country-GDP-Per-Capita Data"></custom-block></custom-block><custom-block s="gdp per capita label"></custom-block></script><script x="10" y="10"><block s="clear"></block><custom-block s="Bar Graph, data: %l"><custom-block s="CO2 Emissions Data"></custom-block></custom-block><custom-block s="co2 emissions label"></custom-block></script><script x="12.000000000000057" y="280.49999999999795"><custom-block s="value from data-record: %l"><custom-block s="data-record, label: %txt value: %n"><l>China</l><l>8715</l></custom-block></custom-block></script><script x="11" y="322.49999999999864"><custom-block s="label from data-record: %l"><custom-block s="data-record, label: %txt value: %n"><l>China</l><l>8715</l></custom-block></custom-block></script><script x="12" y="370.9999999999991"><block s="reportNewList"><list><l>0</l><l>872</l><l>1743</l><l>2615</l><l>3486</l><l>4358</l><l>5229</l><l>6101</l><l>6972</l><l>7844</l><l>8715</l></list></block></script><script x="14" y="422.49999999999943"><custom-block s="data-record, label: %txt value: %n"><l>China</l><l>8715</l></custom-block></script></scripts></sprite><watcher var="maximum of data values" style="normal" x="0" y="28.822317684244958" color="243,118,29" hidden="true"/><watcher var="y-axis scale" style="normal" x="16.0517799352765" y="16.05177993527512" color="243,118,29" hidden="true"/><watcher var="y-axis values" style="normal" x="27.252747252752897" y="27.25274725274702" color="243,118,29" hidden="true"/></sprites></stage><variables><variable name="x-origin"><l>-190</l></variable><variable name="y-origin"><l>-90</l></variable><variable name="maximum of data values"><l>8715</l></variable><variable name="y-axis scale"><l>24</l></variable><variable name="y-axis values"><l>871.5</l></variable></variables></scene></scenes></project><media name="L14 Bar Graph" app="Snap! 7, https://snap.berkeley.edu" version="2"></media></snapdata>