diff --git a/.travis.yml b/.travis.yml index 13ccbc30b19e7a92ed2c25a39bf0f5037daa651a..522cedab5c72c04cffb96b29c916caaeb51f1b50 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: node_js -sudo: false +sudo: required dist: trusty addons: chrome: stable diff --git a/package.json b/package.json index 13a4b8c1f0dd219702d475c71207e4b18c4dfd87..3346febc8f0b20e43415acf4e3e96e3e462c4e09 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "build": "npm run clean && webpack --progress --colors --bail", "clean": "rimraf ./build && mkdirp build", "deploy": "touch build/.nojekyll && gh-pages -t -d build -m \"Build for $(git log --pretty=format:%H -n1)\"", - "i18n:src": "babel src > tmp.js && rimraf tmp.js && ./scripts/build-i18n-source.js ./translations/messages/ ./translations/", + "i18n:src": "babel src > tmp.js && rimraf tmp.js && build-i18n-src ./translations/messages/ ./translations/", "start": "webpack-dev-server", "test": "npm run test:lint && npm run test:unit && NODE_ENV=production npm run build && npm run test:integration", "test:integration": "jest --runInBand test[\\\\/]integration", @@ -28,11 +28,9 @@ }, "devDependencies": { "autoprefixer": "^7.1.3", - "babel-cli": "^6.26.0", "babel-core": "^6.23.1", "babel-eslint": "^8.0.1", "babel-loader": "^7.1.0", - "babel-plugin-react-intl": "^2.3.1", "babel-plugin-syntax-dynamic-import": "^6.18.0", "babel-plugin-transform-async-to-generator": "^6.24.1", "babel-plugin-transform-object-rest-spread": "^6.22.0", @@ -41,14 +39,14 @@ "buffer-loader": "0.0.1", "chromedriver": "2.33.1", "classnames": "2.2.5", - "copy-webpack-plugin": "^4.0.1", + "copy-webpack-plugin": "^4.2.3", "css-loader": "^0.28.7", "enzyme": "^3.1.0", - "enzyme-adapter-react-16": "1.0.3", + "enzyme-adapter-react-16": "1.1.0", "eslint": "^4.7.1", "eslint-config-scratch": "^5.0.0", "eslint-plugin-import": "^2.7.0", - "eslint-plugin-react": "^7.2.1", + "eslint-plugin-react": "^7.5.1", "file-loader": "1.1.5", "get-float-time-domain-data": "0.1.0", "gh-pages": "github:rschamp/gh-pages#publish-branch-to-subfolder", @@ -69,29 +67,29 @@ "prop-types": "^15.5.10", "raf": "^3.4.0", "raw-loader": "0.5.1", - "react": "16.0.0", - "react-contextmenu": "2.8.0", - "react-dom": "16.0.0", - "react-draggable": "3.0.3", + "react": "16.2.0", + "react-contextmenu": "2.9.1", + "react-dom": "16.2.0", + "react-draggable": "3.0.4", "react-intl": "2.4.0", "react-intl-redux": "0.6.0", - "react-modal": "3.0.2", + "react-modal": "3.1.7", "react-redux": "5.0.6", - "react-responsive": "3.0.0", - "react-style-proptype": "3.0.0", - "react-tabs": "2.1.0", - "react-test-renderer": "16.0.0", + "react-responsive": "4.0.3", + "react-style-proptype": "3.1.0", + "react-tabs": "2.1.1", + "react-test-renderer": "16.2.0", "redux": "3.7.0", "redux-mock-store": "^1.2.3", "redux-throttle": "0.1.1", "rimraf": "^2.6.1", - "scratch-audio": "latest", - "scratch-blocks": "latest", - "scratch-l10n": "^2.0.0", - "scratch-paint": "latest", - "scratch-render": "latest", - "scratch-storage": "^0.3.0", - "scratch-vm": "latest", + "scratch-audio": "0.1.0-prerelease.1511362862", + "scratch-blocks": "0.1.0-prerelease.1512689011", + "scratch-l10n": "2.0.20171127165917", + "scratch-paint": "0.1.0-prerelease.20171206013751", + "scratch-render": "0.1.0-prerelease.1513001977", + "scratch-storage": "0.3.0", + "scratch-vm": "0.1.0-prerelease.1512751561-prerelease.1512751574", "selenium-webdriver": "3.5.0", "startaudiocontext": "1.2.1", "style-loader": "^0.19.0", @@ -100,7 +98,7 @@ "wav-encoder": "1.3.0", "web-audio-test-api": "^0.5.2", "webpack": "^3.6.0", - "webpack-dev-server": "^2.8.2", + "webpack-dev-server": "^2.9.7", "xhr": "2.4.0" }, "jest": { diff --git a/scripts/build-i18n-source.js b/scripts/build-i18n-source.js deleted file mode 100755 index 9f6571c1c3fa39fa2918744eb84221f8e546d057..0000000000000000000000000000000000000000 --- a/scripts/build-i18n-source.js +++ /dev/null @@ -1,45 +0,0 @@ -#!/usr/bin/env node - -const fs = require('fs'); -const glob = require('glob'); -const path = require('path'); -const mkdirp = require('mkdirp'); - -var args = process.argv.slice(2); - -if (!args.length) { - process.stdout.write('You must specify the messages dir generated by babel-plugin-react-intl.\n'); - process.exit(1); -} - -const MESSAGES_PATTERN = args.shift() + '/**/*.json'; - -if (!args.length) { - process.stdout.write('A destination directory must be specified.\n'); - process.exit(1); -} - -const LANG_DIR = args.shift(); - -// Aggregates the default messages that were extracted from the example app's -// React components via the React Intl Babel plugin. An error will be thrown if -// there are messages in different components that use the same `id`. The result -// is a chromei18n format collection of `id: {message: defaultMessage, -// description: description}` pairs for the app's default locale. -let defaultMessages = glob.sync(MESSAGES_PATTERN) - .map((filename) => fs.readFileSync(filename, 'utf8')) - .map((file) => JSON.parse(file)) - .reduce((collection, descriptors) => { - descriptors.forEach(({id, defaultMessage, description}) => { - if (collection.hasOwnProperty(id)) { - throw new Error(`Duplicate message id: ${id}`); - } - - collection[id] = {message: defaultMessage, description: description}; - }); - - return collection; - }, {}); - -mkdirp.sync(LANG_DIR); -fs.writeFileSync(path.join(LANG_DIR, 'en.json'), JSON.stringify(defaultMessages, null, 2)); diff --git a/src/components/asset-panel/selector.css b/src/components/asset-panel/selector.css index 2a4de1a252be6c1f4e70893f462493fc8fd18886..63e6868326617b20c9ae347b20a71f29400c195c 100644 --- a/src/components/asset-panel/selector.css +++ b/src/components/asset-panel/selector.css @@ -1,4 +1,5 @@ @import "../../css/colors.css"; +@import "../../css/units.css"; .wrapper { width: 150px; @@ -51,3 +52,14 @@ min-height: 5rem; margin: 1rem auto; } + +@media only screen and (max-width: $full-size-paint) { + .wrapper { + width: 80px; + } + + .list-item { + width: 4rem; + min-height: 4rem; + } +} diff --git a/src/components/close-button/close-button.jsx b/src/components/close-button/close-button.jsx index 416adec8e279b7c185468b376e10fb46bf729416..039a8750b7ae108506a2077c07ad2e66496c1217 100644 --- a/src/components/close-button/close-button.jsx +++ b/src/components/close-button/close-button.jsx @@ -7,6 +7,7 @@ import closeIcon from './icon--close.svg'; const CloseButton = props => ( <div + aria-label="Close" className={classNames( styles.closeButton, props.className, @@ -15,6 +16,8 @@ const CloseButton = props => ( [styles.large]: props.size === CloseButton.SIZE_LARGE } )} + role="button" + tabIndex="0" onClick={props.onClick} > <img diff --git a/src/components/custom-procedures/custom-procedures.css b/src/components/custom-procedures/custom-procedures.css new file mode 100644 index 0000000000000000000000000000000000000000..c9afdd1c22adff5187bb737d051ccedca296edc7 --- /dev/null +++ b/src/components/custom-procedures/custom-procedures.css @@ -0,0 +1,91 @@ +@import "../../css/colors.css"; +@import "../../css/units.css"; + +.modal-content { + width: 700px; +} + +.body { + background: $ui-pane-gray; + padding: 1.5rem 2.25rem; +} + +/* Blocks workspace for custom procedure declaration editor */ +.workspace { + min-height: 200px; + position: relative; +} + +.workspace :global(.injectionDiv){ + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; +} + +.workspace :global(.blocklySvg) { + background-color: #E7EDF2; +} + +/* Row of "card" buttons for modifying custom procedures */ +.options-row { + display: flex; + justify-content: space-between; +} + +.option-card { + background: white; + border: 2px solid $form-border; + border-radius: $space; + padding: calc($space * 2); + text-align: center; + flex-grow: 1; + cursor: pointer; + transition: all 0.2s; + flex-basis: 100px; +} + +.option-card:hover { + border: 2px solid $motion-primary; + box-shadow: 0px 0px 0px 3px $motion-transparent; +} + +.option-card + .option-card { + margin-left: 1rem; +} + +.option-icon { + max-height: 48px; + margin-bottom: 0.5rem; +} + +.option-title { + font-weight: bold; +} + +/* Confirmation buttons at the bottom of the modal */ +.button-row { + margin-top: 1rem; + font-weight: bolder; + text-align: right; +} + +.button-row button { + border: 1px solid $ui-pane-border; + border-radius: 0.25rem; + padding: 0.75rem 1rem; + background: white; + font-weight: bold; + font-size: 0.85rem; +} + +.button-row button.ok-button { + background: $motion-primary; + border: $motion-primary; + color: white; +} + +.button-row button + button { + margin-left: 0.5rem; +} diff --git a/src/components/custom-procedures/custom-procedures.jsx b/src/components/custom-procedures/custom-procedures.jsx new file mode 100644 index 0000000000000000000000000000000000000000..9d349811527fc7adc39d60af32957eb477e3102b --- /dev/null +++ b/src/components/custom-procedures/custom-procedures.jsx @@ -0,0 +1,133 @@ +import PropTypes from 'prop-types'; +import React from 'react'; +import Modal from '../modal/modal.jsx'; +import Box from '../box/box.jsx'; +import {FormattedMessage} from 'react-intl'; + +import booleanInputIcon from './icon--boolean-input.svg'; +import textInputIcon from './icon--text-input.svg'; +import labelIcon from './icon--label.svg'; + +import styles from './custom-procedures.css'; + +const CustomProcedures = props => ( + <Modal + className={styles.modalContent} + contentLabel="Create new block" + onRequestClose={props.onCancel} + > + <Box + className={styles.workspace} + componentRef={props.componentRef} + /> + <Box className={styles.body}> + <div className={styles.optionsRow}> + <div + className={styles.optionCard} + role="button" + tabIndex="0" + onClick={props.onAddTextNumber} + > + <img + className={styles.optionIcon} + src={textInputIcon} + /> + <div className={styles.optionTitle}> + <FormattedMessage + defaultMessage="Add an input" + description="Label for button to add a number/text input" + id="gui.customProcedures.addAnInputNumberText" + /> + </div> + <div className={styles.optionDescription}> + <FormattedMessage + defaultMessage="number or text" + description="Description of the number/text input type" + id="gui.customProcedures.numberTextType" + /> + </div> + </div> + <div + className={styles.optionCard} + role="button" + tabIndex="0" + onClick={props.onAddBoolean} + > + <img + className={styles.optionIcon} + src={booleanInputIcon} + /> + <div className={styles.optionTitle}> + <FormattedMessage + defaultMessage="Add an input" + description="Label for button to add a boolean input" + id="gui.customProcedures.addAnInputBoolean" + /> + </div> + <div className={styles.optionDescription}> + <FormattedMessage + defaultMessage="boolean" + description="Description of the boolean input type" + id="gui.customProcedures.booleanType" + /> + </div> + </div> + <div + className={styles.optionCard} + role="button" + tabIndex="0" + onClick={props.onAddLabel} + > + <img + className={styles.optionIcon} + src={labelIcon} + /> + <div className={styles.optionTitle}> + <FormattedMessage + defaultMessage="Add a label" + description="Label for button to add a label" + id="gui.customProcedures.addALabel" + /> + </div> + </div> + </div> + <div className={styles.checkboxRow}> + {/* @todo (#993) Implement "run without screen refresh" */} + {/* <label><input type="checkbox" />Run without screen refresh</label> */} + </div> + <Box className={styles.buttonRow}> + <button + className={styles.cancelButton} + onClick={props.onCancel} + > + <FormattedMessage + defaultMessage="Cancel" + description="Label for button to cancel custom procedure edits" + id="gui.customProcedures.cancel" + /> + </button> + <button + className={styles.okButton} + onClick={props.onOk} + > + <FormattedMessage + defaultMessage="OK" + description="Label for button to save new custom procedure" + id="gui.customProcedures.ok" + /> + </button> + </Box> + </Box> + </Modal> +); + +CustomProcedures.propTypes = { + componentRef: PropTypes.func.isRequired, + onAddBoolean: PropTypes.func.isRequired, + onAddLabel: PropTypes.func.isRequired, + onAddTextNumber: PropTypes.func.isRequired, + onCancel: PropTypes.func.isRequired, + onOk: PropTypes.func.isRequired +}; + +export default CustomProcedures; diff --git a/src/components/custom-procedures/icon--boolean-input.svg b/src/components/custom-procedures/icon--boolean-input.svg new file mode 100644 index 0000000000000000000000000000000000000000..49a4d919fb321786383d313d6b529c64a9033ca9 Binary files /dev/null and b/src/components/custom-procedures/icon--boolean-input.svg differ diff --git a/src/components/custom-procedures/icon--label.svg b/src/components/custom-procedures/icon--label.svg new file mode 100644 index 0000000000000000000000000000000000000000..2c2d52a66da350abe5947ffdc139a1eacb2dbbf8 Binary files /dev/null and b/src/components/custom-procedures/icon--label.svg differ diff --git a/src/components/custom-procedures/icon--text-input.svg b/src/components/custom-procedures/icon--text-input.svg new file mode 100644 index 0000000000000000000000000000000000000000..a6dfbe5ebb8bed01a8cc9482e69f50c14fef62be Binary files /dev/null and b/src/components/custom-procedures/icon--text-input.svg differ diff --git a/src/components/gui/gui.css b/src/components/gui/gui.css index 9f9b84743fb3a861f3b0ba2d36fb55e9d25b28be..3d08cadf626c339dcdc33b3b1aa029c487078955 100644 --- a/src/components/gui/gui.css +++ b/src/components/gui/gui.css @@ -68,13 +68,15 @@ display: flex; justify-content: center; align-items: center; + + user-select: none; } .tab.is-selected { z-index: 1; color: #40B9F5; background-color: #FFFFFF; - border-bottom: white 1px solid; + border-bottom: $ui-background-blue 1px solid; } .tabs { diff --git a/src/components/icon-button/icon-button.jsx b/src/components/icon-button/icon-button.jsx index 50d5557e508110531cb045556bb7ff7323eb02fd..c6f9ae3d03ccf48df55b83c7c58295354d3427dd 100644 --- a/src/components/icon-button/icon-button.jsx +++ b/src/components/icon-button/icon-button.jsx @@ -11,6 +11,7 @@ const IconButton = ({ }) => ( <div className={classNames(styles.container, className)} + role="button" onClick={onClick} > <img diff --git a/src/components/language-selector/language-selector.css b/src/components/language-selector/language-selector.css index 5e1a41aee1da7877f00d45d6f31487f91fdaa78f..a060131a8fc2d2c8aa6afa58629622e3a141320f 100644 --- a/src/components/language-selector/language-selector.css +++ b/src/components/language-selector/language-selector.css @@ -22,3 +22,7 @@ color: #3373cc; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; } + +.language-select:focus { + border: 1px solid white; +} diff --git a/src/components/language-selector/language-selector.jsx b/src/components/language-selector/language-selector.jsx index 3be8abaece2178eb3a88cb8e6d8c5fcace0bba98..d3d3bb48daf7251528d48c30d014ebf8bb5e1a04 100644 --- a/src/components/language-selector/language-selector.jsx +++ b/src/components/language-selector/language-selector.jsx @@ -18,6 +18,7 @@ const LanguageSelector = ({ src={languageIcon} /> <select + aria-label="language selector" className={styles.languageSelect} value={currentLocale} onChange={onChange} diff --git a/src/components/library-item/library-item.jsx b/src/components/library-item/library-item.jsx index 0f1443e36363fbba8dbbc89c9474163ef64ac23c..04e5c08056b05d7247f34dde0d558ce9c99b2a9b 100644 --- a/src/components/library-item/library-item.jsx +++ b/src/components/library-item/library-item.jsx @@ -10,15 +10,30 @@ class LibraryItem extends React.PureComponent { constructor (props) { super(props); bindAll(this, [ + 'handleBlur', 'handleClick', + 'handleFocus', + 'handleKeyPress', 'handleMouseEnter', 'handleMouseLeave' ]); } + handleBlur () { + this.props.onBlur(this.props.id); + } + handleFocus () { + this.props.onFocus(this.props.id); + } handleClick (e) { this.props.onSelect(this.props.id); e.preventDefault(); } + handleKeyPress (e) { + if (e.key === ' ' || e.key === 'Enter') { + e.preventDefault(); + this.props.onSelect(this.props.id); + } + } handleMouseEnter () { this.props.onMouseEnter(this.props.id); } @@ -48,7 +63,12 @@ class LibraryItem extends React.PureComponent { ) : ( <Box className={styles.libraryItem} + role="button" + tabIndex="0" + onBlur={this.handleBlur} onClick={this.handleClick} + onFocus={this.handleFocus} + onKeyPress={this.handleKeyPress} onMouseEnter={this.handleMouseEnter} onMouseLeave={this.handleMouseLeave} > @@ -73,6 +93,8 @@ LibraryItem.propTypes = { iconURL: PropTypes.string.isRequired, id: PropTypes.number.isRequired, name: PropTypes.string.isRequired, + onBlur: PropTypes.func, + onFocus: PropTypes.func, onMouseEnter: PropTypes.func.isRequired, onMouseLeave: PropTypes.func.isRequired, onSelect: PropTypes.func.isRequired diff --git a/src/components/library/library.jsx b/src/components/library/library.jsx index 91ac1117b6606e4b900de26f433f5342f4ee634b..92066eca3d60e62e22d203bd2afb70fa2f3f4400 100644 --- a/src/components/library/library.jsx +++ b/src/components/library/library.jsx @@ -11,8 +11,10 @@ class LibraryComponent extends React.Component { constructor (props) { super(props); bindAll(this, [ + 'handleBlur', 'handleFilterChange', 'handleFilterClear', + 'handleFocus', 'handleMouseEnter', 'handleMouseLeave', 'handleSelect' @@ -22,6 +24,12 @@ class LibraryComponent extends React.Component { filterQuery: '' }; } + handleBlur (id) { + this.handleMouseLeave(id); + } + handleFocus (id) { + this.handleMouseEnter(id); + } handleSelect (id) { this.props.onRequestClose(); this.props.onItemSelected(this.getFilteredData()[id]); @@ -65,6 +73,8 @@ class LibraryComponent extends React.Component { id={index} key={`item_${index}`} name={dataItem.name} + onBlur={this.handleBlur} + onFocus={this.handleFocus} onMouseEnter={this.handleMouseEnter} onMouseLeave={this.handleMouseLeave} onSelect={this.handleSelect} diff --git a/src/components/menu-bar/menu-bar.jsx b/src/components/menu-bar/menu-bar.jsx index 661153f8dbcb47e6ca815c5026a24b2eb2f06dc7..448daa29dadd207151add5e7ddd3c53dc86a0098 100644 --- a/src/components/menu-bar/menu-bar.jsx +++ b/src/components/menu-bar/menu-bar.jsx @@ -18,6 +18,7 @@ const MenuBar = function MenuBar () { > <div className={classNames(styles.logoWrapper, styles.menuItem)}> <img + alt="Scratch" className={styles.scratchLogo} src={scratchLogo} /> diff --git a/src/components/monitor-list/monitor-list.jsx b/src/components/monitor-list/monitor-list.jsx index e28f8e09877006c5682f68a7727d454e82ae3d75..7d63a66d161ed653518b1b7cb2f889e1cbd2853d 100644 --- a/src/components/monitor-list/monitor-list.jsx +++ b/src/components/monitor-list/monitor-list.jsx @@ -11,13 +11,13 @@ const MonitorList = props => ( <Box className={styles.monitorList} > - {props.monitors.valueSeq().map((monitorData, index) => ( + {props.monitors.valueSeq().map(monitorData => ( <Monitor id={monitorData.id} - index={index} key={monitorData.id} opcode={monitorData.opcode} params={monitorData.params} + spriteName={monitorData.spriteName} value={monitorData.value} onDragEnd={props.onMonitorChange} /> diff --git a/src/components/monitor/monitor.jsx b/src/components/monitor/monitor.jsx index 5d03b1ee495b928e02b5f00bb812b97e1d398c44..35a2cac17429ff04052ceffbcfd8ea2d406b3aa2 100644 --- a/src/components/monitor/monitor.jsx +++ b/src/components/monitor/monitor.jsx @@ -16,13 +16,12 @@ const MonitorComponent = props => ( <Draggable bounds="parent" defaultClassNameDragging={styles.dragging} - defaultPosition={{ - x: props.x, - y: props.y - }} onStop={props.onDragEnd} > - <Box className={styles.monitor}> + <Box + className={styles.monitor} + componentRef={props.componentRef} + > <Box className={styles.label}> {props.label} </Box> @@ -40,17 +39,14 @@ MonitorComponent.categories = categories; MonitorComponent.propTypes = { category: PropTypes.oneOf(Object.keys(categories)), + componentRef: PropTypes.func.isRequired, label: PropTypes.string.isRequired, onDragEnd: PropTypes.func.isRequired, - value: PropTypes.string.isRequired, - x: PropTypes.number, - y: PropTypes.number + value: PropTypes.string.isRequired }; MonitorComponent.defaultProps = { - category: 'data', - x: 0, - y: 0 + category: 'data' }; export default MonitorComponent; diff --git a/src/components/question/question.css b/src/components/question/question.css new file mode 100644 index 0000000000000000000000000000000000000000..7c6e672a97fd1be774a187edfab3b8131fb6bcc0 --- /dev/null +++ b/src/components/question/question.css @@ -0,0 +1,57 @@ +@import "../../css/units.css"; +@import "../../css/colors.css"; + +.question-wrapper { + position: absolute; + bottom: 0; + left: 0; + width: 100%; +} + +.question-container { + margin: $space; + border: 1px solid $form-border; + border-radius: $space; + border-width: 2px; + padding: 1rem; + background: white; +} + +.question-label { + font-size: 0.75rem; + font-weight: bold; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + color: $text-primary; + padding-bottom: $space; +} + +.question-input { + display: flex; /* Keeps the input from going outside this container */ + position: relative; +} + +.question-submit-button { + position: absolute; + top: calc($space / 2); + right: calc($space / 2); + + width: calc(2rem - $space); + height: calc(2rem - $space); + + border: none; + border-radius: 100%; + + color: white; + background: $motion-primary; +} + +/* Input overrides: width, font-weight, focus outline and padding */ +.question-input > input { + width: 100%; + padding: 0 2rem 0 0.75rem; /* To make room for the submit button */ + font-weight: normal; +} + +.question-input > input:focus { + box-shadow: 0px 0px 0px 3px $motion-transparent; +} diff --git a/src/components/question/question.jsx b/src/components/question/question.jsx new file mode 100644 index 0000000000000000000000000000000000000000..11927bf9652cadd55eeee2654a1429c5250f30dc --- /dev/null +++ b/src/components/question/question.jsx @@ -0,0 +1,47 @@ +import PropTypes from 'prop-types'; +import React from 'react'; +import styles from './question.css'; +import Input from '../forms/input.jsx'; + +const QuestionComponent = props => { + const { + answer, + question, + onChange, + onClick, + onKeyPress + } = props; + return ( + <div className={styles.questionWrapper}> + <div className={styles.questionContainer}> + {question ? ( + <div className={styles.questionLabel}>{question}</div> + ) : null} + <div className={styles.questionInput}> + <Input + autoFocus + value={answer} + onChange={onChange} + onKeyPress={onKeyPress} + /> + <button + className={styles.questionSubmitButton} + onClick={onClick} + > + ✔︎ + </button> + </div> + </div> + </div> + ); +}; + +QuestionComponent.propTypes = { + answer: PropTypes.string, + onChange: PropTypes.func.isRequired, + onClick: PropTypes.func.isRequired, + onKeyPress: PropTypes.func.isRequired, + question: PropTypes.string +}; + +export default QuestionComponent; diff --git a/src/components/sprite-info/sprite-info.css b/src/components/sprite-info/sprite-info.css index 200aedaf79f13627abf74a4c9378ccb0f60eb300..3e680625adfbfba7e7f0a28d18bbbd23fb403222 100644 --- a/src/components/sprite-info/sprite-info.css +++ b/src/components/sprite-info/sprite-info.css @@ -62,6 +62,11 @@ border-bottom-left-radius: $form-radius; } +.radio-left:focus { + border-color: #4c97ff; + box-shadow: inset 0 0 0 -2px rgba(0, 0, 0, 0.1); +} + .radio-right { border-bottom: 1px solid $form-border; border-top: 1px solid $form-border; @@ -70,6 +75,11 @@ border-bottom-right-radius: $form-radius; } +.radio-right:focus { + border-color: #4c97ff; + box-shadow: inset 0 0 0 -2px rgba(0, 0, 0, 0.1); +} + .icon { width: 100%; height: 100%; @@ -83,3 +93,8 @@ user-select: none; outline: none; } + +.rotation-select:focus { + border-color: #4c97ff; + box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1); +} diff --git a/src/components/sprite-info/sprite-info.jsx b/src/components/sprite-info/sprite-info.jsx index f9bbb64e32748af1f955db724d8dc113caea8648..d67a8dc8e137f6b11e347d6cf24ff859ff2f24eb 100644 --- a/src/components/sprite-info/sprite-info.jsx +++ b/src/components/sprite-info/sprite-info.jsx @@ -42,7 +42,7 @@ class SpriteInfo extends React.Component { <BufferedInput disabled={this.props.disabled} placeholder="Name" - tabIndex="1" + tabIndex="0" type="text" value={this.props.disabled ? '' : this.props.name} onSubmit={this.props.onChangeName} @@ -54,6 +54,7 @@ class SpriteInfo extends React.Component { <MediaQuery minWidth={layout.fullSizeMinWidth}> <div className={styles.iconWrapper}> <img + aria-hidden="true" className={classNames(styles.xIcon, styles.icon)} src={xIcon} /> @@ -64,7 +65,7 @@ class SpriteInfo extends React.Component { small disabled={this.props.disabled} placeholder="x" - tabIndex="2" + tabIndex="0" type="text" value={this.props.disabled ? '' : this.props.x} onSubmit={this.props.onChangeX} @@ -76,6 +77,7 @@ class SpriteInfo extends React.Component { <MediaQuery minWidth={layout.fullSizeMinWidth}> <div className={styles.iconWrapper}> <img + aria-hidden="true" className={classNames(styles.yIcon, styles.icon)} src={yIcon} /> @@ -86,7 +88,7 @@ class SpriteInfo extends React.Component { small disabled={this.props.disabled} placeholder="y" - tabIndex="3" + tabIndex="0" type="text" value={this.props.disabled ? '' : this.props.y} onSubmit={this.props.onChangeY} @@ -114,8 +116,9 @@ class SpriteInfo extends React.Component { [styles.isDisabled]: this.props.disabled } )} - tabIndex="4" + tabIndex="0" onClick={this.props.onClickVisible} + onKeyPress={this.props.onPressVisible} > <img className={styles.icon} @@ -132,8 +135,9 @@ class SpriteInfo extends React.Component { [styles.isDisabled]: this.props.disabled } )} - tabIndex="4" + tabIndex="0" onClick={this.props.onClickNotVisible} + onKeyPress={this.props.onPressNotVisible} > <img className={styles.icon} @@ -151,7 +155,7 @@ class SpriteInfo extends React.Component { small disabled={this.props.disabled} label="Direction" - tabIndex="5" + tabIndex="0" type="text" value={this.props.disabled ? '' : this.props.direction} onSubmit={this.props.onChangeDirection} @@ -166,6 +170,7 @@ class SpriteInfo extends React.Component { <select className={classNames(styles.selectForm, styles.rotationSelect)} disabled={this.props.disabled} + tabIndex="0" value={this.props.rotationStyle} onChange={this.props.onChangeRotationStyle} > @@ -200,6 +205,8 @@ SpriteInfo.propTypes = { onChangeY: PropTypes.func, onClickNotVisible: PropTypes.func, onClickVisible: PropTypes.func, + onPressNotVisible: PropTypes.func, + onPressVisible: PropTypes.func, rotationStyle: PropTypes.oneOf(ROTATION_STYLES), visible: PropTypes.bool, x: PropTypes.oneOfType([ diff --git a/src/components/stage/stage.jsx b/src/components/stage/stage.jsx index 7a23c099d8768c970f8750f4055faeab165962ce..ae5ff92a6d2d014429dc5f7fdca12102fd20abf1 100644 --- a/src/components/stage/stage.jsx +++ b/src/components/stage/stage.jsx @@ -5,6 +5,7 @@ import classNames from 'classnames'; import Box from '../box/box.jsx'; import Loupe from '../loupe/loupe.jsx'; import MonitorList from '../../containers/monitor-list.jsx'; +import Question from '../../containers/question.jsx'; import styles from './stage.css'; const StageComponent = props => { @@ -15,6 +16,8 @@ const StageComponent = props => { colorInfo, onDeactivateColorPicker, isColorPicking, + question, + onQuestionAnswered, ...boxProps } = props; return ( @@ -40,6 +43,12 @@ const StageComponent = props => { <Loupe colorInfo={colorInfo} /> </Box> ) : null} + {question === null ? null : ( + <Question + question={question} + onQuestionAnswered={onQuestionAnswered} + /> + )} </Box> {isColorPicking ? ( <Box @@ -56,6 +65,8 @@ StageComponent.propTypes = { height: PropTypes.number, isColorPicking: PropTypes.bool, onDeactivateColorPicker: PropTypes.func, + onQuestionAnswered: PropTypes.func, + question: PropTypes.string, width: PropTypes.number }; StageComponent.defaultProps = { diff --git a/src/components/waveform/waveform.jsx b/src/components/waveform/waveform.jsx index 7b46760ac33130ff405e245085a24a7c464b4fb5..563aee33f1794a43bc60729d4d83f05197c628b7 100644 --- a/src/components/waveform/waveform.jsx +++ b/src/components/waveform/waveform.jsx @@ -33,7 +33,7 @@ const Waveform = props => { <g transform={`scale(1, -1) translate(0, -${height / 2})`}> <path className={styles.waveformPath} - d={`M0 0${pathComponents.join()}Z`} + d={`M0 0${pathComponents.join(' ')}Z`} strokeLinejoin={'round'} strokeWidth={2} /> diff --git a/src/containers/blocks.jsx b/src/containers/blocks.jsx index 471dc6cd08643341c290f66227b723ef28dbffb1..895c1af58c9f566ed7338a74d9b49deb2acffab1 100644 --- a/src/containers/blocks.jsx +++ b/src/containers/blocks.jsx @@ -9,11 +9,13 @@ import VM from 'scratch-vm'; import Prompt from './prompt.jsx'; import BlocksComponent from '../components/blocks/blocks.jsx'; import ExtensionLibrary from './extension-library.jsx'; +import CustomProcedures from './custom-procedures.jsx'; import {connect} from 'react-redux'; import {updateToolbox} from '../reducers/toolbox'; import {activateColorPicker} from '../reducers/color-picker'; import {closeExtensionLibrary} from '../reducers/modals'; +import {activateCustomProcedures, deactivateCustomProcedures} from '../reducers/custom-procedures'; const addFunctionListener = (object, property, callback) => { const oldFn = object[property]; @@ -35,6 +37,7 @@ class Blocks extends React.Component { 'handlePromptStart', 'handlePromptCallback', 'handlePromptClose', + 'handleCustomProceduresClose', 'onScriptGlowOn', 'onScriptGlowOff', 'onBlockGlowOn', @@ -55,6 +58,7 @@ class Blocks extends React.Component { } componentDidMount () { this.ScratchBlocks.FieldColourSlider.activateEyedropper_ = this.props.onActivateColorPicker; + this.ScratchBlocks.Procedures.externalProcedureDefCallback = this.props.onActivateCustomProcedures; const workspaceConfig = defaultsDeep({}, Blocks.defaultOptions, @@ -74,7 +78,8 @@ class Blocks extends React.Component { this.state.prompt !== nextState.prompt || this.props.isVisible !== nextProps.isVisible || this.props.toolboxXML !== nextProps.toolboxXML || - this.props.extensionLibraryVisible !== nextProps.extensionLibraryVisible + this.props.extensionLibraryVisible !== nextProps.extensionLibraryVisible || + this.props.customProceduresVisible !== nextProps.customProceduresVisible ); } componentDidUpdate (prevProps) { @@ -172,6 +177,14 @@ class Blocks extends React.Component { this.workspace.reportValue(data.id, data.value); } onWorkspaceUpdate (data) { + // When we change sprites, update the toolbox to have the new sprite's blocks + if (this.props.vm.editingTarget) { + const target = this.props.vm.editingTarget; + const dynamicBlocksXML = this.props.vm.runtime.getBlocksXML(); + const toolboxXML = makeToolboxXML(target.isStage, target.id, dynamicBlocksXML); + this.props.updateToolboxState(toolboxXML); + } + if (this.props.vm.editingTarget && !this.state.workspaceMetrics[this.props.vm.editingTarget.id]) { this.onWorkspaceMetricsChange(); } @@ -179,6 +192,8 @@ class Blocks extends React.Component { // Remove and reattach the workspace listener (but allow flyout events) this.workspace.removeChangeListener(this.props.vm.blockListener); const dom = this.ScratchBlocks.Xml.textToDom(data.xml); + // @todo This line rerenders toolbox, and the change in the toolbox XML also rerenders the toolbox. + // We should only rerender the toolbox once. See https://github.com/LLK/scratch-gui/issues/901 this.ScratchBlocks.Xml.clearWorkspaceAndLoadFromXml(dom, this.workspace); this.workspace.addChangeListener(this.props.vm.blockListener); @@ -193,8 +208,9 @@ class Blocks extends React.Component { handleExtensionAdded (blocksInfo) { this.ScratchBlocks.defineBlocksWithJsonArray(blocksInfo.map(blockInfo => blockInfo.json)); const dynamicBlocksXML = this.props.vm.runtime.getBlocksXML(); - const toolboxXML = makeToolboxXML(dynamicBlocksXML); - this.props.onExtensionAdded(toolboxXML); + const target = this.props.vm.editingTarget; + const toolboxXML = makeToolboxXML(target.isStage, target.id, dynamicBlocksXML); + this.props.updateToolboxState(toolboxXML); } handleCategorySelected (categoryName) { this.workspace.toolbox_.setSelectedCategoryByName(categoryName); @@ -212,16 +228,23 @@ class Blocks extends React.Component { handlePromptClose () { this.setState({prompt: null}); } + handleCustomProceduresClose (data) { + this.props.onRequestCloseCustomProcedures(data); + this.workspace.refreshToolboxSelection_(); + } render () { /* eslint-disable no-unused-vars */ const { + customProceduresVisible, extensionLibraryVisible, options, vm, isVisible, onActivateColorPicker, - onExtensionAdded, + updateToolboxState, + onActivateCustomProcedures, onRequestCloseExtensionLibrary, + onRequestCloseCustomProcedures, toolboxXML, ...props } = this.props; @@ -248,16 +271,26 @@ class Blocks extends React.Component { onRequestClose={onRequestCloseExtensionLibrary} /> ) : null} + {customProceduresVisible ? ( + <CustomProcedures + options={{ + media: options.media + }} + onRequestClose={this.handleCustomProceduresClose} + /> + ) : null} </div> ); } } Blocks.propTypes = { + customProceduresVisible: PropTypes.bool, extensionLibraryVisible: PropTypes.bool, isVisible: PropTypes.bool, onActivateColorPicker: PropTypes.func, - onExtensionAdded: PropTypes.func, + onActivateCustomProcedures: PropTypes.func, + onRequestCloseCustomProcedures: PropTypes.func, onRequestCloseExtensionLibrary: PropTypes.func, options: PropTypes.shape({ media: PropTypes.string, @@ -281,6 +314,7 @@ Blocks.propTypes = { comments: PropTypes.bool }), toolboxXML: PropTypes.string, + updateToolboxState: PropTypes.func, vm: PropTypes.instanceOf(VM).isRequired }; @@ -317,16 +351,21 @@ Blocks.defaultProps = { const mapStateToProps = state => ({ extensionLibraryVisible: state.modals.extensionLibrary, - toolboxXML: state.toolbox.toolboxXML + toolboxXML: state.toolbox.toolboxXML, + customProceduresVisible: state.customProcedures.active }); const mapDispatchToProps = dispatch => ({ onActivateColorPicker: callback => dispatch(activateColorPicker(callback)), - onExtensionAdded: toolboxXML => { - dispatch(updateToolbox(toolboxXML)); - }, + onActivateCustomProcedures: (data, callback) => dispatch(activateCustomProcedures(data, callback)), onRequestCloseExtensionLibrary: () => { dispatch(closeExtensionLibrary()); + }, + onRequestCloseCustomProcedures: data => { + dispatch(deactivateCustomProcedures(data)); + }, + updateToolboxState: toolboxXML => { + dispatch(updateToolbox(toolboxXML)); } }); diff --git a/src/containers/custom-procedures.jsx b/src/containers/custom-procedures.jsx new file mode 100644 index 0000000000000000000000000000000000000000..e442cabae23b6016cbb2ee8399740c639d332055 --- /dev/null +++ b/src/containers/custom-procedures.jsx @@ -0,0 +1,135 @@ +import bindAll from 'lodash.bindall'; +import defaultsDeep from 'lodash.defaultsdeep'; +import PropTypes from 'prop-types'; +import React from 'react'; +import CustomProceduresComponent from '../components/custom-procedures/custom-procedures.jsx'; +import ScratchBlocks from 'scratch-blocks'; +import {connect} from 'react-redux'; + +class CustomProcedures extends React.Component { + constructor (props) { + super(props); + bindAll(this, [ + 'handleAddLabel', + 'handleAddBoolean', + 'handleAddTextNumber', + 'handleCancel', + 'handleOk', + 'setBlocks' + ]); + } + componentWillUnmount () { + if (this.workspace) { + this.workspace.dispose(); + } + } + setBlocks (blocksRef) { + if (!blocksRef) return; + this.blocks = blocksRef; + const workspaceConfig = defaultsDeep({}, + CustomProcedures.defaultOptions, + this.props.options + ); + + // @todo This is a hack to make there be no toolbox. + const oldDefaultToolbox = ScratchBlocks.Blocks.defaultToolbox; + ScratchBlocks.Blocks.defaultToolbox = null; + this.workspace = ScratchBlocks.inject(this.blocks, workspaceConfig); + ScratchBlocks.Blocks.defaultToolbox = oldDefaultToolbox; + + // Create the procedure declaration block for editing the mutation. + this.mutationRoot = this.workspace.newBlock('procedures_declaration'); + // Make the declaration immovable, undeletable and have no context menu + this.mutationRoot.setMovable(false); + this.mutationRoot.setDeletable(false); + this.mutationRoot.contextMenu = false; + + this.workspace.addChangeListener(() => { + this.mutationRoot.onChangeFn(); + // Keep the block centered on the workspace + const metrics = this.workspace.getMetrics(); + const {x, y} = this.mutationRoot.getRelativeToSurfaceXY(); + const dy = (metrics.viewHeight / 2) - (this.mutationRoot.height / 2) - y; + let dx = (metrics.viewWidth / 2) - (this.mutationRoot.width / 2) - x; + // If the procedure declaration is wider than the view width, + // keep the right-hand side of the procedure in view. + if (this.mutationRoot.width > metrics.viewWidth) { + dx = metrics.viewWidth - this.mutationRoot.width - x; + } + this.mutationRoot.moveBy(dx, dy); + }); + this.mutationRoot.domToMutation(this.props.mutator); + this.mutationRoot.initSvg(); + this.mutationRoot.render(); + } + handleCancel () { + this.props.onRequestClose(); + } + handleOk () { + const newMutation = this.mutationRoot ? this.mutationRoot.mutationToDom() : null; + this.props.onRequestClose(newMutation); + } + handleAddLabel () { + if (this.mutationRoot) { + this.mutationRoot.addLabelExternal(); + } + } + handleAddBoolean () { + if (this.mutationRoot) { + this.mutationRoot.addBooleanExternal(); + } + } + handleAddTextNumber () { + if (this.mutationRoot) { + this.mutationRoot.addStringNumberExternal(); + } + } + render () { + return ( + <CustomProceduresComponent + componentRef={this.setBlocks} + onAddBoolean={this.handleAddBoolean} + onAddLabel={this.handleAddLabel} + onAddTextNumber={this.handleAddTextNumber} + onCancel={this.handleCancel} + onOk={this.handleOk} + /> + ); + } +} + +CustomProcedures.propTypes = { + mutator: PropTypes.instanceOf(Element), + onRequestClose: PropTypes.func.isRequired, + options: PropTypes.shape({ + media: PropTypes.string, + zoom: PropTypes.shape({ + controls: PropTypes.bool, + wheel: PropTypes.bool, + startScale: PropTypes.number + }), + comments: PropTypes.bool + }) +}; + +CustomProcedures.defaultOptions = { + zoom: { + controls: false, + wheel: false, + startScale: 0.9 + }, + comments: false, + scrollbars: true +}; + +CustomProcedures.defaultProps = { + options: CustomProcedures.defaultOptions +}; + +const mapStateToProps = state => ({ + mutator: state.customProcedures.mutator +}); + +export default connect( + mapStateToProps +)(CustomProcedures); diff --git a/src/containers/monitor-list.jsx b/src/containers/monitor-list.jsx index d8becdc668f2110388071ee230e83325715cba7c..85a3b20e3ec840808e27b99f7c81b6a338022cf4 100644 --- a/src/containers/monitor-list.jsx +++ b/src/containers/monitor-list.jsx @@ -1,7 +1,9 @@ import bindAll from 'lodash.bindall'; import React from 'react'; +import PropTypes from 'prop-types'; import {connect} from 'react-redux'; +import {moveMonitorRect} from '../reducers/monitor-layout'; import MonitorListComponent from '../components/monitor-list/monitor-list.jsx'; @@ -13,7 +15,7 @@ class MonitorList extends React.Component { ]); } handleMonitorChange (id, x, y) { // eslint-disable-line no-unused-vars - // @todo send this event to the VM + this.props.moveMonitorRect(id, x, y); } render () { return ( @@ -25,10 +27,15 @@ class MonitorList extends React.Component { } } +MonitorList.propTypes = { + moveMonitorRect: PropTypes.func.isRequired +}; const mapStateToProps = state => ({ monitors: state.monitors }); -const mapDispatchToProps = () => ({}); +const mapDispatchToProps = dispatch => ({ + moveMonitorRect: (id, x, y) => dispatch(moveMonitorRect(id, x, y)) +}); export default connect( mapStateToProps, diff --git a/src/containers/monitor.jsx b/src/containers/monitor.jsx index cbacffe7dc4d041796cca59dcf535ad23cecb25f..8f454a0e87e39c9aa1858682d9cc8571051957b0 100644 --- a/src/containers/monitor.jsx +++ b/src/containers/monitor.jsx @@ -4,25 +4,69 @@ import PropTypes from 'prop-types'; import monitorAdapter from '../lib/monitor-adapter.js'; import MonitorComponent from '../components/monitor/monitor.jsx'; +import {addMonitorRect, getInitialPosition, resizeMonitorRect, removeMonitorRect} from '../reducers/monitor-layout'; + +import {connect} from 'react-redux'; class Monitor extends React.Component { constructor (props) { super(props); bindAll(this, [ - 'handleDragEnd' + 'handleDragEnd', + 'setElement' ]); } + componentDidMount () { + let rect; + // Load the VM provided position if not loaded already + if (this.props.x && this.props.y && !this.props.monitorLayout.savedMonitorPositions[this.props.id]) { + rect = { + upperStart: {x: this.props.x, y: this.props.y}, + lowerEnd: {x: this.props.x + this.element.offsetWidth, y: this.props.y + this.element.offsetHeight} + }; + this.props.addMonitorRect(this.props.id, rect, true /* savePosition */); + } else { // Newly created user monitor + rect = getInitialPosition( + this.props.monitorLayout, this.props.id, this.element.offsetWidth, this.element.offsetHeight); + this.props.addMonitorRect(this.props.id, rect); + } + this.element.style.top = `${rect.upperStart.y}px`; + this.element.style.left = `${rect.upperStart.x}px`; + } + shouldComponentUpdate (nextProps, nextState) { + if (nextState !== this.state) { + return true; + } + for (const key of Object.getOwnPropertyNames(nextProps)) { + // Don't need to rerender when other monitors are moved. + // monitorLayout is only used during initial layout. + if (key !== 'monitorLayout' && nextProps[key] !== this.props[key]) { + return true; + } + } + return false; + } + componentDidUpdate () { + this.props.resizeMonitorRect(this.props.id, this.element.offsetWidth, this.element.offsetHeight); + } + componentWillUnmount () { + this.props.removeMonitorRect(this.props.id); + } handleDragEnd (e, {x, y}) { this.props.onDragEnd( this.props.id, - x, - y + parseInt(this.element.style.left, 10) + x, + parseInt(this.element.style.top, 10) + y ); } + setElement (monitorElt) { + this.element = monitorElt; + } render () { const monitorProps = monitorAdapter(this.props); return ( <MonitorComponent + componentRef={this.setElement} {...monitorProps} onDragEnd={this.handleDragEnd} /> @@ -31,12 +75,32 @@ class Monitor extends React.Component { } Monitor.propTypes = { + addMonitorRect: PropTypes.func.isRequired, id: PropTypes.string.isRequired, - index: PropTypes.number.isRequired, // eslint-disable-line react/no-unused-prop-types + monitorLayout: PropTypes.shape({ + monitors: PropTypes.object, + savedMonitorPositions: PropTypes.object + }).isRequired, onDragEnd: PropTypes.func.isRequired, opcode: PropTypes.string.isRequired, // eslint-disable-line react/no-unused-prop-types params: PropTypes.object, // eslint-disable-line react/no-unused-prop-types, react/forbid-prop-types - value: PropTypes.string.isRequired // eslint-disable-line react/no-unused-prop-types + removeMonitorRect: PropTypes.func.isRequired, + resizeMonitorRect: PropTypes.func.isRequired, + spriteName: PropTypes.string, // eslint-disable-line react/no-unused-prop-types + value: PropTypes.string.isRequired, // eslint-disable-line react/no-unused-prop-types + x: PropTypes.number, + y: PropTypes.number }; - -export default Monitor; +const mapStateToProps = state => ({ + monitorLayout: state.monitorLayout +}); +const mapDispatchToProps = dispatch => ({ + addMonitorRect: (id, rect, savePosition) => + dispatch(addMonitorRect(id, rect.upperStart, rect.lowerEnd, savePosition)), + resizeMonitorRect: (id, newWidth, newHeight) => dispatch(resizeMonitorRect(id, newWidth, newHeight)), + removeMonitorRect: id => dispatch(removeMonitorRect(id)) +}); +export default connect( + mapStateToProps, + mapDispatchToProps +)(Monitor); diff --git a/src/containers/question.jsx b/src/containers/question.jsx new file mode 100644 index 0000000000000000000000000000000000000000..fdc67dac06d0a86541fdafb6b1e2bdedb21b412e --- /dev/null +++ b/src/containers/question.jsx @@ -0,0 +1,45 @@ +import PropTypes from 'prop-types'; +import React from 'react'; +import bindAll from 'lodash.bindall'; +import QuestionComponent from '../components/question/question.jsx'; + +class Question extends React.Component { + constructor (props) { + super(props); + bindAll(this, [ + 'handleChange', + 'handleKeyPress', + 'handleSubmit' + ]); + this.state = { + answer: '' + }; + } + handleChange (e) { + this.setState({answer: e.target.value}); + } + handleKeyPress (event) { + if (event.key === 'Enter') this.handleSubmit(); + } + handleSubmit () { + this.props.onQuestionAnswered(this.state.answer); + } + render () { + return ( + <QuestionComponent + answer={this.state.answer} + question={this.props.question} + onChange={this.handleChange} + onClick={this.handleSubmit} + onKeyPress={this.handleKeyPress} + /> + ); + } +} + +Question.propTypes = { + onQuestionAnswered: PropTypes.func.isRequired, + question: PropTypes.string +}; + +export default Question; diff --git a/src/containers/sound-editor.jsx b/src/containers/sound-editor.jsx index 4a1b98b565bd587bcae5e6e2414f4ee3e763c5cd..155449ce48b96852097e086f028cd8777615815f 100644 --- a/src/containers/sound-editor.jsx +++ b/src/containers/sound-editor.jsx @@ -124,6 +124,7 @@ class SoundEditor extends React.Component { const samples = this.undoStack.pop(); if (samples) { this.submitNewSamples(samples, this.props.sampleRate, true); + this.handlePlay(); } } handleRedo () { @@ -131,6 +132,7 @@ class SoundEditor extends React.Component { if (samples) { this.undoStack.push(this.props.samples.slice(0)); this.submitNewSamples(samples, this.props.sampleRate, true); + this.handlePlay(); } } render () { diff --git a/src/containers/sound-tab.jsx b/src/containers/sound-tab.jsx index 1984923d541427b16a82980d1c6bc627f4541413..d61bea13147db30196964f33b1066df3e7ac39cf 100644 --- a/src/containers/sound-tab.jsx +++ b/src/containers/sound-tab.jsx @@ -52,20 +52,18 @@ class SoundTab extends React.Component { render () { const { - editingTarget, - sprites, - stage, + vm, onNewSoundFromLibraryClick, onNewSoundFromRecordingClick } = this.props; - const target = editingTarget && sprites[editingTarget] ? sprites[editingTarget] : stage; - - if (!target) { + if (!vm.editingTarget) { return null; } - const sounds = target.sounds ? target.sounds.map(sound => ( + const sprite = vm.editingTarget.sprite; + + const sounds = sprite.sounds ? sprite.sounds.map(sound => ( { url: soundIcon, name: sound.name @@ -106,7 +104,7 @@ class SoundTab extends React.Component { onDeleteClick={this.handleDeleteSound} onItemClick={this.handleSelectSound} > - {editingTarget && target.sounds && target.sounds.length > 0 ? ( + {sprite.sounds && sprite.sounds[this.state.selectedSoundIndex] ? ( <SoundEditor soundIndex={this.state.selectedSoundIndex} /> ) : null} {this.props.soundRecorderVisible ? ( diff --git a/src/containers/sprite-info.jsx b/src/containers/sprite-info.jsx index 532fb37e5fdb8c9af94602ef825257b7bb1d64a9..f4b5ca696d2118898bdbd73c87b30173f8acf52d 100644 --- a/src/containers/sprite-info.jsx +++ b/src/containers/sprite-info.jsx @@ -10,7 +10,9 @@ class SpriteInfo extends React.Component { bindAll(this, [ 'handleChangeRotationStyle', 'handleClickVisible', - 'handleClickNotVisible' + 'handleClickNotVisible', + 'handlePressVisible', + 'handlePressNotVisible' ]); } handleChangeRotationStyle (e) { @@ -24,6 +26,18 @@ class SpriteInfo extends React.Component { e.preventDefault(); this.props.onChangeVisibility(false); } + handlePressVisible (e) { + if (e.key === ' ' || e.key === 'Enter') { + e.preventDefault(); + this.props.onChangeVisibility(true); + } + } + handlePressNotVisible (e) { + if (e.key === ' ' || e.key === 'Enter') { + e.preventDefault(); + this.props.onChangeVisibility(false); + } + } render () { return ( <SpriteInfoComponent @@ -31,6 +45,8 @@ class SpriteInfo extends React.Component { onChangeRotationStyle={this.handleChangeRotationStyle} onClickNotVisible={this.handleClickNotVisible} onClickVisible={this.handleClickVisible} + onPressNotVisible={this.handlePressNotVisible} + onPressVisible={this.handlePressVisible} /> ); } diff --git a/src/containers/stage.jsx b/src/containers/stage.jsx index 1de93d23d36bbc49ad6a3930c3520a6041af96d3..fcff811bffef4092b0c912a240dd95466f11272b 100644 --- a/src/containers/stage.jsx +++ b/src/containers/stage.jsx @@ -24,12 +24,14 @@ class Stage extends React.Component { 'cancelMouseDownTimeout', 'detachMouseEvents', 'handleDoubleClick', + 'handleQuestionAnswered', 'onMouseUp', 'onMouseMove', 'onMouseDown', 'onStartDrag', 'onStopDrag', 'updateRect', + 'questionListener', 'setCanvas' ]); this.state = { @@ -38,7 +40,8 @@ class Stage extends React.Component { isDragging: false, dragOffset: null, dragId: null, - colorInfo: null + colorInfo: null, + question: null }; } componentDidMount () { @@ -47,12 +50,14 @@ class Stage extends React.Component { this.updateRect(); this.renderer = new Renderer(this.canvas); this.props.vm.attachRenderer(this.renderer); + this.props.vm.runtime.addListener('QUESTION', this.questionListener); } shouldComponentUpdate (nextProps, nextState) { return this.props.width !== nextProps.width || this.props.height !== nextProps.height || this.props.isColorPicking !== nextProps.isColorPicking || - this.state.colorInfo !== nextState.colorInfo; + this.state.colorInfo !== nextState.colorInfo || + this.state.question !== nextState.question; } componentDidUpdate (prevProps) { if (this.props.isColorPicking && !prevProps.isColorPicking) { @@ -66,6 +71,14 @@ class Stage extends React.Component { this.detachRectEvents(); this.stopColorPickingLoop(); } + questionListener (question) { + this.setState({question: question}); + } + handleQuestionAnswered (answer) { + this.setState({question: null}, () => { + this.props.vm.runtime.emit('ANSWER', answer); + }); + } startColorPickingLoop () { this.intervalId = setInterval(() => { this.setState({colorInfo: this.getColorInfo(this.pickX, this.pickY)}); @@ -251,7 +264,9 @@ class Stage extends React.Component { <StageComponent canvasRef={this.setCanvas} colorInfo={this.state.colorInfo} + question={this.state.question} onDoubleClick={this.handleDoubleClick} + onQuestionAnswered={this.handleQuestionAnswered} {...props} /> ); diff --git a/src/css/units.css b/src/css/units.css index 3de6174a2fe38b65148f7d99a5e459950e37160a..3e7f73f36d327fa55f464c4b49577661f58b4799 100644 --- a/src/css/units.css +++ b/src/css/units.css @@ -9,3 +9,7 @@ $stage-menu-height: 2.75rem; $library-header-height: 4.375rem; $form-radius: calc($space / 2); + +/* layout contants from `layout-constants.js` */ +$full-size: 1095px; +$full-size-paint: 1249px; diff --git a/src/index.ejs b/src/index.ejs index e4bf0cc7e51b9e78a7a4777bcba5fbc79ae5a8db..5293fa7076bdd5b9a50345229f1b475cef821a91 100644 --- a/src/index.ejs +++ b/src/index.ejs @@ -3,7 +3,16 @@ <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> + <link rel="shortcut icon" href="static/favicon.ico"> <title><%= htmlWebpackPlugin.options.title %></title> + + <!-- Sentry error logging to help with finding bugs --> + <script src="https://cdn.ravenjs.com/3.20.1/raven.min.js" crossorigin="anonymous"></script> + <script> + Raven.config('https://dcc4ed76876b411c99997f4ad5ab78a5@sentry.io/253297').install(); + </script> + <!-- /Sentry --> + </head> <body> </body> diff --git a/src/index.jsx b/src/index.jsx index 6d301f5168501f6b20252a6d0e034f509c5eea77..e6f35044060725497597a3de5e125d89fe18693d 100644 --- a/src/index.jsx +++ b/src/index.jsx @@ -1,5 +1,6 @@ import React from 'react'; import ReactDOM from 'react-dom'; +import Modal from 'react-modal'; import AppStateHOC from './lib/app-state-hoc.jsx'; import GUI from './containers/gui.jsx'; @@ -7,10 +8,17 @@ import ProjectLoaderHOC from './lib/project-loader-hoc.jsx'; import styles from './index.css'; +if (process.env.NODE_ENV === 'production' && typeof window === 'object') { + // Warn before navigating away + window.onbeforeunload = () => true; +} + const App = AppStateHOC(ProjectLoaderHOC(GUI)); const appTarget = document.createElement('div'); appTarget.className = styles.app; document.body.appendChild(appTarget); +Modal.setAppElement(appTarget); + ReactDOM.render(<App />, appTarget); diff --git a/src/lib/blocks.js b/src/lib/blocks.js index 2e531cc01c479eda53913d90695b9a2820cafd97..524baef8b1ff1c6af08c26e28945813176b6600a 100644 --- a/src/lib/blocks.js +++ b/src/lib/blocks.js @@ -65,6 +65,17 @@ export default function (vm) { return sprites; }; + const cloneMenu = function () { + if (vm.editingTarget && vm.editingTarget.isStage) { + const menu = spriteMenu(); + if (menu.length === 0) { + return [['', '']]; // Empty menu matches Scratch 2 behavior + } + return menu; + } + return [['myself', '_myself_']].concat(spriteMenu()); + }; + const soundColors = ScratchBlocks.Colours.sounds; const looksColors = ScratchBlocks.Colours.looks; @@ -99,16 +110,16 @@ export default function (vm) { ScratchBlocks.Blocks.motion_goto_menu.init = function () { const json = jsonForMenuBlock('TO', spriteMenu, motionColors, [ - ['mouse-pointer', '_mouse_'], - ['random position', '_random_'] + ['random position', '_random_'], + ['mouse-pointer', '_mouse_'] ]); this.jsonInit(json); }; ScratchBlocks.Blocks.motion_glideto_menu.init = function () { const json = jsonForMenuBlock('TO', spriteMenu, motionColors, [ - ['mouse-pointer', '_mouse_'], - ['random position', '_random_'] + ['random position', '_random_'], + ['mouse-pointer', '_mouse_'] ]); this.jsonInit(json); }; @@ -143,9 +154,7 @@ export default function (vm) { }; ScratchBlocks.Blocks.control_create_clone_of_menu.init = function () { - const json = jsonForMenuBlock('CLONE_OPTION', spriteMenu, controlColors, [ - ['myself', '_myself_'] - ]); + const json = jsonForMenuBlock('CLONE_OPTION', cloneMenu, controlColors, []); this.jsonInit(json); }; diff --git a/src/lib/layout-constants.js b/src/lib/layout-constants.js index 672c8013f58d477ae767a159a3d2af28784d7139..67c2ae44cc0ecc3c8b979626d4ba51e85a176b63 100644 --- a/src/lib/layout-constants.js +++ b/src/lib/layout-constants.js @@ -3,5 +3,6 @@ export default { fullStageHeight: 360, smallerStageWidth: 480 * 0.85, smallerStageHeight: 360 * 0.85, - fullSizeMinWidth: 1096 + fullSizeMinWidth: 1096, + fullSizePaintMinWidth: 1250 }; diff --git a/src/lib/libraries/backdrops.json b/src/lib/libraries/backdrops.json index 156a3627c6ebd1bd6a6d87d140b0814e9b04ca75..59eb62c12db0c112f0dcbf97cbba2b3962abb254 100644 --- a/src/lib/libraries/backdrops.json +++ b/src/lib/libraries/backdrops.json @@ -1,910 +1,9 @@ [ { - "name": "atom playground", - "md5": "dd85f581a3ba8d590543bd6e87d6fd14.jpg", + "name": "Blue Sky", + "md5": "e7c147730f19d284bcd7b3f00af19bb6.svg", "type": "backdrop", - "tags": [ - "outdoors", - "city", - "sports" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "baseball-field", - "md5": "6b3d87ba2a7f89be703163b6c1d4c964.png", - "type": "backdrop", - "tags": [ - "sports" - ], - "info": [ - 960, - 720, - 2 - ] - }, - { - "name": "basketball-court1-a", - "md5": "c3464cbe80c4d3adb225383d9e84b5d4.png", - "type": "backdrop", - "tags": [ - "outdoors", - "city", - "sports" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "basketball-court1-b", - "md5": "2dbde2ae53f2744b87be09581281610f.png", - "type": "backdrop", - "tags": [ - "outdoors", - "city", - "sports" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "beach malibu", - "md5": "fd66e7be2200f27f6475b8673c8214ab.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "nature", - "underwater", - "sports" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "beach rio", - "md5": "968f0ede6e70e1dbb763d6fd4c5003e0.png", - "type": "backdrop", - "tags": [ - "outdoors", - "nature", - "sports" - ], - "info": [ - 960, - 720 - ] - }, - { - "name": "bedroom1", - "md5": "4230e474051a8ec30fa766871489e330.gif", - "type": "backdrop", - "tags": [ - "indoors" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "bedroom2", - "md5": "181916364097d7e7e24a761534a64a48.gif", - "type": "backdrop", - "tags": [ - "indoors" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "bench with view", - "md5": "38fd6334f8cfdbc80619adcb006a2da5.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "city", - "flying" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "berkeley mural", - "md5": "e79adb9aba060af11c37b4781f91feb9.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "city", - "music-and-dance" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "blue sky", - "md5": "32c395c60534db0e100c962cdbb1d7a7.svg", - "type": "backdrop", - "tags": [ - "flying", - "outdoors", - "nature" - ], - "info": [ - 492, - 367 - ] - }, - { - "name": "blue sky2", - "md5": "d4db494dcf0e5ddbac875a437c2f166a.svg", - "type": "backdrop", - "tags": [ - "flying", - "outdoors", - "nature", - "other" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "blue sky3", - "md5": "5a0159578408d7da9bac6d2379cabfe1.svg", - "type": "backdrop", - "tags": [ - "flying", - "outdoors", - "nature", - "other" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "boardwalk", - "md5": "acbae935194a383f9200b99bbc0697bf.jpg", - "type": "backdrop", - "tags": [ - "music-and-dance", - "outdoors", - "flying" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "brick wall and stairs", - "md5": "31b49fc0b7593aadb804a0bd5c069fc5.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "city" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "brick wall1", - "md5": "4f234884958b11023d44abc010ad50ec.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "city", - "sports", - "music-and-dance" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "brick wall2", - "md5": "900041259dd4cf03d5d1e15e928b5dbf.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "city", - "sports" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "building at mit", - "md5": "fe5e3566965f9de793beeffce377d054.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "city", - "sports" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "canyon", - "md5": "e9d5577287db24f92b6447c7fbd8fcc0.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "nature", - "flying" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "castle1", - "md5": "033f926829a446a28970f59302b0572d.png", - "type": "backdrop", - "tags": [ - "outdoors", - "castle" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "castle2", - "md5": "e70cff23d246dff3174903b42353848c.png", - "type": "backdrop", - "tags": [ - "outdoors", - "castle" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "castle3", - "md5": "e2730c93885bf3f61b0d8cd79050f556.png", - "type": "backdrop", - "tags": [ - "outdoors", - "castle" - ], - "info": [ - 480, - 359, - 1 - ] - }, - { - "name": "castle4", - "md5": "392fd702b7ad08c467fa96dfc732feb3.png", - "type": "backdrop", - "tags": [ - "indoors", - "castle" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "castle5", - "md5": "a4d3b1643090c8d28e85b8a3bb3f344c.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "castle" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "chalkboard", - "md5": "56db999ade99274a76ae7717eb256e06.jpg", - "type": "backdrop", - "tags": [ - "indoors" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "circles", - "md5": "4e29033ec2b891a8f1ca21242811d403.svg", - "type": "backdrop", - "tags": [ - "other" - ], - "info": [ - 480, - 364, - 1 - ] - }, - { - "name": "city with water", - "md5": "a1b28b2a48a3609b5b0562a53bc797bd.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "city", - "flying" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "city with water2", - "md5": "35a49599b015bdb0d77e389471b1146a.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "city", - "flying" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "clothing store", - "md5": "0ad4262c47875748b626dc41aad4c10b.jpg", - "type": "backdrop", - "tags": [ - "indoors", - "city" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "desert", - "md5": "5e012b80c8c2c99be0bff0e24e9d6342.gif", - "type": "backdrop", - "tags": [ - "outdoors", - "nature", - "flying" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "doily", - "md5": "074ee3f137e955fbf169bcf3cfbd8a8f.svg", - "type": "backdrop", - "tags": [ - "holiday", - "other" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "driveway", - "md5": "16c84de201792c1ce1954686ceb8f4eb.jpg", - "type": "backdrop", - "tags": [ - "outdoors" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "flower bed", - "md5": "4b6314596a007a6a9ddb0430458c5133.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "nature" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "flowers", - "md5": "63499cf8a5dc32a78ed8ba6b114f0a4b.gif", - "type": "backdrop", - "tags": [ - "outdoors", - "nature" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "forest", - "md5": "2c6429f7d3be6415851ff9915cc0e7b7.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "nature" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "garden rock", - "md5": "7a70c9cd40754733cde1db6cf83eef49.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "nature" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "gingerbread", - "md5": "a4fa918fb6ac923835dc1b4f3cce317c.png", - "type": "backdrop", - "tags": [ - "holiday" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "goal1", - "md5": "7aad07c010c0df9f2682701463d98c37.png", - "type": "backdrop", - "tags": [ - "outdoors", - "sports" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "goal2", - "md5": "ddd4f56b8de53c46638089726fdd354c.png", - "type": "backdrop", - "tags": [ - "outdoors", - "sports" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "graffiti", - "md5": "ff2749b1ac5d35011576dabfee7cb7fa.jpg", - "type": "backdrop", - "tags": [ - "music-and-dance", - "outdoors", - "city" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "grand canyon", - "md5": "9792b60aeb8005f2191d6c84abfdc61b.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "nature", - "flying" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "gravel desert", - "md5": "245a2c52dbbedeea390c3e22d49430c0.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "nature", - "flying" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "greek theater", - "md5": "34d1a90d0075b4c057c8bce42a7c2463.png", - "type": "backdrop", - "tags": [ - "outdoors", - "music-and-dance" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "hall", - "md5": "5da017ab11b920a262f2553a4186e23e.jpg", - "type": "backdrop", - "tags": [ - "indoors" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "hallway outdoors", - "md5": "9e7c48d569daeb76d976f7a674198528.jpg", - "type": "backdrop", - "tags": [ - "outdoors" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "hay field", - "md5": "d1b761a18f525a2a20caa2a5da12bbf1.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "nature", - "flying" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "hearts1", - "md5": "4bfd6a761ff985e342acbf2e07f63526.svg", - "type": "backdrop", - "tags": [ - "holiday", - "other" - ], - "info": [ - 480, - 362, - 1 - ] - }, - { - "name": "hearts2", - "md5": "b6602e32d55ed75eaea1b646f61b6c17.svg", - "type": "backdrop", - "tags": [ - "holiday", - "other" - ], - "info": [ - 480, - 362, - 1 - ] - }, - { - "name": "hill", - "md5": "857b121a567626fe88159215c5373742.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "nature", - "flying" - ], - "info": [ - 480, - 362, - 1 - ] - }, - { - "name": "houses", - "md5": "7d5dda5b40d6d8217f3b3cd9d71755b1.jpg", - "type": "backdrop", - "tags": [ - "outdoors" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "kitchen", - "md5": "586e4724e1af9fddec64f83d90997c4a.jpg", - "type": "backdrop", - "tags": [ - "indoors" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "lake", - "md5": "07338ae08528c6d7ca542f9da016c025.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "nature" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "light", - "md5": "4b98c07876ed8997c3762e75790507b4.svg", - "type": "backdrop", - "tags": [ - "holiday", - "other" - ], - "info": [ - 494, - 372, - 1 - ] - }, - { - "name": "metro1", - "md5": "a532a0529ba13c17e3c8fd32d25693ae.png", - "type": "backdrop", - "tags": [ - "outdoors", - "city" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "moon", - "md5": "98758dc52f937a33a565c933f8eb9358.jpg", - "type": "backdrop", - "tags": [ - "other", - "space" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "neon tunnel", - "md5": "7f7b9943a3824c6bd2576f8768f286b1.svg", - "type": "backdrop", - "tags": [ - "space", - "sports", - "other" - ], - "info": [ - 495, - 376, - 1 - ] - }, - { - "name": "night city with street", - "md5": "03a38fe7e5ce233f145e3a5b6b96b4bf.gif", - "type": "backdrop", - "tags": [ - "outdoors", - "city" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "night city", - "md5": "761f9ed01b0f96650fcc77b4c6cc8219.gif", - "type": "backdrop", - "tags": [ - "outdoors", - "city" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "parking-ramp", - "md5": "9f523828fb41da9a040623e25a7df6ea.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "city" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "party", - "md5": "108160d0e44d1c340182e31c9dc0758a.svg", - "type": "backdrop", - "tags": [ - "indoors", - "holiday", - "music-and-dance" - ], - "info": [ - 503, - 380, - 1 - ] - }, - { - "name": "party room", - "md5": "30e8c3fd0be6f40b37785d83b8153b21.jpg", - "type": "backdrop", - "tags": [ - "indoors", - "music-and-dance" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "pathway", - "md5": "a944ac0c1fc3e3b8feef0ddf691de726.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "nature" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "playing-field", - "md5": "2de108f3098e92f5c5976cf75d38e99d.png", - "type": "backdrop", - "tags": [ - "outdoors", - "sports" - ], - "info": [ - 960, - 720, - 2 - ] - }, - { - "name": "pool", - "md5": "6d92c738150a821531061bcc9743c44c.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "sports" - ], + "tags": [], "info": [ 480, 360, @@ -912,13 +11,10 @@ ] }, { - "name": "purple", - "md5": "b16a7870ab4287f0f46816b3c5061c9f.svg", + "name": "Blue Sky 2", + "md5": "ba427e8c539997f6b7a598f2a78306ca.svg", "type": "backdrop", - "tags": [ - "flying", - "other" - ], + "tags": [], "info": [ 480, 360, @@ -926,12 +22,10 @@ ] }, { - "name": "rays", - "md5": "87e963282db9e020e8c4d075891ea12b.svg", + "name": "Blue Sky3", + "md5": "5a0159578408d7da9bac6d2379cabfe1.svg", "type": "backdrop", - "tags": [ - "other" - ], + "tags": [], "info": [ 480, 360, @@ -939,12 +33,10 @@ ] }, { - "name": "room1", - "md5": "c283de2416525f69cd8655053022d34a.jpg", + "name": "Circles", + "md5": "4e29033ec2b891a8f1ca21242811d403.svg", "type": "backdrop", - "tags": [ - "indoors" - ], + "tags": [], "info": [ 480, 360, @@ -952,12 +44,10 @@ ] }, { - "name": "room2", - "md5": "7c1afda6967294c8256b389516c83dfc.jpg", + "name": "Hearts1", + "md5": "4bfd6a761ff985e342acbf2e07f63526.svg", "type": "backdrop", - "tags": [ - "indoors" - ], + "tags": [], "info": [ 480, 360, @@ -965,12 +55,10 @@ ] }, { - "name": "room3", - "md5": "61e3239fe9e0600cf11218b89f94a051.jpg", + "name": "Hearts2", + "md5": "b6602e32d55ed75eaea1b646f61b6c17.svg", "type": "backdrop", - "tags": [ - "indoors" - ], + "tags": [], "info": [ 480, 360, @@ -978,12 +66,10 @@ ] }, { - "name": "route66", - "md5": "943ed51116fbbf4d4cd18a5f08274a18.jpg", + "name": "Light", + "md5": "4b98c07876ed8997c3762e75790507b4.svg", "type": "backdrop", - "tags": [ - "outdoors" - ], + "tags": [], "info": [ 480, 360, @@ -991,13 +77,10 @@ ] }, { - "name": "school1", - "md5": "52d676e1f3e1cd8995e7040af39b9667.gif", + "name": "Party", + "md5": "108160d0e44d1c340182e31c9dc0758a.svg", "type": "backdrop", - "tags": [ - "outdoors", - "city" - ], + "tags": [], "info": [ 480, 360, @@ -1005,13 +88,10 @@ ] }, { - "name": "school2", - "md5": "85fda24ae18655fed894f2017914dca2.jpg", + "name": "Purple", + "md5": "b16a7870ab4287f0f46816b3c5061c9f.svg", "type": "backdrop", - "tags": [ - "outdoors", - "city" - ], + "tags": [], "info": [ 480, 360, @@ -1019,14 +99,10 @@ ] }, { - "name": "slopes", - "md5": "a22b84c4cfd6b108eebf69398473c9cb.svg", + "name": "Rays", + "md5": "87e963282db9e020e8c4d075891ea12b.svg", "type": "backdrop", - "tags": [ - "holiday", - "outdoors", - "nature" - ], + "tags": [], "info": [ 480, 360, @@ -1034,40 +110,10 @@ ] }, { - "name": "space", + "name": "Space", "md5": "b579aeeb143e79c47e2e65cbd3c0fe36.svg", "type": "backdrop", - "tags": [ - "flying", - "space" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "sparkling", - "md5": "a2c28220872e715ef729c82fd12c2668.svg", - "type": "backdrop", - "tags": [ - "holiday" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "spotlight-stage", - "md5": "871a93bbd5547e3ad3a95eaa1d63c5e8.jpg", - "type": "backdrop", - "tags": [ - "indoors", - "music-and-dance" - ], + "tags": [], "info": [ 480, 360, @@ -1075,54 +121,10 @@ ] }, { - "name": "spotlight-stage2", + "name": "Spotlight-stage2", "md5": "12288218b23a264c84bd3c22bd03e90a.svg", "type": "backdrop", - "tags": [ - "indoors", - "music-and-dance" - ], - "info": [ - 496, - 364, - 1 - ] - }, - { - "name": "stage1", - "md5": "99c5e811cfdac4d08ff9b9b0d4404412.png", - "type": "backdrop", - "tags": [ - "indoors", - "music-and-dance" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "stage2", - "md5": "350ae82c294d50f64bf75964d4a0cd2d.png", - "type": "backdrop", - "tags": [ - "indoors", - "music-and-dance" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "stars", - "md5": "552e05774979b3ec52fd1251e01eb032.gif", - "type": "backdrop", - "tags": [ - "space" - ], + "tags": [], "info": [ 480, 360, @@ -1130,40 +132,10 @@ ] }, { - "name": "stripes", + "name": "Stripes", "md5": "a6a21f5c08d586e8daaebde37c97fb6f.svg", "type": "backdrop", - "tags": [ - "holiday", - "other" - ], - "info": [ - 495, - 369 - ] - }, - { - "name": "the movies inside", - "md5": "fb64c872492a50bd0e0b17157fbb098d.jpg", - "type": "backdrop", - "tags": [ - "indoors", - "city" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "the movies outside", - "md5": "df281f3cc7f437c31d0ad45b72315d81.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "city" - ], + "tags": [], "info": [ 480, 360, @@ -1171,196 +143,10 @@ ] }, { - "name": "track", - "md5": "4588d5d6560068fc7d4204c911cdc8d5.svg", - "type": "backdrop", - "tags": [ - "outdoors", - "sports" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "train tracks1", - "md5": "4641f5115f12b7b7be000915af958048.jpg", - "type": "backdrop", - "tags": [ - "outdoors" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "train tracks2", - "md5": "642b12186c7f9488a0bf509c4d6572cd.gif", - "type": "backdrop", - "tags": [ - "outdoors" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "tree", - "md5": "e770d073f62fe8ce28e25b54bdb2122a.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "nature" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "tree-gifts", - "md5": "e058f6d1246f6b94bbc67c5fd04fb25f.png", - "type": "backdrop", - "tags": [ - "holiday" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "underwater1", - "md5": "efad1bcdc7a2945871136e14ba1f9838.png", - "type": "backdrop", - "tags": [ - "outdoors", - "nature", - "underwater" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "underwater2", - "md5": "ae3aac79accf4fa93ffbe3296dd3730d.png", - "type": "backdrop", - "tags": [ - "outdoors", - "nature", - "underwater" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "underwater3", - "md5": "be203c37c3ea07b39a5519d1a55214ff.gif", - "type": "backdrop", - "tags": [ - "outdoors", - "nature", - "underwater" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "urban1", - "md5": "d8c6128aeb2e84ff751f7efef3eb0d03.png", - "type": "backdrop", - "tags": [ - "outdoors", - "city" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "urban2", - "md5": "afd61866da06305f09ea3aa42e6705db.png", - "type": "backdrop", - "tags": [ - "outdoors", - "city" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "village", - "md5": "47dd0064409d8c4db9da24fe7989034c.jpg", - "type": "backdrop", - "tags": [ - "outdoors" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "water and rocks", - "md5": "b19ad0e0046cee5282d3f6ff311f37bf.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "nature" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "wave", - "md5": "989c99466d14ca77424e7dd8b1fb9bee.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "nature", - "underwater" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "winter", + "name": "Winter", "md5": "5fa9385a60b904672d0e46e9d768bb32.svg", "type": "backdrop", - "tags": [ - "holiday", - "nature", - "outdoors" - ], + "tags": [], "info": [ 480, 360, @@ -1368,53 +154,10 @@ ] }, { - "name": "winter-lights", + "name": "Winter-lights", "md5": "381f471693238611a1b54da4e771637a.svg", "type": "backdrop", - "tags": [ - "holiday" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "woods and bench", - "md5": "10cdd2d4cf5359debb2b4d4bd6edd5a1.jpg", - "type": "backdrop", - "tags": [ - "outdoors", - "nature" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "woods", - "md5": "82a2fd67a3e7449bd9e9d2a9757119fa.gif", - "type": "backdrop", - "tags": [ - "outdoors", - "nature" - ], - "info": [ - 480, - 360, - 1 - ] - }, - { - "name": "xy-grid", - "md5": "c7170e868695b784217edac305bb791d.gif", - "type": "backdrop", - "tags": [ - "other" - ], + "tags": [], "info": [ 480, 360, diff --git a/src/lib/libraries/costumes.json b/src/lib/libraries/costumes.json index f359a3f16670dd17f324c32b6e4585d2d6395678..793da7de2e38efbbff5e541ad6b8c1f5ca4bcc08 100644 --- a/src/lib/libraries/costumes.json +++ b/src/lib/libraries/costumes.json @@ -1,10632 +1,1421 @@ [ { + "name": "Abby-a", + "md5": "afab2d2141e9811bd89e385e9628cb5f.svg", + "type": "costume", + "tags": [], "info": [ 31, - 100 - ], - "md5": "7319bc0d839f613172afaa0bb822f0ad.svg", - "type": "costume", - "name": "abby-a", - "tags": [ - "people", - "city", - "drawing", - "vector" + 100, + 1 ] }, { + "name": "Abby-b", + "md5": "1e0116c7c2e5e80c679d0b33f1f5cfb7.svg", + "type": "costume", + "tags": [], "info": [ 31, - 100 - ], - "md5": "930055903e3da58a7b137b2b3d1e0dca.svg", - "type": "costume", - "name": "abby-b", - "tags": [ - "people", - "city", - "drawing", - "vector" + 100, + 1 ] }, { + "name": "Abby-c", + "md5": "b6e23922f23b49ddc6f62f675e77417c.svg", + "type": "costume", + "tags": [], "info": [ 32, - 100 - ], - "md5": "e83ac4d2ba2a68dd00c453274c41e67e.svg", - "type": "costume", - "name": "abby-c", - "tags": [ - "people", - "city", - "drawing", - "vector" + 100, + 1 ] }, { - "info": [ - 31, - 100 - ], - "md5": "b3f253fe9cea6f0bc613b0d0ce422865.svg", + "name": "Abby-d", + "md5": "2193cf08f74b8354f7c4fac37a06ea24.svg", "type": "costume", - "name": "abby-d", - "tags": [ - "people", - "city", - "drawing", - "vector" - ] - }, - { + "tags": [], "info": [ + 31, 100, - 32, 1 - ], - "md5": "58bcb130f226bda9017f1a443360a78a.png", - "type": "costume", - "name": "airplane2", - "tags": [ - "transportation", - "flying", - "city", - "photo", - "bitmap" ] }, { + "name": "Apple", + "md5": "831ccd4741a7a56d85f6698a21f4ca69.svg", + "type": "costume", + "tags": [], "info": [ - 87, - 81, + 31, + 31, 1 - ], - "md5": "8d508770c1991fe05959c9b3b5167036.gif", - "type": "costume", - "name": "amon", - "tags": [ - "people", - "flying", - "photo", - "bitmap" ] }, { - "info": [ - 76, - 252, - 2 - ], - "md5": "6d01c961449223f9e61dda9281100806.png", + "name": "Arrow1-a", + "md5": "62f8794dd120e9b4ead4d098d50fc64b.svg", "type": "costume", - "name": "anina stance", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { + "tags": [], "info": [ - 74, - 280, - 2 - ], - "md5": "34d6362cb4030d92be6fec73300f0aec.png", - "type": "costume", - "name": "anina top stand", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" + 28, + 23, + 1 ] }, { - "info": [ - 248, - 272, - 2 - ], - "md5": "0477f7105d02b9a902382eca080476dc.png", + "name": "Arrow1-b", + "md5": "a157dc7e33d7c7a048af933de999e397.svg", "type": "costume", - "name": "anina top R step", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" + "tags": [], + "info": [ + 28, + 23, + 1 ] }, { - "info": [ - 228, - 274, - 2 - ], - "md5": "62a89d8c6f7680e342132fcde59b2a5d.png", + "name": "Arrow1-c", + "md5": "d3b389e91f7beb22b2b1a80af09990ee.svg", "type": "costume", - "name": "anina top L step", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" + "tags": [], + "info": [ + 23, + 28, + 1 ] }, { - "info": [ - 110, - 268, - 2 - ], - "md5": "dd67565519bdebea1b931deb19621384.png", + "name": "Arrow1-d", + "md5": "412717ff731e9f19003a5840054057eb.svg", "type": "costume", - "name": "anina top freeze", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" + "tags": [], + "info": [ + 23, + 28, + 1 ] }, { - "info": [ - 126, - 268, - 2 - ], - "md5": "22f3ca23b2f0ac67f8ebc36a8c3116a0.png", + "name": "Ball-a", + "md5": "10117ddaefa98d819f2b1df93805622f.svg", "type": "costume", - "name": "anina R cross", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" + "tags": [], + "info": [ + 22, + 22, + 1 ] }, { - "info": [ - 68, - 270, - 2 - ], - "md5": "c163f1002f61421816386e52522b9133.png", + "name": "Ball-b", + "md5": "6e6330cad7750ea7e9dc88402661deb8.svg", "type": "costume", - "name": "anina pop front", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" + "tags": [], + "info": [ + 22, + 22, + 1 ] }, { - "info": [ - 74, - 156, - 2 - ], - "md5": "e9e54ff1fa61c71507e25540d0326177.png", + "name": "Ball-c", + "md5": "bb45ed5db278f15c17c012c34a6b160f.svg", "type": "costume", - "name": "anina pop down", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" + "tags": [], + "info": [ + 22, + 22, + 1 ] }, { - "info": [ - 238, - 266, - 2 - ], - "md5": "9fda30f66d51b2ad5f6fe11d57e199d6.png", + "name": "Ball-d", + "md5": "5d494659deae5c0de06b5885f5524276.svg", "type": "costume", - "name": "anina pop left", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" + "tags": [], + "info": [ + 22, + 22, + 1 ] }, { - "info": [ - 66, - 268, - 2 - ], - "md5": "cc2594e9278494e82f725be34369f178.png", + "name": "Ball-e", + "md5": "e80c98bc62fd32e8df81642af11ffb1a.svg", "type": "costume", - "name": "anina pop right", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" + "tags": [], + "info": [ + 22, + 22, + 1 ] }, { - "info": [ - 68, - 274, - 2 - ], - "md5": "843bff4a5ee3d61fd8cbd419cb2797a3.png", + "name": "Balloon1-a", + "md5": "bc96a1fb5fe794377acd44807e421ce2.svg", "type": "costume", - "name": "anina pop L arm", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" + "tags": [], + "info": [ + 32, + 94, + 1 ] }, { - "info": [ - 76, - 276, - 2 - ], - "md5": "de7cab2c8d567d49a5a1f378b5709bb4.png", + "name": "Balloon1-b", + "md5": "d7bb51d9c38af6314bd2b4058d2a592d.svg", "type": "costume", - "name": "anina pop stand", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" + "tags": [], + "info": [ + 31, + 94, + 1 ] }, { - "info": [ - 88, - 272, - 2 - ], - "md5": "e7e1a86233b7ad28d6ee9970b152be20.png", + "name": "Balloon1-c", + "md5": "247cef27b665d77d9efaca69327cae77.svg", "type": "costume", - "name": "anina pop R arm", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" + "tags": [], + "info": [ + 31, + 94, + 1 ] }, { + "name": "Bananas", + "md5": "40bb8a1afe88cec78254f6fcfee98242.svg", + "type": "costume", + "tags": [], "info": [ - 76, - 87, + 36, + 37, 1 - ], - "md5": "23ab3e9be3be672fa2c43571e92b2b3e.png", - "type": "costume", - "name": "anna-a", - "tags": [ - "people", - "city", - "photo", - "bitmap" ] }, { + "name": "Baseball", + "md5": "6e13ef53885d2cfca9a54cc5c3f6c20f.svg", + "type": "costume", + "tags": [], "info": [ - 57, - 110, + 34, + 31, 1 - ], - "md5": "25b8d4f7eae0add3bc24c20f5f17ada9.png", - "type": "costume", - "name": "anna-b", - "tags": [ - "people", - "city", - "photo", - "bitmap" ] }, { - "info": [ - 78, - 190, - 2 - ], - "md5": "74b5e9c882deb81d88c175d548b8ff66.png", + "name": "Basketball", + "md5": "ac3432618ac868309f502024aa78423c.svg", "type": "costume", - "name": "anna01", - "tags": [ - "people", - "dance", - "photo", - "bitmap" + "tags": [], + "info": [ + 36, + 39, + 1 ] }, { - "info": [ - 132, - 260, - 2 - ], - "md5": "ece557e1c4500b30fd0e22b0d693cf4c.png", + "name": "Bat1-a ", + "md5": "7ad915f8e0884f497a24d5bb61ea8a4a.svg", "type": "costume", - "name": "anna02", - "tags": [ - "people", - "dance", - "photo", - "bitmap" + "tags": [], + "info": [ + 75, + 75, + 1 ] }, { - "info": [ - 138, - 242, - 2 - ], - "md5": "2e97d9d9d6bc1f174d3fc897638e8a46.png", + "name": "Bat1-b ", + "md5": "f127434672b872a902346ef3c1af45f2.svg", "type": "costume", - "name": "anna03", - "tags": [ - "people", - "dance", - "photo", - "bitmap" + "tags": [], + "info": [ + 75, + 75, + 1 ] }, { - "info": [ - 138, - 70, - 2 - ], - "md5": "69da72a9a29181425944e7963eb4f32a.png", + "name": "Bat2-a ", + "md5": "647d4bd53163f94a7dabf623ccab7fd3.svg", "type": "costume", - "name": "anna04", - "tags": [ - "people", - "dance", - "photo", - "bitmap" + "tags": [], + "info": [ + 75, + 75, + 1 ] }, { - "info": [ - 134, - 246, - 2 - ], - "md5": "1b396abf1336bceddb01166d975dad3b.png", + "name": "Bat2-b ", + "md5": "8aa1d20e4f7761becbe9bafa75290465.svg", "type": "costume", - "name": "anna05", - "tags": [ - "people", - "dance", - "photo", - "bitmap" + "tags": [], + "info": [ + 75, + 75, + 1 ] }, { - "info": [ - 118, - 224, - 2 - ], - "md5": "d32ac2b2e9c8fa2f7b251275d8eec8c9.png", + "name": "Beachball", + "md5": "87d64cab74c64b31498cc85f07510ee4.svg", "type": "costume", - "name": "anna06", - "tags": [ - "people", - "dance", - "photo", - "bitmap" + "tags": [], + "info": [ + 34, + 33, + 1 ] }, { - "info": [ - 124, - 224, - 2 - ], - "md5": "c0961caabfa8545b6080ea7825d6fc66.png", + "name": "Beetle", + "md5": "e1ce8f153f011fdd52486c91c6ed594d.svg", "type": "costume", - "name": "anna07", - "tags": [ - "people", - "dance", - "photo", - "bitmap" + "tags": [], + "info": [ + 43, + 38, + 1 ] }, { - "info": [ - 202, - 224, - 2 - ], - "md5": "c21f0ef20be25af3b7c1ed42e974c75f.png", + "name": "Bell1", + "md5": "f35056c772395455d703773657e1da6e.svg", "type": "costume", - "name": "anna07b", - "tags": [ - "people", - "dance", - "photo", - "bitmap" + "tags": [], + "info": [ + 59, + 69, + 1 ] }, { - "info": [ - 58, - 218, - 2 - ], - "md5": "54ed739e6ea31d128c319e8a3401af71.png", + "name": "Butterfly1-a", + "md5": "836d4cc7889f4a1cbcb0303934f31f79.svg", "type": "costume", - "name": "anna07c", - "tags": [ - "people", - "dance", - "photo", - "bitmap" + "tags": [], + "info": [ + 75, + 75, + 1 ] }, { - "info": [ - 126, - 212, - 2 - ], - "md5": "2d9bffdb6cda1ce0c77cfb3e001598f3.png", + "name": "Butterfly1-b ", + "md5": "55dd0671a359d7c35f7b78f4176660e8.svg", "type": "costume", - "name": "anna08", - "tags": [ - "people", - "dance", - "photo", - "bitmap" + "tags": [], + "info": [ + 75, + 75, + 1 ] }, { - "info": [ - 130, - 220, - 2 - ], - "md5": "91f689627fa18d43ff6362ef872d90e2.png", + "name": "Butterfly2 ", + "md5": "a0216895beade6afc6d42bd5bb43faea.svg", "type": "costume", - "name": "anna09", - "tags": [ - "people", - "dance", - "photo", - "bitmap" + "tags": [], + "info": [ + 75, + 75, + 1 ] }, { - "info": [ - 148, - 260, - 2 - ], - "md5": "eab5b5e2c4be253de024dd3deab68a66.png", + "name": "Butterfly3 ", + "md5": "8907a43cf08b0a9134969023be2074c5.svg", "type": "costume", - "name": "anna10", - "tags": [ - "people", - "dance", - "photo", - "bitmap" + "tags": [], + "info": [ + 75, + 75, + 1 ] }, { - "info": [ - 46, - 278, - 2 - ], - "md5": "859f95864d28fdb49d4170ce30fdd031.png", + "name": "Button1", + "md5": "7ef67c5bc8cf7df64fdb3b1d6b250f71.svg", "type": "costume", - "name": "anna11", - "tags": [ - "people", - "dance", - "photo", - "bitmap" + "tags": [], + "info": [ + 72, + 72, + 1 ] }, { - "info": [ - 42, - 206, - 2 - ], - "md5": "66133f695a23f669cc0fa6f06f275ab7.png", + "name": "Button2-a", + "md5": "c0051ff23e9aae78295964206793c1e3.svg", "type": "costume", - "name": "anna12", - "tags": [ - "people", - "dance", - "photo", - "bitmap" + "tags": [], + "info": [ + 72, + 72, + 1 ] }, { - "info": [ - 31, - 31 - ], - "md5": "710cf1819b25f0f82c42ed19fa6b31ec.svg", + "name": "Button2-b", + "md5": "712a561dc0ad66e348b8247e566b50ef.svg", "type": "costume", - "name": "apple", - "tags": [ - "things", - "drawing", - "vector" + "tags": [], + "info": [ + 72, + 72, + 1 ] }, { - "info": [ - 28, - 23 - ], - "md5": "4d9decbe5e1620d9b05650875407675f.svg", + "name": "Button3-a", + "md5": "ffb2a9c21084c58fdb677c8d12a97519.svg", "type": "costume", - "name": "arrow1-a", - "tags": [ - "things", - "drawing", - "vector" + "tags": [], + "info": [ + 72, + 72, + 1 ] }, { - "info": [ - 28, - 23 - ], - "md5": "30f71a3b044c5797f91fc0ff23c97ef6.svg", + "name": "Button3-b", + "md5": "7a9ccb55e4da36f48811ab125d2492e0.svg", "type": "costume", - "name": "arrow1-b", - "tags": [ - "things", - "drawing", - "vector" + "tags": [], + "info": [ + 72, + 72, + 1 ] }, { - "info": [ - 23, - 28 - ], - "md5": "73b6320b4ac3735f05a2a2899e46846d.svg", + "name": "Button4-a", + "md5": "8782b457cdf4a10ca016ff1ec0c744ef.svg", "type": "costume", - "name": "arrow1-c", - "tags": [ - "things", - "drawing", - "vector" + "tags": [], + "info": [ + 35, + 34, + 1 ] }, { - "info": [ - 23, - 28 - ], - "md5": "47611db371b5c621a3334806c1deef93.svg", + "name": "Button4-b", + "md5": "840f4ef01849e459fd84f5470a3b0080.svg", "type": "costume", - "name": "arrow1-d", - "tags": [ - "things", - "drawing", - "vector" + "tags": [], + "info": [ + 35, + 34, + 1 ] }, { - "info": [ - 39, - 94 - ], - "md5": "a626bcd9cba6be57292d277606b90cd8.svg", + "name": "Button5-a", + "md5": "71e97245b7be4fd6fe3ba8cdeecadaf1.svg", "type": "costume", - "name": "avery-a", - "tags": [ - "people", - "city", - "drawing", - "vector" + "tags": [], + "info": [ + 72, + 72, + 1 ] }, { - "info": [ - 39, - 94 - ], - "md5": "a6a582f4a3db8d4fd4dfda75bb2fcc83.svg", + "name": "Button5-b", + "md5": "54cd55512f7571060e6e64168e541222.svg", "type": "costume", - "name": "avery-b", - "tags": [ - "people", - "city", - "drawing", - "vector" + "tags": [], + "info": [ + 72, + 72, + 1 ] }, { + "name": "Cake-a", + "md5": "97ab3596dc06510e963fa29795e663bf.svg", + "type": "costume", + "tags": [], "info": [ + 64, 50, - 95 - ], - "md5": "a6b2655b7d27329fca90edb1c50db909.svg", - "type": "costume", - "name": "avery walking-a", - "tags": [ - "people", - "city", - "walking", - "drawing", - "vector" + 1 ] }, { - "info": [ - 50, - 102 - ], - "md5": "2bbde6b48552a5eebc4b9250c1044de0.svg", + "name": "Cake-b", + "md5": "61d5481955a2f42cb843d09506f6744e.svg", "type": "costume", - "name": "avery walking-b", - "tags": [ - "people", - "city", - "walking", - "drawing", - "vector" + "tags": [], + "info": [ + 64, + 42, + 1 ] }, { + "name": "Cat1 Flying-a", + "md5": "1e81725d2d2c7de4a2dd4a145198a43c.svg", + "type": "costume", + "tags": [], "info": [ + 67, 48, - 95 - ], - "md5": "f7536e63ac8076dc356381d78691de91.svg", - "type": "costume", - "name": "avery walking-c", - "tags": [ - "people", - "city", - "walking", - "drawing", - "vector" + 1 ] }, { - "info": [ - 50, - 101 - ], - "md5": "f893ec49e94e1d538a43cafda3b10413.svg", + "name": "Cat1 Flying-b", + "md5": "0d192725870ef0eda50d91cab0e3c9c5.svg", "type": "costume", - "name": "avery walking-d", - "tags": [ - "people", - "city", - "walking", - "drawing", - "vector" + "tags": [], + "info": [ + 42, + 44, + 1 ] }, { - "info": [ - 70, - 278, - 2 - ], - "md5": "e64363afc7f1e6951cb7967f50de2ba7.png", + "name": "Costume1", + "md5": "09dc888b0b7df19f70d81588ae73420e.svg", "type": "costume", - "name": "AZ stance", - "tags": [ - "people", - "dance", - "city", - "bitmap" + "tags": [], + "info": [ + 47, + 55, + 1 ] }, { - "info": [ - 74, - 274, - 2 - ], - "md5": "75b370524c92025cfa6f9071a6333e00.png", + "name": "Costume2", + "md5": "3696356a03a8d938318876a593572843.svg", "type": "costume", - "name": "AZ top stand", - "tags": [ - "people", - "dance", - "city", - "bitmap" + "tags": [], + "info": [ + 47, + 55, + 1 ] }, { - "info": [ - 200, - 270, - 2 - ], - "md5": "3769dbe6e19b0e19ebf9416ba8660b88.png", + "name": "Crab-a", + "md5": "114249a5660f7948663d95de575cfd8d.svg", "type": "costume", - "name": "AZ top R step", - "tags": [ - "people", - "dance", - "city", - "bitmap" + "tags": [], + "info": [ + 75, + 75, + 1 ] }, { - "info": [ - 144, - 266, - 2 - ], - "md5": "3d618085bce1a68829fa2cd5deab7871.png", + "name": "Crab-b", + "md5": "9bf050664e68c10d2616e85f2873be09.svg", "type": "costume", - "name": "AZ top L step", - "tags": [ - "people", - "dance", - "city", - "bitmap" - ] - }, - { + "tags": [], "info": [ - 54, - 258, - 2 - ], - "md5": "ea33d5c631d8308b47685f1963becd4c.png", - "type": "costume", - "name": "AZ top freeze", - "tags": [ - "people", - "dance", - "city", - "bitmap" + 75, + 75, + 1 ] }, { - "info": [ - 206, - 252, - 2 - ], - "md5": "44216804569454067953fdd5c6b72928.png", + "name": "Dinosaur1-a", + "md5": "286094ffce382c8383519ab896711989.svg", "type": "costume", - "name": "AZ top R cross", - "tags": [ - "people", - "dance", - "city", - "bitmap" - ] - }, - { + "tags": [], "info": [ - 72, - 266, - 2 - ], - "md5": "97c14e52551ae65679d61de6c94f0ec8.png", - "type": "costume", - "name": "AZ pop front", - "tags": [ - "people", - "dance", - "city", - "bitmap" + 75, + 84, + 1 ] }, { - "info": [ - 74, - 188, - 2 - ], - "md5": "2f8d07b568c8c67a0d211b5de09295d3.png", + "name": "Dinosaur1-b", + "md5": "d9eca17b8569f2cde20ef7d3ed0fe19f.svg", "type": "costume", - "name": "AZ pop down", - "tags": [ - "people", - "dance", - "city", - "bitmap" - ] - }, - { + "tags": [], "info": [ - 184, - 266, - 2 - ], - "md5": "4e7e43a86f1f09f1194e3579e7f385f5.png", - "type": "costume", - "name": "AZ pop left", - "tags": [ - "people", - "dance", - "city", - "bitmap" + 116, + 79, + 1 ] }, { - "info": [ - 78, - 276, - 2 - ], - "md5": "15a9d503613c649ca3a55829dbd98869.png", + "name": "Dinosaur1-c", + "md5": "ade3d2ec5029693ecdcca17974bad5fd.svg", "type": "costume", - "name": "AZ pop right", - "tags": [ - "people", - "dance", - "city", - "bitmap" - ] - }, - { + "tags": [], "info": [ - 100, - 280, - 2 - ], - "md5": "0f6462025c20ac346a7f54164832d495.png", - "type": "costume", - "name": "AZ pop L arm", - "tags": [ - "people", - "dance", - "city", - "bitmap" + 65, + 89, + 1 ] }, { - "info": [ - 92, - 280, - 2 - ], - "md5": "34b67b9e4db3aacbae735ade6a0539c2.png", + "name": "Dinosaur1-d", + "md5": "2aa7257a3e0a19ee315b23eaf7f56933.svg", "type": "costume", - "name": "AZ pop stand", - "tags": [ - "people", - "dance", - "city", - "bitmap" - ] - }, - { + "tags": [], "info": [ - 74, - 278, - 2 - ], - "md5": "129472ac2779eb6bc2dd9bfbf0d33f56.png", - "type": "costume", - "name": "AZ pop R arm", - "tags": [ - "people", - "dance", - "city", - "bitmap" + 45, + 87, + 1 ] }, { - "info": [ - 22, - 22 - ], - "md5": "32fec75837e0b8b4a84c32fe65ac6d62.svg", + "name": "Dinosaur1-e", + "md5": "ed46ee11478715f7596d01fb0f98aa3f.svg", "type": "costume", - "name": "ball-a", - "tags": [ - "things", - "drawing", - "sports", - "vector" - ] - }, - { + "tags": [], "info": [ - 22, - 22 - ], - "md5": "6393dfab227b818ca102aa007e0d73c9.svg", - "type": "costume", - "name": "ball-b", - "tags": [ - "things", - "drawing", - "sports", - "vector" + 82, + 84, + 1 ] }, { - "info": [ - 22, - 22 - ], - "md5": "3e1dc0b215fbe2a63199c8be435c8376.svg", + "name": "Dinosaur1-f", + "md5": "39caf2473b1eee55edb688cfa3c240c7.svg", "type": "costume", - "name": "ball-c", - "tags": [ - "things", - "drawing", - "sports", - "vector" - ] - }, - { + "tags": [], "info": [ - 22, - 22 - ], - "md5": "8ca511dd54d80b018ac948b4a484f9e5.svg", - "type": "costume", - "name": "ball-d", - "tags": [ - "things", - "drawing", - "sports", - "vector" + 69, + 76, + 1 ] }, { - "info": [ - 22, - 22 - ], - "md5": "9bb85168adde2a3a408ab6cc16236300.svg", + "name": "Dinosaur1-g", + "md5": "f0f2aa4e8e015de497050d8d44bbfbf1.svg", "type": "costume", - "name": "ball-e", - "tags": [ - "things", - "drawing", - "sports", - "vector" - ] - }, - { + "tags": [], "info": [ - 32, - 34 - ], - "md5": "3adbf5f367c8e330ee01ac1df48c61a6.svg", - "type": "costume", - "name": "ball-soccer", - "tags": [ - "things", - "drawing", - "sports", - "vector" + 68, + 72, + 1 ] }, { + "name": "Dinosaur2-a", + "md5": "ae724a0a6d6e0a2b33dded4140219fb0.svg", + "type": "costume", + "tags": [], "info": [ 75, - 75 - ], - "md5": "fdd5d0ce5c669aa0e2136a0ae65eda5a.svg", - "type": "costume", - "name": "ballerina-a", - "tags": [ - "people", - "dance", - "drawing", - "vector" + 75, + 1 ] }, { - "info": [ - 75, - 75 - ], - "md5": "c11c1a170a9a1db5a03a031b7e3b0db0.svg", + "name": "Dinosaur2-b", + "md5": "a01d31caaab3b14b9bb0e2cd5a86c70c.svg", "type": "costume", - "name": "ballerina-b", - "tags": [ - "people", - "dance", - "drawing", - "vector" + "tags": [], + "info": [ + 67, + 67, + 1 ] }, { + "name": "Dinosaur3", + "md5": "79bb51bbf809b412147f2a196f8c9292.svg", + "type": "costume", + "tags": [], "info": [ 75, - 75 - ], - "md5": "fb760e6352ae4010f04fd48998c3c620.svg", - "type": "costume", - "name": "ballerina-c", - "tags": [ - "people", - "dance", - "drawing", - "vector" + 75, + 1 ] }, { + "name": "Diver1", + "md5": "853803d5600b66538474909c5438c8ee.svg", + "type": "costume", + "tags": [], "info": [ 75, - 75 - ], - "md5": "8e9f1e4267becca4862cb61f1b58f7ad.svg", - "type": "costume", - "name": "ballerina-d", - "tags": [ - "people", - "dance", - "drawing", - "vector" + 75, + 1 ] }, { - "info": [ - 32, - 94 - ], - "md5": "4aa07445c0d8bbf9d4e6f5866c6602d0.svg", + "name": "Diver2", + "md5": "248d3e69ada69a64b1077149ef6a931a.svg", "type": "costume", - "name": "balloon1-a", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { + "tags": [], "info": [ - 31, - 94 - ], - "md5": "1ddaa1d142d9213c2126f49effea486e.svg", - "type": "costume", - "name": "balloon1-b", - "tags": [ - "things", - "holiday", - "drawing", - "vector" + 75, + 75, + 1 ] }, { - "info": [ - 31, - 94 - ], - "md5": "8d286fd967027c999912d0a377a48302.svg", + "name": "Dog1-a", + "md5": "39ddefa0cc58f3b1b06474d63d81ef56.svg", "type": "costume", - "name": "balloon1-c", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { + "tags": [], "info": [ - 36, - 37 - ], - "md5": "be567280e4ab9cc33e9d844dac28b9a4.svg", - "type": "costume", - "name": "bananas", - "tags": [ - "things", - "drawing", - "vector" + 83, + 80, + 1 ] }, { - "info": [ - 34, - 31 - ], - "md5": "274ee8922ac6f09c9695f3e08ca67762.svg", + "name": "Dog1-b", + "md5": "598f4aa3d8f671375d1d2b3acf753416.svg", "type": "costume", - "name": "baseball", - "tags": [ - "things", - "sports", - "drawing", - "vector" - ] - }, - { + "tags": [], "info": [ - 36, - 39 - ], - "md5": "44c276b7abda0d5c3e1c7fbca5fc0d07.svg", - "type": "costume", - "name": "basketball", - "tags": [ - "things", - "sports", - "drawing", - "vector" + 83, + 80, + 1 ] }, { - "info": [ - 60, - 110 - ], - "md5": "0e7d9b8edd9236867be4b0189afcf4b0.svg", + "name": "Dog2-a", + "md5": "e921f865b19b27cd99e16a341dbf09c2.svg", "type": "costume", - "name": "bass", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { + "tags": [], "info": [ 75, - 75 - ], - "md5": "98af2f7e5da8d1f39b30dd69b180c776.svg", - "type": "costume", - "name": "bat1-a ", - "tags": [ - "animals", - "drawing", - "flying", - "vector" - ] - }, - { - "info": [ 75, - 75 - ], - "md5": "cd39b52370976fbeb70c035c920c40b2.svg", - "type": "costume", - "name": "bat1-b ", - "tags": [ - "animals", - "drawing", - "flying", - "vector" + 1 ] }, { + "name": "Dog2-b", + "md5": "891f2fb7daf79ba8b224a9173eeb0a63.svg", + "type": "costume", + "tags": [], "info": [ 75, - 75 - ], - "md5": "d9b3d454885ea253a16eab22a8db3a7f.svg", - "type": "costume", - "name": "bat2-a ", - "tags": [ - "animals", - "drawing", - "flying", - "vector" + 75, + 1 ] }, { + "name": "Dog2-c", + "md5": "cd236d5eef4431dea82983ac9eec406b.svg", + "type": "costume", + "tags": [], "info": [ 75, - 75 - ], - "md5": "4e101d71f85aae56d0dbe910a0ef29dc.svg", - "type": "costume", - "name": "bat2-b ", - "tags": [ - "animals", - "drawing", - "flying", - "vector" + 75, + 1 ] }, { - "info": [ - 34, - 33 - ], - "md5": "bf1d74888dfcdf6e1158ce8b774928f8.svg", + "name": "Donut", + "md5": "9e7b4d153421dae04a24571d7e079e85.svg", "type": "costume", - "name": "beachball", - "tags": [ - "things", - "sports", - "drawing", - "vector" - ] - }, - { + "tags": [], "info": [ - 56, - 93 - ], - "md5": "273b8ed59311b92dae7d5a5583e2e4bc.svg", - "type": "costume", - "name": "bear1-a", - "tags": [ - "animals", - "holiday", - "drawing", - "vector" + 73, + 15, + 1 ] }, { - "info": [ - 56, - 93 - ], - "md5": "4af6b54b78c9cc306040cc33b8d9ffbe.svg", + "name": "Dragon1-a", + "md5": "ee0082b436d6d5dc3de33047166e7bf2.svg", "type": "costume", - "name": "bear1-b", - "tags": [ - "animals", - "holiday", - "drawing", - "vector" - ] - }, - { + "tags": [], "info": [ - 37, - 42 - ], - "md5": "25faec47fbd4ed585751942d8051a4df.svg", - "type": "costume", - "name": "bear2-a", - "tags": [ - "animals", - "holiday", - "drawing", - "vector" + 65, + 60, + 1 ] }, { - "info": [ - 51, - 42 - ], - "md5": "69f98b581bd034e14f25236b6abe6dba.svg", + "name": "Dragon1-b", + "md5": "bb58ce36997fa205a86a085f202837fd.svg", "type": "costume", - "name": "bear2-b", - "tags": [ - "animals", - "holiday", - "drawing", - "vector" - ] - }, - { + "tags": [], "info": [ - 43, - 38 - ], - "md5": "3464f9ddb54a3e8784604382650b2ed1.svg", - "type": "costume", - "name": "beetle", - "tags": [ - "animals", - "drawing", - "vector" + 84, + 56, + 1 ] }, { + "name": "Duck", + "md5": "c3baf7eedfbdac8cd1e4f1f1f779dc0c.svg", + "type": "costume", + "tags": [], "info": [ + 61, 59, - 69 - ], - "md5": "aba7164ab9390ca00bd854cadc924160.svg", - "type": "costume", - "name": "bell1", - "tags": [ - "things", - "holiday", - "drawing", - "vector" + 1 ] }, { - "info": [ - 53, - 51 - ], - "md5": "f65113d5918f6d66f8cd9fc9d38a796b.svg", + "name": "Elephant-a ", + "md5": "b3515b3805938b0fae4e527aa0b4524e.svg", "type": "costume", - "name": "bells-a", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { + "tags": [], "info": [ - 48, - 31 - ], - "md5": "bfc768eda1dbe5c4fff8495ae112ce42.svg", - "type": "costume", - "name": "bells-b", - "tags": [ - "things", - "holiday", - "drawing", - "vector" + 107, + 33, + 1 ] }, { - "info": [ - 30, - 15 - ], - "md5": "654aa363ff9cc8e3be32809a86ae0747.svg", + "name": "Elephant-b ", + "md5": "bce91fa266220d3679a4c19c4e38b1f7.svg", "type": "costume", - "name": "bowl-a", - "tags": [ - "things", - "drawing", - "vector" + "tags": [], + "info": [ + 95, + 40, + 1 ] }, { - "info": [ - 11, - 4 - ], - "md5": "71f265ce8fcd199ca32e39ef81170f15.svg", + "name": "Fish1", + "md5": "df78f8195f72372846d96dc70cb0ad95.svg", "type": "costume", - "name": "bowtie-a", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" + "tags": [], + "info": [ + 75, + 75, + 1 ] }, { - "info": [ - 11, - 4 - ], - "md5": "0cdeb8646f2d997572bf1aedd92963ad.svg", + "name": "Fish2", + "md5": "f3dd9cb79cce497a90900241cf726367.svg", "type": "costume", - "name": "bowtie-b", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" + "tags": [], + "info": [ + 75, + 75, + 1 ] }, { + "name": "Fish3", + "md5": "aec949cefb15ddd1330f3b633734d4d3.svg", + "type": "costume", + "tags": [], "info": [ - 113, - 90, + 75, + 75, 1 - ], - "md5": "cafd225b63d3aeeedc8df926fe5b6ab4.png", - "type": "costume", - "name": "breakdancer1-a", - "tags": [ - "people", - "dance", - "city", - "drawing", - "bitmap" ] }, { + "name": "Frog", + "md5": "285483a688eed2ff8010c65112f99c41.svg", + "type": "costume", + "tags": [], "info": [ + 48, 30, - 90, 1 - ], - "md5": "84bcb1be206e8653a7d97549733c3db5.png", - "type": "costume", - "name": "breakdancer1-b", - "tags": [ - "people", - "dance", - "city", - "drawing", - "bitmap" ] }, { + "name": "Ghost1 ", + "md5": "c88579c578f2d171de78612f2ff9c9d9.svg", + "type": "costume", + "tags": [], "info": [ - 35, - 90, + 60, + 63, 1 - ], - "md5": "b345babf9f78b5e88a288a4b13a7ca29.png", - "type": "costume", - "name": "breakdancer1-c", - "tags": [ - "people", - "dance", - "city", - "drawing", - "bitmap" ] }, { - "info": [ - 40, - 30 - ], - "md5": "48f6836ef7700ef090258f5797bb0fbe.svg", + "name": "Ghost2-a", + "md5": "607be245da950af1a4e4d79acfda46e3.svg", "type": "costume", - "name": "building-a", - "tags": [ - "city", - "flying", - "things", - "drawing", - "vector" - ] - }, - { + "tags": [], "info": [ - 46, - -11 - ], - "md5": "0993fdb92fdf5082ecee2e0bf4a08542.svg", - "type": "costume", - "name": "building-b", - "tags": [ - "city", - "flying", - "things", - "drawing", - "vector" + 75, + 75, + 1 ] }, { - "info": [ - 25, - 17 - ], - "md5": "7af3a04ef92753ddc25f98a287d6e166.svg", + "name": "Ghost2-b", + "md5": "b9e2ebbe17c617ac182abd8bc1627693.svg", "type": "costume", - "name": "building-c", - "tags": [ - "city", - "flying", - "things", - "drawing", - "vector" - ] - }, - { + "tags": [], "info": [ - 59, - -10 - ], - "md5": "1ab0c779c87009c049e66b6294d7e8da.svg", - "type": "costume", - "name": "building-d", - "tags": [ - "city", - "flying", - "things", - "drawing", - "vector" + 75, + 75, + 1 ] }, { - "info": [ - 36, - 55 - ], - "md5": "025125f65e72a84bffbcf05514e7006d.svg", + "name": "Giga-a", + "md5": "93cb048a1d199f92424b9c097fa5fa38.svg", "type": "costume", - "name": "building-e", - "tags": [ - "city", - "flying", - "things", - "drawing", - "vector" - ] - }, - { + "tags": [], "info": [ - 41, - 27 - ], - "md5": "67cdc0865426b287c1bba9204a46244c.svg", - "type": "costume", - "name": "building-f", - "tags": [ - "city", - "flying", - "things", - "drawing", - "vector" + 72, + 96, + 1 ] }, { - "info": [ - 64, - -65 - ], - "md5": "741801c5a4816f1d6c66e4d58f5d37df.svg", + "name": "Giga-b", + "md5": "528613711a7eae3a929025be04db081c.svg", "type": "costume", - "name": "building-g", - "tags": [ - "city", - "flying", - "things", - "drawing", - "vector" - ] - }, - { + "tags": [], "info": [ - 33, - 136 - ], - "md5": "e8ce785e70dcd248662ab7c401add420.svg", - "type": "costume", - "name": "building-h", - "tags": [ - "city", - "flying", - "things", - "drawing", - "vector" + 72, + 96, + 1 ] }, { - "info": [ - 31, - -12 - ], - "md5": "d218f234cd6f5a6076ece1b7e798b23c.svg", + "name": "Giga-c", + "md5": "ee4dd21d7ca6d1b889ee25d245cbcc66.svg", "type": "costume", - "name": "building-i", - "tags": [ - "city", - "flying", - "things", - "drawing", - "vector" - ] - }, - { + "tags": [], "info": [ - 29, - 33 - ], - "md5": "793c032ee10008e813d6f160c543f340.svg", - "type": "costume", - "name": "building-j", - "tags": [ - "city", - "flying", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 120, - 35, - 1 - ], - "md5": "66895930177178ea01d9e610917f8acf.png", - "type": "costume", - "name": "bus", - "tags": [ - "transportation", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "bd34d09c4b65dedbca72588f6247fb79.svg", - "type": "costume", - "name": "butterfly1-a", - "tags": [ - "animals", - "drawing", - "flying", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "1887c20516f859a8344a0e23aa41b838.svg", - "type": "costume", - "name": "butterfly1-b ", - "tags": [ - "animals", - "drawing", - "flying", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "419f8825cfcf53396bf9240cb65a5c48.svg", - "type": "costume", - "name": "butterfly2 ", - "tags": [ - "animals", - "drawing", - "flying", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "b0345f9555179455e93d487bd89e7053.svg", - "type": "costume", - "name": "butterfly3 ", - "tags": [ - "animals", - "drawing", - "flying", - "vector" - ] - }, - { - "info": [ - 72, - 72 - ], - "md5": "eef95c930316eafd5b72b792e6476884.svg", - "type": "costume", - "name": "button1", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 72, - 72 - ], - "md5": "6da6edf190c13d2b4bbd740690837f1b.svg", - "type": "costume", - "name": "button2-a", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 72, - 72 - ], - "md5": "3835ce531f18a6de60d3087471e20944.svg", - "type": "costume", - "name": "button2-b", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 72, - 72 - ], - "md5": "023869c6647183613ad5c839b36d9316.svg", - "type": "costume", - "name": "button3-a", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 72, - 72 - ], - "md5": "acdcc22bfc1db30fbed844f6fb36cb77.svg", - "type": "costume", - "name": "button3-b", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 35, - 34 - ], - "md5": "8f4d59040d28614fe6ab5ab5fb6e8104.svg", - "type": "costume", - "name": "button4-a", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 35, - 34 - ], - "md5": "a8fd321060c4e0ea3e42e957a016140b.svg", - "type": "costume", - "name": "button4-b", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 72, - 72 - ], - "md5": "9a3afa68f238d9cba3ab07b704383932.svg", - "type": "costume", - "name": "button5-a", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 72, - 72 - ], - "md5": "d6a44857a155a05c356add1330624ccc.svg", - "type": "costume", - "name": "button5-b", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 64, - 50 - ], - "md5": "5f1d757c818c95f4f2dd68297a9edf1b.svg", - "type": "costume", - "name": "cake-a", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 64, - 42 - ], - "md5": "477d3e15a755b525cf25534b8b7e8f42.svg", - "type": "costume", - "name": "cake-b", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 84, - 108, - 1 - ], - "md5": "82b2f97fec9083cad502a781fe88929b.png", - "type": "costume", - "name": "calvrett jumping", - "tags": [ - "people", - "photo", - "bitmap" - ] - }, - { - "info": [ - 54, - 85, - 1 - ], - "md5": "b8d2409e58b663020353c08fb029b7e6.png", - "type": "costume", - "name": "calvrett thinking", - "tags": [ - "people", - "photo", - "bitmap" - ] - }, - { - "info": [ - 12, - 32 - ], - "md5": "cbc4204b66973a888260308a9aaa933f.svg", - "type": "costume", - "name": "candle1-a", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 12, - 32 - ], - "md5": "5c7fd9ff374c11b07f1ec4e6b1424209.svg", - "type": "costume", - "name": "candle1-b", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 52, - 37 - ], - "md5": "dab3bc49ac040f70119734ea871774a7.svg", - "type": "costume", - "name": "candles1", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 52, - 79 - ], - "md5": "222a60c96e36ea05782785468a1c4129.svg", - "type": "costume", - "name": "candles2", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 100, - 39, - 1 - ], - "md5": "c0b7d099a815f58ff6d92538856f08c1.png", - "type": "costume", - "name": "car-bug", - "tags": [ - "transportation", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 43, - 100, - 1 - ], - "md5": "db4e1ee1f9102e3da5e06f2d17881df5.png", - "type": "costume", - "name": "cassy-a", - "tags": [ - "people", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 35, - 100, - 1 - ], - "md5": "2f6f57d1ab69fc18a38fd30572530437.png", - "type": "costume", - "name": "cassy-b", - "tags": [ - "people", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 70, - 58, - 1 - ], - "md5": "662752d56bb77544f3e79ee8c16b3f2d.png", - "type": "costume", - "name": "cassy-c", - "tags": [ - "people", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 72, - 100, - 1 - ], - "md5": "24e9dac390ae4e5b0c17e7d922eb033b.png", - "type": "costume", - "name": "cassy-d", - "tags": [ - "people", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 104, - 192, - 2 - ], - "md5": "6cb3686db1fa658b6541cc9fa3ccfcc7.png", - "type": "costume", - "name": "cassy dance-a", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 140, - 192, - 2 - ], - "md5": "086dc4312d3bf4595d6b3fd4b1021b35.png", - "type": "costume", - "name": "cassy dance-b", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 74, - 188, - 2 - ], - "md5": "dffbfb382641655dbd698559ed49fd99.png", - "type": "costume", - "name": "cassy dance-c", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 94, - 180, - 2 - ], - "md5": "d0e98431c4744f684a13e8331d838203.png", - "type": "costume", - "name": "cassy dance-d", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 47, - 50 - ], - "md5": "600a5c94fd2056dc0c88e70d9a6eff6b.svg", - "type": "costume", - "name": "cat1-a", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 47, - 55 - ], - "md5": "4a613186f024c7ae8ab52b39eb083508.svg", - "type": "costume", - "name": "cat1-b", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 67, - 48 - ], - "md5": "60050369a3b7c7ea3131943d1e1f2013.svg", - "type": "costume", - "name": "cat1 flying-a", - "tags": [ - "animals", - "drawing", - "flying", - "vector" - ] - }, - { - "info": [ - 42, - 44 - ], - "md5": "fd665fc1fff732c2880b2493360cde43.svg", - "type": "costume", - "name": "cat1 flying-b", - "tags": [ - "animals", - "drawing", - "flying", - "vector" - ] - }, - { - "info": [ - 87, - 39 - ], - "md5": "06ca0720be501ad99bce01a87b0ec246.svg", - "type": "costume", - "name": "cat2", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 84, - 123, - 2 - ], - "md5": "7f7684029e9726376aaaae1158439f3e.png", - "type": "costume", - "name": "catherine-a", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 179, - 133, - 2 - ], - "md5": "79052da8d59a6a16a0f6d09cd94237ae.png", - "type": "costume", - "name": "catherine-b", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 103, - 28, - 2 - ], - "md5": "6e34f695da1e18d53e6c050d95ba0e4a.png", - "type": "costume", - "name": "catherine-c", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 121, - 113, - 2 - ], - "md5": "feff7824a6fd6747391012dcfe9ac4f0.png", - "type": "costume", - "name": "catherine-d", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 248, - 306, - 2 - ], - "md5": "b940c99d8e677ac5773cb4d592b16734.png", - "type": "costume", - "name": "champ99-a", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 164, - 290, - 2 - ], - "md5": "2ebc7632bc9e665d9eeea93190fad7ad.png", - "type": "costume", - "name": "champ99-b", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 152, - 270, - 2 - ], - "md5": "bfcff80b0044c644c555ba24f2484106.png", - "type": "costume", - "name": "champ99-c", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 188, - 260, - 2 - ], - "md5": "34de53e52a768d60a96e3ae0c030dfc5.png", - "type": "costume", - "name": "champ99-d", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 190, - 248, - 2 - ], - "md5": "0cb685bf8584df9caf124da929ab3453.png", - "type": "costume", - "name": "champ99-e", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 114, - 250, - 2 - ], - "md5": "516d30b29aed8145718db421f4737953.png", - "type": "costume", - "name": "champ99-f", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 132, - 258, - 2 - ], - "md5": "49e0edcb319527d936981f06b4111d53.png", - "type": "costume", - "name": "champ99-g", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 87, - 72, - 2 - ], - "md5": "4c99a77ba72abaf6c961e8684f8a8a9f.png", - "type": "costume", - "name": "cheesy-puffs", - "tags": [ - "things", - "photo", - "bitmap" - ] - }, - { - "info": [ - 71, - 45 - ], - "md5": "d8c950449f91ae3c358ee4ea2e733ff8.svg", - "type": "costume", - "name": "cloud", - "tags": [ - "flying", - "city", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 76, - 19 - ], - "md5": "653d4b0a71db924465d746a38f794669.svg", - "type": "costume", - "name": "cloud-a", - "tags": [ - "flying", - "city", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 101, - 20 - ], - "md5": "36b67da1152c9fd9256c7a8bbeb7e983.svg", - "type": "costume", - "name": "cloud-b", - "tags": [ - "flying", - "city", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 97, - 9 - ], - "md5": "dd16487aa31e931b349481d8969327ae.svg", - "type": "costume", - "name": "cloud-c", - "tags": [ - "flying", - "city", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 87, - 21 - ], - "md5": "8a7ef4a06a241be5065c47b5178f0df5.svg", - "type": "costume", - "name": "cloud-d", - "tags": [ - "flying", - "city", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 66, - 226, - 2 - ], - "md5": "db291ec7e061ecd4d797875e3aec0a09.png", - "type": "costume", - "name": "cm top stand", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 90, - 240, - 2 - ], - "md5": "b5cfa26a969dc001fb38d29c5ef8f1bf.png", - "type": "costume", - "name": "cm top R leg", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 116, - 238, - 2 - ], - "md5": "9b3224263e7c828c54326d9b4f22a74b.png", - "type": "costume", - "name": "cm top L leg", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 84, - 180, - 2 - ], - "md5": "ab97d9c6e3c0efe27bfd9e44ac3af497.png", - "type": "costume", - "name": "cm top ready", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 122, - 162, - 2 - ], - "md5": "3b0538ba8b6fcc0f938013b912e34305.png", - "type": "costume", - "name": "cm top L cross", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 156, - 164, - 2 - ], - "md5": "00716f8ab864ae479db3017146d28c64.png", - "type": "costume", - "name": "cm top R cross", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 136, - 243, - 2 - ], - "md5": "ce0928c8dbc625661b44c3503debae7e.png", - "type": "costume", - "name": "cm pop L arm", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 79, - 229, - 2 - ], - "md5": "e5555af183c643c7006632b26d851a32.png", - "type": "costume", - "name": "cm pop R arm", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 110, - 27, - 1 - ], - "md5": "099953d710d842e592084765c17bda82.png", - "type": "costume", - "name": "convertible1", - "tags": [ - "transportation", - "city", - "drawing", - "bitmap" - ] - }, - { - "info": [ - 90, - 22, - 1 - ], - "md5": "2091f1f3fc578189bced6b257f353995.png", - "type": "costume", - "name": "convertible2", - "tags": [ - "transportation", - "city", - "drawing", - "bitmap" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "d48524491165f7b29017a5ab29f6b570.svg", - "type": "costume", - "name": "convertible3", - "tags": [ - "transportation", - "city", - "drawing", - "vector" - ] - }, - { - "info": [ - 29, - 30 - ], - "md5": "3751e704567f95a75b0c9778ae4dc05f.svg", - "type": "costume", - "name": "cowbell", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "08c149fbbc493200e7729d2e7482f948.svg", - "type": "costume", - "name": "crab-a", - "tags": [ - "animals", - "drawing", - "underwater", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "2ff73ab595fadbf771f4b80160767f88.svg", - "type": "costume", - "name": "crab-b", - "tags": [ - "animals", - "drawing", - "underwater", - "vector" - ] - }, - { - "info": [ - 54, - 80 - ], - "md5": "42df94456fea022bf2a8816aca6e7f34.svg", - "type": "costume", - "name": "creature1-a", - "tags": [ - "fantasy", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 60, - 78 - ], - "md5": "764c5b4407e9be59615d7bda300a4be8.svg", - "type": "costume", - "name": "creature1-b", - "tags": [ - "fantasy", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 63, - 164 - ], - "md5": "f58c37191085080c2573e0ea0cb4dd91.svg", - "type": "costume", - "name": "creature1-c", - "tags": [ - "fantasy", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 34, - 60 - ], - "md5": "1222ec32b0326521f5397c57515e5f1e.svg", - "type": "costume", - "name": "cymbal-a", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 37, - 73 - ], - "md5": "36e399a41facfbf02ca4725e635f5bce.svg", - "type": "costume", - "name": "cymbal-b", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 55, - 119 - ], - "md5": "ac79d709a81d6cfd9ec4fc4b9b28ccd0.svg", - "type": "costume", - "name": "dm stance", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 82, - 244, - 2 - ], - "md5": "cbf035d39d0a0bb070d2eb998cebd60d.png", - "type": "costume", - "name": "dm top stand", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 218, - 232, - 2 - ], - "md5": "fcb8c2b6cf9b7e6ce9df521b2486deb3.png", - "type": "costume", - "name": "dm top R leg", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 230, - 240, - 2 - ], - "md5": "fd8bb9665fe078d2d95dbc35bccf4046.png", - "type": "costume", - "name": "dm top L leg", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 220, - 234, - 2 - ], - "md5": "31e687f186b19ea120cd5cfc9dea2a3f.png", - "type": "costume", - "name": "dm freeze", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 92, - 234, - 2 - ], - "md5": "0b2fb609d6d10decfdd5a1c3b58369b4.png", - "type": "costume", - "name": "dm pop front", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 64, - 74, - 2 - ], - "md5": "3b65ce3551f9c111794f7f1fb8f325be.png", - "type": "costume", - "name": "dm pop down", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 204, - 250, - 2 - ], - "md5": "f636510e8ef231d7c0e72a572ce91c99.png", - "type": "costume", - "name": "dm pop left", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 78, - 238, - 2 - ], - "md5": "36b32430e45e071071052ef33c637f48.png", - "type": "costume", - "name": "dm pop right", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 90, - 238, - 2 - ], - "md5": "426e1520efc34fef45be0596fd5f7120.png", - "type": "costume", - "name": "dm pop L arm", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 100, - 244, - 2 - ], - "md5": "370cc57b40f1f1d6e52d6330b73d207f.png", - "type": "costume", - "name": "dm pop stand", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 80, - 240, - 2 - ], - "md5": "56fe91d2cf3ecb9d1b94006aee9eff79.png", - "type": "costume", - "name": "dm pop R arm", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 218, - 232, - 2 - ], - "md5": "fcb8c2b6cf9b7e6ce9df521b2486deb3.png", - "type": "costume", - "name": "dm top R leg2", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 36, - 100, - 1 - ], - "md5": "1baa5b126e0e14d6070a997c0deefab5.png", - "type": "costume", - "name": "dan-a", - "tags": [ - "people", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 47, - 100, - 1 - ], - "md5": "74be10ac815fd090cb42b92801002bb1.png", - "type": "costume", - "name": "dan-b", - "tags": [ - "people", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 49, - 115 - ], - "md5": "36478fadce5ab3fd58042a9bfdb40427.svg", - "type": "costume", - "name": "dani-a", - "tags": [ - "dress-up", - "people", - "drawing", - "vector" - ] - }, - { - "info": [ - 82, - 115 - ], - "md5": "87c128294c65ac6a15ded9d72f2e60e7.svg", - "type": "costume", - "name": "dani-b", - "tags": [ - "dress-up", - "people", - "drawing", - "vector" - ] - }, - { - "info": [ - 49, - 113 - ], - "md5": "8d581b54d7e57f779166fdb7aa88be2d.svg", - "type": "costume", - "name": "dani-c", - "tags": [ - "dress-up", - "people", - "drawing", - "vector" - ] - }, - { - "info": [ - 52, - 99 - ], - "md5": "4c3dc261428b5f4e6539e780aa493d17.svg", - "type": "costume", - "name": "dee-a", - "tags": [ - "people", - "city", - "drawing", - "vector" - ] - }, - { - "info": [ - 33, - 99 - ], - "md5": "a349e2493df576f6de326be6c5d6faff.svg", - "type": "costume", - "name": "dee-b", - "tags": [ - "people", - "city", - "drawing", - "vector" - ] - }, - { - "info": [ - 36, - 102 - ], - "md5": "55b7d7bccf533dcc624c86c7f5bca713.svg", - "type": "costume", - "name": "dee-c", - "tags": [ - "people", - "city", - "drawing", - "vector" - ] - }, - { - "info": [ - 33, - 99 - ], - "md5": "2b13e3542b27d7e34b1b0409dff364e1.svg", - "type": "costume", - "name": "dee-d", - "tags": [ - "people", - "city", - "drawing", - "vector" - ] - }, - { - "info": [ - 32, - 99 - ], - "md5": "bf5483fc3a0eb283419626bd9083fb4b.svg", - "type": "costume", - "name": "dee-e", - "tags": [ - "people", - "city", - "drawing", - "vector" - ] - }, - { - "info": [ - 39, - 95 - ], - "md5": "7b5e6802b3cae8d833bdbfa335cdd816.svg", - "type": "costume", - "name": "devin-a", - "tags": [ - "people", - "city", - "drawing", - "vector" - ] - }, - { - "info": [ - 40, - 96 - ], - "md5": "ca740a7b77826f3258c14826d20a7d08.svg", - "type": "costume", - "name": "devin-b", - "tags": [ - "people", - "city", - "drawing", - "vector" - ] - }, - { - "info": [ - 32, - 95 - ], - "md5": "c9a2d504bc16587717289a3b76c772d5.svg", - "type": "costume", - "name": "devin-c", - "tags": [ - "people", - "city", - "drawing", - "vector" - ] - }, - { - "info": [ - 41, - 95 - ], - "md5": "0874037661ea4291a5468b6a05b66665.svg", - "type": "costume", - "name": "devin-d", - "tags": [ - "people", - "city", - "drawing", - "vector" - ] - }, - { - "info": [ - 75, - 84 - ], - "md5": "76173aeeb992558179a16632dc37c32e.svg", - "type": "costume", - "name": "dinosaur1-a", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 116, - 79 - ], - "md5": "f8b813d18536ad33ff7c08851fa9bdc9.svg", - "type": "costume", - "name": "dinosaur1-b", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 65, - 89 - ], - "md5": "c62387957783294b49f34cbdf7e826cd.svg", - "type": "costume", - "name": "dinosaur1-c", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 45, - 87 - ], - "md5": "ae64aec419147eacb84542322074e919.svg", - "type": "costume", - "name": "dinosaur1-d", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 82, - 84 - ], - "md5": "cef391a438a097e83a8f484d819ef723.svg", - "type": "costume", - "name": "dinosaur1-e", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 69, - 76 - ], - "md5": "ad3c8fa79bb8db02ef64e648220dbc58.svg", - "type": "costume", - "name": "dinosaur1-f", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 68, - 72 - ], - "md5": "ca1d4633b61decc3ff734d3032928e20.svg", - "type": "costume", - "name": "dinosaur1-g", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "4ab5e5d5382fa49d06ab706692f1a4a8.svg", - "type": "costume", - "name": "dinosaur2-a", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 67, - 67 - ], - "md5": "cf4271c61192b9b40ca1f4cedb276b4c.svg", - "type": "costume", - "name": "dinosaur2-b", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "0a81c9793556deaa3b08a3ec4afc38e0.svg", - "type": "costume", - "name": "dinosaur3", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "b172ff51ae8dd45f9c79926651754507.svg", - "type": "costume", - "name": "diver1", - "tags": [ - "people", - "underwater", - "drawing", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "3e1acefe86705c3a579e861bf5f75008.svg", - "type": "costume", - "name": "diver2", - "tags": [ - "people", - "underwater", - "drawing", - "vector" - ] - }, - { - "info": [ - 83, - 80 - ], - "md5": "f5e058086389fecd4d67e15bcbafa971.svg", - "type": "costume", - "name": "dog1-a", - "tags": [ - "animals", - "drawing", - "walking", - "vector" - ] - }, - { - "info": [ - 83, - 80 - ], - "md5": "7e3544c0c4eb555db39a2eec879c9a0b.svg", - "type": "costume", - "name": "dog1-b", - "tags": [ - "animals", - "drawing", - "walking", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "509841f93113d83521142fa44716f4aa.svg", - "type": "costume", - "name": "dog2-a", - "tags": [ - "animals", - "drawing", - "walking", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "4cedd2437812a316a8886c7a42a4db24.svg", - "type": "costume", - "name": "dog2-b", - "tags": [ - "animals", - "drawing", - "walking", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "70aad58f8a6702718bf2d6391c170390.svg", - "type": "costume", - "name": "dog2-c", - "tags": [ - "animals", - "drawing", - "walking", - "vector" - ] - }, - { - "info": [ - 107, - 103, - 2 - ], - "md5": "fd6c2d1d10a163bc5b7458f7275750f0.png", - "type": "costume", - "name": "dog puppy right", - "tags": [ - "animals", - "photo", - "bitmap" - ] - }, - { - "info": [ - 87, - 112, - 2 - ], - "md5": "00b1589467f939b9c61f666bca2d25d1.png", - "type": "costume", - "name": "dog puppy sit", - "tags": [ - "animals", - "photo", - "bitmap" - ] - }, - { - "info": [ - 104, - 114, - 2 - ], - "md5": "63c3d6718943ecbf48f94b3b131ae8a4.png", - "type": "costume", - "name": "dog puppy side", - "tags": [ - "animals", - "photo", - "bitmap" - ] - }, - { - "info": [ - 234, - 94, - 2 - ], - "md5": "88559ad0334a8a51aca31035068682f6.png", - "type": "costume", - "name": "dog puppy back", - "tags": [ - "animals", - "photo", - "bitmap" - ] - }, - { - "info": [ - 73, - 15 - ], - "md5": "284b582cfa8770b3758ffd9ba717f35e.svg", - "type": "costume", - "name": "donut", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 86, - 59 - ], - "md5": "1b2b2c1521ab49de8cece690537659bb.svg", - "type": "costume", - "name": "dove1-a", - "tags": [ - "animals", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 88, - 57 - ], - "md5": "8715ffc0ef86ee39484018c9cab41f65.svg", - "type": "costume", - "name": "dove1-b", - "tags": [ - "animals", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 99, - 83 - ], - "md5": "31cb275057943be3427536d42f2aa980.svg", - "type": "costume", - "name": "dove2-a", - "tags": [ - "animals", - "holiday", - "flying", - "drawing", - "vector" - ] - }, - { - "info": [ - 100, - 82 - ], - "md5": "703a23347bb4ac1af9ce1e17ee50b417.svg", - "type": "costume", - "name": "dove2-b", - "tags": [ - "animals", - "holiday", - "flying", - "drawing", - "vector" - ] - }, - { - "info": [ - 65, - 60 - ], - "md5": "fae7a8a3a6b9403fc6261755611ff4f7.svg", - "type": "costume", - "name": "dragon1-a", - "tags": [ - "fantasy", - "drawing", - "flying", - "castle", - "vector" - ] - }, - { - "info": [ - 84, - 56 - ], - "md5": "89d3b63d7408794771feb375e1e96796.svg", - "type": "costume", - "name": "dragon1-b", - "tags": [ - "fantasy", - "drawing", - "flying", - "castle", - "vector" - ] - }, - { - "info": [ - 36, - 46 - ], - "md5": "ae31cc4120463718f9451b430b5330d7.svg", - "type": "costume", - "name": "drum bass-a", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 36, - 46 - ], - "md5": "1bef0bf656a1ec94bfbfa4da850c36c7.svg", - "type": "costume", - "name": "drum bass-b", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 51, - 51 - ], - "md5": "3db25ad814a41659eba60e48cac3b6ea.svg", - "type": "costume", - "name": "drums conga-a", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 52, - 79 - ], - "md5": "46c39c4a56dcee096c4153c60f8c3031.svg", - "type": "costume", - "name": "drums conga-b", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 51, - 37 - ], - "md5": "6a5a56f6ab9ab380436b2183722e6e78.svg", - "type": "costume", - "name": "drum snare-a", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 57, - 59 - ], - "md5": "415bd2cfc30976247ccfdadc3d27ebc4.svg", - "type": "costume", - "name": "drum snare-b", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 75, - 45 - ], - "md5": "8e8ddaa25be4a8726b5e83bdcc0feb76.svg", - "type": "costume", - "name": "tabla-a", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 78, - 48 - ], - "md5": "9b45fa0f6fbbf765d24fc5696df85888.svg", - "type": "costume", - "name": "tabla-b", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 49, - 44 - ], - "md5": "281ed57b2cdcbc7212d8146496e591bd.svg", - "type": "costume", - "name": "drum1-a", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 60, - 61 - ], - "md5": "81da94e924ac37ed4c7303845aa2b07e.svg", - "type": "costume", - "name": "drum1-b", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 47, - 39 - ], - "md5": "572bd926ac9af1f7a2da456792359149.svg", - "type": "costume", - "name": "drum2-a", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 47, - 54 - ], - "md5": "2d93b5fc93a7122c2fd480b499a25772.svg", - "type": "costume", - "name": "drum2-b", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 61, - 59 - ], - "md5": "352b564c5e39afabd708eede45a176cd.svg", - "type": "costume", - "name": "duck", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 72, - 72 - ], - "md5": "11610ca0459a75413e06a84f50e65fc3.svg", - "type": "costume", - "name": "earth", - "tags": [ - "things", - "space", - "drawing", - "vector" - ] - }, - { - "info": [ - 107, - 33 - ], - "md5": "374104e1af22c576cd223147dece332b.svg", - "type": "costume", - "name": "elephant-a ", - "tags": [ - "animals", - "drawing", - "nature", - "vector" - ] - }, - { - "info": [ - 95, - 40 - ], - "md5": "3a7bb9b81904f8069c4b5a44e34bd4e4.svg", - "type": "costume", - "name": "elephant-b ", - "tags": [ - "animals", - "drawing", - "nature", - "vector" - ] - }, - { - "info": [ - 40, - 83, - 1 - ], - "md5": "5542c53bb0ba87b39eba6ff743b8115c.png", - "type": "costume", - "name": "fire hydrant", - "tags": [ - "things", - "photo", - "bitmap" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "3e73248ae394de7e3178d0ec8a6120ef.svg", - "type": "costume", - "name": "fish1", - "tags": [ - "animals", - "drawing", - "underwater", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "9bdf2036e0f76fe6979df1fff6aa1e7b.svg", - "type": "costume", - "name": "fish2", - "tags": [ - "animals", - "drawing", - "underwater", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "c90be4d7a30a4fb025675e7502e24e4f.svg", - "type": "costume", - "name": "fish3", - "tags": [ - "animals", - "drawing", - "underwater", - "vector" - ] - }, - { - "info": [ - 39, - 41 - ], - "md5": "7001070f20f9702c1f2fa29ddea25007.svg", - "type": "costume", - "name": "flower shape", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 47, - 100, - 1 - ], - "md5": "422b34b6e5a2fdb8d0ac00aca91ec714.png", - "type": "costume", - "name": "football running", - "tags": [ - "people", - "sports", - "photo", - "bitmap" - ] - }, - { - "info": [ - 37, - 100, - 1 - ], - "md5": "1f57154842f68aa55577edc90a6f2b32.png", - "type": "costume", - "name": "football standing", - "tags": [ - "people", - "sports", - "photo", - "bitmap" - ] - }, - { - "info": [ - 30, - 31, - 1 - ], - "md5": "d47f0be24acf78130af2e03572a3f9d3.png", - "type": "costume", - "name": "fortunecookie", - "tags": [ - "things", - "photo", - "bitmap" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "f7aa4da20e0f803b3423d3107fb87910.svg", - "type": "costume", - "name": "fox", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 48, - 30 - ], - "md5": "392f9f6e006c44339aead2cd357da607.svg", - "type": "costume", - "name": "frog", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 75, - 40, - 1 - ], - "md5": "c6e2f673debcff91de8e3749ddf674b9.png", - "type": "costume", - "name": "fruit_platter", - "tags": [ - "things", - "photo", - "bitmap" - ] - }, - { - "info": [ - 30, - 22 - ], - "md5": "45bf02998a19f1ca40c7e1dba59936e2.svg", - "type": "costume", - "name": "fruitsalad", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 60, - 63 - ], - "md5": "0803b1692831d9b65c7322aa75fa41eb.svg", - "type": "costume", - "name": "ghost1 ", - "tags": [ - "fantasy", - "drawing", - "castle", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "49595991bcae69090f3556702cd6e57e.svg", - "type": "costume", - "name": "ghost2-a", - "tags": [ - "fantasy", - "drawing", - "castle", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "51ee43cd867bab6ad4e184b92a185c7d.svg", - "type": "costume", - "name": "ghost2-b", - "tags": [ - "fantasy", - "drawing", - "castle", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "794d40bd5375ca76587f569e0852cceb.svg", - "type": "costume", - "name": "ghoul-a", - "tags": [ - "fantasy", - "drawing", - "castle", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "fd8267d4ae47430b3999533726adf2fc.svg", - "type": "costume", - "name": "ghoul-b", - "tags": [ - "fantasy", - "drawing", - "castle", - "vector" - ] - }, - { - "info": [ - 33, - 25 - ], - "md5": "b6e09f809efda963e052abe8aaf58ec8.svg", - "type": "costume", - "name": "gift-a", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 33, - 26 - ], - "md5": "29d112e7f03aa037d62df607315d1093.svg", - "type": "costume", - "name": "gift-b", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 72, - 96 - ], - "md5": "265276adce4c6b58ecdd0ef7dc904ff9.svg", - "type": "costume", - "name": "giga-a", - "tags": [ - "fantasy", - "space", - "drawing", - "vector" - ] - }, - { - "info": [ - 72, - 96 - ], - "md5": "8a0253ec2b7fe12a4929b6725e8f706d.svg", - "type": "costume", - "name": "giga-b", - "tags": [ - "fantasy", - "space", - "drawing", - "vector" - ] - }, - { - "info": [ - 73, - 96 - ], - "md5": "9f484082eb1f2d4123649362031475f0.svg", - "type": "costume", - "name": "giga-c", - "tags": [ - "fantasy", - "space", - "drawing", - "vector" - ] - }, - { - "info": [ - 73, - 96 - ], - "md5": "29fd86794eb63c2e2dffcb2477a35acd.svg", - "type": "costume", - "name": "giga-d", - "tags": [ - "fantasy", - "space", - "drawing", - "vector" - ] - }, - { - "info": [ - 70, - 107 - ], - "md5": "7140a0742e286c7c5234980d6d01ba65.svg", - "type": "costume", - "name": "Giga walk1", - "tags": [ - "fantasy", - "space", - "drawing", - "walking", - "vector" - ] - }, - { - "info": [ - 71, - 107 - ], - "md5": "2930163a1a7c144296e76f2eacb478fc.svg", - "type": "costume", - "name": "Giga walk2", - "tags": [ - "fantasy", - "space", - "drawing", - "walking", - "vector" - ] - }, - { - "info": [ - 71, - 107 - ], - "md5": "4d1eec4521358bc7939ff4522d1c0f02.svg", - "type": "costume", - "name": "Giga walk3", - "tags": [ - "fantasy", - "space", - "drawing", - "walking", - "vector" - ] - }, - { - "info": [ - 73, - 110 - ], - "md5": "1e49bc9e576c5bcf5450c8f7305d5ec3.svg", - "type": "costume", - "name": "Giga walk4", - "tags": [ - "fantasy", - "space", - "drawing", - "walking", - "vector" - ] - }, - { - "info": [ - 39, - 48 - ], - "md5": "7d2a7c0d2423490b706816f1c2aff7b0.svg", - "type": "costume", - "name": "glass water-a", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 39, - 48 - ], - "md5": "a90c0864ebc86f4649d5861eb53c6c2b.svg", - "type": "costume", - "name": "glass water-b", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 16, - 9 - ], - "md5": "dd57556f3f82467268aa3771d6e47b9f.svg", - "type": "costume", - "name": "glasses", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 47, - 55 - ], - "md5": "a9e463823bbb3348204deefb6db8a063.svg", - "type": "costume", - "name": "gobo-a", - "tags": [ - "fantasy", - "drawing", - "vector" - ] - }, - { - "info": [ - 47, - 55 - ], - "md5": "c42c5ee74a2d98b2c01c44610249a580.svg", - "type": "costume", - "name": "gobo-b", - "tags": [ - "fantasy", - "drawing", - "vector" - ] - }, - { - "info": [ - 47, - 55 - ], - "md5": "f6fbd8d126ca80ab133b34acbfa4613b.svg", - "type": "costume", - "name": "gobo-c", - "tags": [ - "fantasy", - "drawing", - "vector" - ] - }, - { - "info": [ - 70, - 30 - ], - "md5": "d49c4b42376c493a776dfe2bf1dd23b2.svg", - "type": "costume", - "name": "green flag", - "tags": [ - "things", - "vector", - "drawing" - ] - }, - { - "info": [ - 37, - 98 - ], - "md5": "4765cdbfc4750db3a6735c4bee0b0623.svg", - "type": "costume", - "name": "guitar", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 53, - 145 - ], - "md5": "94ef7a92c31e29cef4e77f17677614b0.svg", - "type": "costume", - "name": "guitar bass", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 37, - 114 - ], - "md5": "41a612c6877ad9f2f034e9d560290696.svg", - "type": "costume", - "name": "guitar electric", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 138, - 126, - 2 - ], - "md5": "b983d99560313e38b4b3cd36cbd5f0d1.png", - "type": "costume", - "name": "hannah-a", - "tags": [ - "people", - "city", - "drawing", - "bitmap", - "sports" - ] - }, - { - "info": [ - 48, - 160, - 2 - ], - "md5": "d0c3b4b24fbf1152de3ebb68f6b875ae.png", - "type": "costume", - "name": "hannah-b", - "tags": [ - "people", - "city", - "drawing", - "bitmap", - "sports" - ] - }, - { - "info": [ - 170, - 130, - 2 - ], - "md5": "5fdce07935156bbcf943793fa84e826c.png", - "type": "costume", - "name": "hannah-c", - "tags": [ - "people", - "city", - "drawing", - "bitmap", - "sports" - ] - }, - { - "info": [ - 52, - 60 - ], - "md5": "bd95cd2f079b54ce5890e1346887be5b.svg", - "type": "costume", - "name": "Hat", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 28, - 19 - ], - "md5": "e42b6188d5fd7fe8eb1ef26e4959bfa3.svg", - "type": "costume", - "name": "hat beanie", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "fbe6a58a3a2410225160d6363a87d2c6.svg", - "type": "costume", - "name": "partyhat1", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "e8407ff71e21a834075cae0c0316f91a.svg", - "type": "costume", - "name": "hat party2-a", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 26, - 101 - ], - "md5": "40aced9001013415ddfb30e06f40a9e8.svg", - "type": "costume", - "name": "hat winter", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 76, - 69 - ], - "md5": "fe9f268489ad433f4f50e60fa082c964.svg", - "type": "costume", - "name": "hat wizard", - "tags": [ - "dress-up", - "fantasy", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 53, - 43 - ], - "md5": "f241cf314fbc045b7c087091430f7820.svg", - "type": "costume", - "name": "headband", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 65, - 56 - ], - "md5": "dfc0bd91ebc30e004bdc6ae307602958.svg", - "type": "costume", - "name": "heart red", - "tags": [ - "things", - "flying", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 66, - 62 - ], - "md5": "dd66cc42681b8d168ef07549de7118e6.svg", - "type": "costume", - "name": "heart purple", - "tags": [ - "things", - "flying", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 58, - 61 - ], - "md5": "fc0269e91f83873642510df756d65f39.svg", - "type": "costume", - "name": "heart love it", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 58, - 61 - ], - "md5": "6f1c987f63516959a9e6101b8514a652.svg", - "type": "costume", - "name": "heart code", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 58, - 61 - ], - "md5": "f4f865cdb6cee2a0abbb874b3a34e387.svg", - "type": "costume", - "name": "heart sweet", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 58, - 61 - ], - "md5": "4fd8032425fb84971a0fe8a86db20b30.svg", - "type": "costume", - "name": "heart smile", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 59, - 52 - ], - "md5": "8d954db6a4db92e04d356b561a394a1b.svg", - "type": "costume", - "name": "heart face", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 81, - 77 - ], - "md5": "3f5e27703b439152671ab04e448a24d2.svg", - "type": "costume", - "name": "heart scratch", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 90, - 64, - 1 - ], - "md5": "8847e2d3383906dbabbf7ffa98945a7b.png", - "type": "costume", - "name": "helicopter", - "tags": [ - "transportation", - "flying", - "city", - "drawing", - "bitmap" - ] - }, - { - "info": [ - 69, - 65 - ], - "md5": "9cb49fbf9ab54f2005e4e118818c7612.svg", - "type": "costume", - "name": "hippo1-a", - "tags": [ - "animals", - "flying", - "fantasy", - "vector" - ] - }, - { - "info": [ - 69, - 68 - ], - "md5": "a50f7f7fca3d8746276dfd77fa75b37e.svg", - "type": "costume", - "name": "hippo1-b", - "tags": [ - "animals", - "flying", - "fantasy", - "vector" - ] - }, - { - "info": [ - 29, - 44 - ], - "md5": "9d95ba1d0dab47d08a02070d2a425fc6.svg", - "type": "costume", - "name": "holly1", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 27, - 42 - ], - "md5": "f71d195c7899eb3e049b44ead01c8440.svg", - "type": "costume", - "name": "holly2", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 72, - 72 - ], - "md5": "fd2b7b9db46f7785645e70f82d11bd26.svg", - "type": "costume", - "name": "home button", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 119, - 83 - ], - "md5": "559fd25c12857570144ff7f39cc6e6f0.svg", - "type": "costume", - "name": "horse1-a", - "tags": [ - "animals", - "transportation", - "vector", - "drawing" - ] - }, - { - "info": [ - 103, - 97 - ], - "md5": "bec9ef3748e921abe1dd6f39a410ce09.svg", - "type": "costume", - "name": "horse1-b", - "tags": [ - "animals", - "transportation", - "vector", - "drawing" - ] - }, - { - "info": [ - 76, - 154, - 2 - ], - "md5": "3ddc912edef87ae29121f57294fa0cb5.png", - "type": "costume", - "name": "jaime-a", - "tags": [ - "people", - "city", - "drawing", - "vector" - ] - }, - { - "info": [ - 68, - 154, - 2 - ], - "md5": "5a683f4536abca0f83a77bc341df4c9a.png", - "type": "costume", - "name": "jaime-b", - "tags": [ - "people", - "city", - "drawing", - "vector" - ] - }, - { - "info": [ - 106, - 172, - 2 - ], - "md5": "d6cc9814f7a6640e4c2b1a4276987dc5.png", - "type": "costume", - "name": "jaime walking-a", - "tags": [ - "people", - "city", - "walking", - "drawing", - "vector" - ] - }, - { - "info": [ - 52, - 176, - 2 - ], - "md5": "7fb579a98d6db257f1b16109d3c4609a.png", - "type": "costume", - "name": "jaime walking-b", - "tags": [ - "people", - "city", - "walking", - "drawing", - "vector" - ] - }, - { - "info": [ - 88, - 170, - 2 - ], - "md5": "5883bdefba451aaeac8d77c798d41eb0.png", - "type": "costume", - "name": "jaime walking-c", - "tags": [ - "people", - "city", - "walking", - "drawing", - "vector" - ] - }, - { - "info": [ - 46, - 174, - 2 - ], - "md5": "4b9d2162e30dbb924840575ed35fddb0.png", - "type": "costume", - "name": "jaime walking-d", - "tags": [ - "people", - "city", - "walking", - "drawing", - "vector" - ] - }, - { - "info": [ - 84, - 172, - 2 - ], - "md5": "63e56d28cc3e3d9b735e1f1d51248cc0.png", - "type": "costume", - "name": "jaime walking-e", - "tags": [ - "people", - "city", - "walking", - "drawing", - "vector" - ] - }, - { - "info": [ - 70, - 100, - 1 - ], - "md5": "cf32a87b2c9d7c2553f5a1ed17966504.gif", - "type": "costume", - "name": "jay", - "tags": [ - "people", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 22, - 25 - ], - "md5": "87eadfd1b1f31e1dae7099190178a1ef.svg", - "type": "costume", - "name": "jeans-a", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 22, - 25 - ], - "md5": "cf56fc47e658a2450f70c18dd1da3c38.svg", - "type": "costume", - "name": "jeans-b", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 54, - 75, - 1 - ], - "md5": "a8ae8b69caa6a837f49aa950055ef29a.gif", - "type": "costume", - "name": "jodi", - "tags": [ - "people", - "sports", - "photo", - "bitmap" - ] - }, - { - "info": [ - 94, - 240, - 2 - ], - "md5": "cb4bf65491eaa9e8aeb1c1fdfe37e84a.png", - "type": "costume", - "name": "jo stance", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 68, - 260, - 2 - ], - "md5": "a91fe6e180b524d27688aa0cd82cd629.png", - "type": "costume", - "name": "jo top stand", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 218, - 262, - 2 - ], - "md5": "de64c526a57355af5fd6ff28f27b67ea.png", - "type": "costume", - "name": "jo top R leg", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 208, - 268, - 2 - ], - "md5": "987a667cd7984d9e5429c26b8a4cab2d.png", - "type": "costume", - "name": "jo top L leg", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 144, - 270, - 2 - ], - "md5": "ddbd8751df020cc32231ecb4e7b5388d.png", - "type": "costume", - "name": "jo top R cross", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 84, - 268, - 2 - ], - "md5": "33660046a3d37fa762f4a634ee3df75d.png", - "type": "costume", - "name": "jo top L cross", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 70, - 228, - 2 - ], - "md5": "0503f4d712bc3184cf1b5f830d0df993.png", - "type": "costume", - "name": "jo pop front", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 68, - 74, - 2 - ], - "md5": "95a0f1bb3d8055a283aecc6bcb6303c9.png", - "type": "costume", - "name": "jo pop down", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 196, - 226, - 2 - ], - "md5": "98e8c2f9869f9356204ed19e43ae01cc.png", - "type": "costume", - "name": "jo pop left", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 66, - 242, - 2 - ], - "md5": "7bf1600ee75facb510c2922f899fb97c.png", - "type": "costume", - "name": "jo pop right", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 108, - 258, - 2 - ], - "md5": "2a907e6edf8a101addb2c27d0568896a.png", - "type": "costume", - "name": "jo pop L arm", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 78, - 262, - 2 - ], - "md5": "361d1884737ef734f6a39fd66fc269ec.png", - "type": "costume", - "name": "jo pop stand", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 108, - 260, - 2 - ], - "md5": "e633eb002deb20108bb5100d4b3a8fc5.png", - "type": "costume", - "name": "jo pop R arm", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 68, - 160, - 2 - ], - "md5": "6e007fde15e49c66ee7996561f80b452.png", - "type": "costume", - "name": "kai-a", - "tags": [ - "people", - "city", - "drawing", - "bitmap" - ] - }, - { - "info": [ - 82, - 158, - 2 - ], - "md5": "c1e1149f6d7e308e3e4eba14ccc8a751.png", - "type": "costume", - "name": "kai-b", - "tags": [ - "people", - "city", - "drawing", - "bitmap" - ] - }, - { - "info": [ - 42, - 27 - ], - "md5": "159e379d786a2614ff8c48c83f515aea.svg", - "type": "costume", - "name": "key", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 79, - 101, - 2 - ], - "md5": "d0018780c7458f002b6fec6d1fea3570.png", - "type": "costume", - "name": "khalid-a", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 69, - 103, - 2 - ], - "md5": "88023269142bfc3ecab5b13cc8cbddb9.png", - "type": "costume", - "name": "Khalid-b", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 69, - 109, - 2 - ], - "md5": "30dbce950a2d2dddc0ea53d1462d116b.png", - "type": "costume", - "name": "khalid-c", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 66, - 63, - 2 - ], - "md5": "e189aec22f4cb57a90f75457615fbbd8.png", - "type": "costume", - "name": "khalid-d", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "390d3a77dfdf336db81bec74205cda85.svg", - "type": "costume", - "name": "knight", - "tags": [ - "fantasy", - "drawing", - "castle", - "vector" - ] - }, - { - "info": [ - 41, - 43 - ], - "md5": "5c8117a34a8ff6cd79203ccea60b8cd0.svg", - "type": "costume", - "name": "ladybug2", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 49, - 28 - ], - "md5": "a3fc18ba980c9f351eb1584d192fbe4b.svg", - "type": "costume", - "name": "ladybug2-a", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 49, - 28 - ], - "md5": "6258c4f66ba26e43a88bbddf96c74566.svg", - "type": "costume", - "name": "ladybug2-b", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 25, - 41, - 1 - ], - "md5": "4885678710301cda511018ad7e420c9c.png", - "type": "costume", - "name": "lamp", - "tags": [ - "things", - "photo", - "bitmap" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "3fcb9293316374619d8ab17b0b68f548.svg", - "type": "costume", - "name": "laptop", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 54, - 244, - 2 - ], - "md5": "61b464a77536f75490d8891fb877819a.png", - "type": "costume", - "name": "lb stance", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 70, - 248, - 2 - ], - "md5": "dfe3628ddf46a67dcc21c63be65a8e40.png", - "type": "costume", - "name": "lb top stand", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 244, - 250, - 2 - ], - "md5": "e824768a109691b5a3c577d3506ed70c.png", - "type": "costume", - "name": "lb top R leg", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 234, - 286, - 2 - ], - "md5": "350472368e2310efe6fa734b79f0ff41.png", - "type": "costume", - "name": "lb top L leg", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 148, - 258, - 2 - ], - "md5": "5a151c4d4e2e2f870d9096d5fce6ed48.png", - "type": "costume", - "name": "lb top L cross", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 174, - 256, - 2 - ], - "md5": "99acf468000c6fcbaf344e4531725efc.png", - "type": "costume", - "name": "lb top R cross", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 66, - 272, - 2 - ], - "md5": "e34a166807a3ffbf8d147b12aa49dd19.png", - "type": "costume", - "name": "lb pop front", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 56, - 90, - 2 - ], - "md5": "8e41de92cb932a6898782a39a0d7d300.png", - "type": "costume", - "name": "lb pop down", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 198, - 266, - 2 - ], - "md5": "ff1b96d1047d4be459a4614ce7c7c94c.png", - "type": "costume", - "name": "lb pop left", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 76, - 264, - 2 - ], - "md5": "d6d5534c628ac5d5fe3cbf1b76b71252.png", - "type": "costume", - "name": "lb pop right", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 100, - 262, - 2 - ], - "md5": "c1fd31607619b8c98a286a650f248511.png", - "type": "costume", - "name": "lb pop L arm", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 66, - 268, - 2 - ], - "md5": "51fe5962fe4d2af7f6fad7abaa692069.png", - "type": "costume", - "name": "lb pop stand", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 78, - 258, - 2 - ], - "md5": "aa57575fde5ff8b13041e3a7b1499fe0.png", - "type": "costume", - "name": "lb pop R arm", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 21, - 83 - ], - "md5": "4780c8bd552deaa7c1bc89e6e365c3d7.svg", - "type": "costume", - "name": "lightning", - "tags": [ - "things", - "castle", - "nature", - "drawing", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "3b8c07aa7168de43c37c970726a7a7e6.svg", - "type": "costume", - "name": "lion-a", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "ccda272ceba318cad983c44a371f936b.svg", - "type": "costume", - "name": "lion-b", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "9e34575a2ce8b4abc82bab97f9d9c863.svg", - "type": "costume", - "name": "lioness", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 71, - 252, - 2 - ], - "md5": "bf911c597995031014bbf32a8eb9d997.png", - "type": "costume", - "name": "lorenz01", - "tags": [ - "people", - "dance", - "photo", - "bitmap" - ] - }, - { - "info": [ - 120, - 252, - 2 - ], - "md5": "a1fb3946afc4c064503656d5d8ed0def.png", - "type": "costume", - "name": "lorenz02", - "tags": [ - "people", - "dance", - "photo", - "bitmap" - ] - }, - { - "info": [ - 125, - 252, - 2 - ], - "md5": "1da2ed229f84c1e6d1693bce3bf2d27f.png", - "type": "costume", - "name": "lorenz03", - "tags": [ - "people", - "dance", - "photo", - "bitmap" - ] - }, - { - "info": [ - 124, - 109, - 2 - ], - "md5": "6b798489bdf2c48337ccb2d31fc64c5f.png", - "type": "costume", - "name": "lorenz04", - "tags": [ - "people", - "dance", - "photo", - "bitmap" - ] - }, - { - "info": [ - 141, - 252, - 2 - ], - "md5": "dc4e7a7e84f20802d4c1b12423738f62.png", - "type": "costume", - "name": "lorenz05", - "tags": [ - "people", - "dance", - "photo", - "bitmap" - ] - }, - { - "info": [ - 132, - 250, - 2 - ], - "md5": "92db5fdd19b29f32890926d808e764af.png", - "type": "costume", - "name": "lorenz06", - "tags": [ - "people", - "dance", - "photo", - "bitmap" - ] - }, - { - "info": [ - 121, - 252, - 2 - ], - "md5": "6b65c2e80daf820d0f277af4f7352cbc.png", - "type": "costume", - "name": "lorenz07", - "tags": [ - "people", - "dance", - "photo", - "bitmap" - ] - }, - { - "info": [ - 115, - 252, - 2 - ], - "md5": "97ef7f1f07248305725f74a0cc127eba.png", - "type": "costume", - "name": "lorenz07b", - "tags": [ - "people", - "dance", - "photo", - "bitmap" - ] - }, - { - "info": [ - 90, - 31, - 1 - ], - "md5": "66b74069378c828cb21d2dbe2227a31a.png", - "type": "costume", - "name": "magiccarpet", - "tags": [ - "transportation", - " fantasy", - "flying", - "castle", - "drawing", - "bitmap" - ] - }, - { - "info": [ - 41, - 18 - ], - "md5": "bec6934b731e65ae36195030ce5ef478.svg", - "type": "costume", - "name": "magicwand", - "tags": [ - "things", - "castle", - "drawing", - "vector" - ] - }, - { - "info": [ - 72, - 138, - 2 - ], - "md5": "8b7ff2f1190825367112c2c076e34af3.png", - "type": "costume", - "name": "maya", - "tags": [ - "people", - "city", - "drawing", - "vector" - ] - }, - { - "info": [ - 50, - 68, - 1 - ], - "md5": "53608adfaea6e927dc11b53f604e2a1e.png", - "type": "costume", - "name": "marble-building", - "tags": [ - "things", - "photo", - "bitmap" - ] - }, - { - "info": [ - 27, - 31 - ], - "md5": "8cfb8e05a2826ddc714b2a7a90e065bc.svg", - "type": "costume", - "name": "microphone", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 57, - 55 - ], - "md5": "4d41cdbf7887d12c3e9f242775b5ad7f.svg", - "type": "costume", - "name": "microphonestand", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 44, - 45 - ], - "md5": "45255daee4d368efe8e219cd5f7d622e.svg", - "type": "costume", - "name": "monkey1-a", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 51, - 46 - ], - "md5": "1effbd6591f95a4495a821160fb2f847.svg", - "type": "costume", - "name": "monkey1-b", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 68, - 99 - ], - "md5": "c08daa21c9f21e2106273876d31f2557.svg", - "type": "costume", - "name": "monkey2-a", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 68, - 99 - ], - "md5": "53481469168a0922a96491cb8b449630.svg", - "type": "costume", - "name": "monkey2-b", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 68, - 99 - ], - "md5": "8bd2ad2fe45a912a74d3a41126028dc8.svg", - "type": "costume", - "name": "monkey2-c", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 42, - 160, - 2 - ], - "md5": "350a86adb24247003cc7e047bdba3c1d.png", - "type": "costume", - "name": "mori", - "tags": [ - "people", - "city", - "drawing", - "bitmap" - ] - }, - { - "info": [ - 50, - 27 - ], - "md5": "a87bfdaa45bb3c72a2f9525dc5039431.svg", - "type": "costume", - "name": "mouse1-a", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 65, - 21 - ], - "md5": "6ed2bd9c2809c4beb356c1f19d2d089d.svg", - "type": "costume", - "name": "mouse1-b", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 85, - 48 - ], - "md5": "365083e1b1b3faae1d39e2bac0ccf130.svg", - "type": "costume", - "name": "muffin-a", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 85, - 48 - ], - "md5": "7c60215b53fe0abc82e34d68fa33e3b4.svg", - "type": "costume", - "name": "muffin-b", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 61, - 60 - ], - "md5": "dabcd5cda06875843eb24ea54df50b0f.svg", - "type": "costume", - "name": "nano-a", - "tags": [ - "fantasy", - "space", - "drawing", - "vector" - ] - }, - { - "info": [ - 61, - 60 - ], - "md5": "148aee134f042a16273f633633be9e0f.svg", - "type": "costume", - "name": "nano-b", - "tags": [ - "fantasy", - "space", - "drawing", - "vector" - ] - }, - { - "info": [ - 61, - 60 - ], - "md5": "94381dbc90a975710dc68aa76a7f244f.svg", - "type": "costume", - "name": "nano-c", - "tags": [ - "fantasy", - "space", - "drawing", - "vector" - ] - }, - { - "info": [ - 61, - 60 - ], - "md5": "b0b0bacf204623377a23ad3d0c05cfc6.svg", - "type": "costume", - "name": "nano-d", - "tags": [ - "fantasy", - "space", - "drawing", - "vector" - ] - }, - { - "info": [ - 74, - 78 - ], - "md5": "ada9b015f41c2c821fb4e9df8037f386.svg", - "type": "costume", - "name": "neigh pony", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "2f942e5655aabed4a9dd9725a7deb242.svg", - "type": "costume", - "name": "octopus-a", - "tags": [ - "animals", - "drawing", - "vector", - "underwater" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "40af92c183ed199d78037e7ced718ee4.svg", - "type": "costume", - "name": "octopus-b", - "tags": [ - "animals", - "drawing", - "vector", - "underwater" - ] - }, - { - "info": [ - 19, - 18 - ], - "md5": "be6818718c8c71b4e5adb571f94988a6.svg", - "type": "costume", - "name": "orange", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 49, - 24 - ], - "md5": "ceb98f80b8f4c8018fc7db600f765c9e.svg", - "type": "costume", - "name": "orange2-a", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 49, - 27 - ], - "md5": "0950b7903dc3492399ccbfd8b0468d54.svg", - "type": "costume", - "name": "orange2-b", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 49, - 33 - ], - "md5": "89645fba4f8c6fab7dda0e87277542a5.svg", - "type": "costume", - "name": "orange2-c", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 39, - 8 - ], - "md5": "0aa17f956a9f355abfda343cc5219b3b.svg", - "type": "costume", - "name": "paddle", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 58, - 100, - 1 - ], - "md5": "6d9c18c296edc8a01e4c611b573b5723.gif", - "type": "costume", - "name": "palmtree", - "tags": [ - "things", - "nature", - "photo", - "bitmap" - ] - }, - { - "info": [ - 86, - 106 - ], - "md5": "fc6be35bc67a5f2944b381b7990006c8.svg", - "type": "costume", - "name": "parrot-a", - "tags": [ - "animals", - "drawing", - "flying", - "nature", - "vector" - ] - }, - { - "info": [ - 49, - 31 - ], - "md5": "82209c20cd633a7f4d64b838a347da36.svg", - "type": "costume", - "name": "parrot-b", - "tags": [ - "animals", - "drawing", - "flying", - "nature", - "vector" - ] - }, - { - "info": [ - 106, - 66 - ], - "md5": "ca9e5a17351782f06eb5ab0bc6fd8a68.svg", - "type": "costume", - "name": "parrot2-a", - "tags": [ - "animals", - "drawing", - "flying", - "nature", - "vector" - ] - }, - { - "info": [ - 83, - 13 - ], - "md5": "808f91dca2d4bb95471242e8d0a214c5.svg", - "type": "costume", - "name": "parrot2-b", - "tags": [ - "animals", - "drawing", - "flying", - "nature", - "vector" - ] - }, - { - "info": [ - 41, - 100, - 1 - ], - "md5": "4092b43b067ef01ce76a395637fe020a.gif", - "type": "costume", - "name": "paul", - "tags": [ - "people", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 49, - 54 - ], - "md5": "18dfa6688d130d16299176b93d9a333b.svg", - "type": "costume", - "name": "pencil-a", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 48, - 68 - ], - "md5": "21ee9e97ab2077f4f00016b8716c1415.svg", - "type": "costume", - "name": "pencil-b", - "tags": [ - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 54, - 61 - ], - "md5": "66c2f4631b5c8c88b8204094b067cac7.svg", - "type": "costume", - "name": "penguin1", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 48, - 62 - ], - "md5": "b4b2fe512e164b2a59c0575af2450c4d.svg", - "type": "costume", - "name": "penguin1 talk-a", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 48, - 61 - ], - "md5": "43f06be8b94480e8895288513ba5b0b8.svg", - "type": "costume", - "name": "penguin1 talk-b", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 49, - 79 - ], - "md5": "450e0ef0467e0529fd518ab57b6209de.svg", - "type": "costume", - "name": "penguin2", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 45, - 79 - ], - "md5": "67583237f7e46a1201b92a5d086a1d6c.svg", - "type": "costume", - "name": "penguin2 talk-a", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 50, - 78 - ], - "md5": "b40abe69d20d4eaff367edff7b230614.svg", - "type": "costume", - "name": "penguin2 talk-b", - "tags": [ - "animals", - "drawing", - "vector" - ] - }, - { - "info": [ - 59, - 98 - ], - "md5": "b4c95362fff78b7cf1987030397e0a48.svg", - "type": "costume", - "name": "penguin3-a", - "tags": [ - "animals", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 57, - 97 - ], - "md5": "822512ec55329e95fc89cc34d3ac1a5b.svg", - "type": "costume", - "name": "penguin3-b", - "tags": [ - "animals", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 64, - 98 - ], - "md5": "5163bcbec95673d27950c036c090c0aa.svg", - "type": "costume", - "name": "penguin3-c", - "tags": [ - "animals", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 142, - 88 - ], - "md5": "a5b6327e4fa12a1a476c0cc9053bafc6.svg", - "type": "costume", - "name": "piano", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 88, - 24 - ], - "md5": "e7604ca50cd042195efc54ff3fdcfb01.svg", - "type": "costume", - "name": "keyboard-a", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 89, - 24 - ], - "md5": "679c004ce29c8a9cee140fa1f30e62b8.svg", - "type": "costume", - "name": "keyboard-b", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 89, - 24 - ], - "md5": "3d280e12a075a4d1e6c54bf8285abd37.svg", - "type": "costume", - "name": "keyboard-c", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 89, - 24 - ], - "md5": "001a532f8e781e032dd5424c9e633cd8.svg", - "type": "costume", - "name": "keyboard-d", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 55, - 66 - ], - "md5": "65db60619ac367971660ca2fca516379.svg", - "type": "costume", - "name": "pico-a", - "tags": [ - "fantasy", - "space", - "drawing", - "vector" - ] - }, - { - "info": [ - 55, - 66 - ], - "md5": "b75f5dcc200e4d9e4b627f2a44e1ff63.svg", - "type": "costume", - "name": "pico-b", - "tags": [ - "fantasy", - "space", - "drawing", - "vector" - ] - }, - { - "info": [ - 55, - 66 - ], - "md5": "fa2e75ecbf2b7398b5404754290f63e8.svg", - "type": "costume", - "name": "pico-c", - "tags": [ - "fantasy", - "space", - "drawing", - "vector" - ] - }, - { - "info": [ - 55, - 66 - ], - "md5": "393a83c8c33d5ce94d1ac1363e841557.svg", - "type": "costume", - "name": "pico-d", - "tags": [ - "fantasy", - "space", - "drawing", - "vector" - ] - }, - { - "info": [ - 54, - 71 - ], - "md5": "0a521446027aa84b07322e4cd893a797.svg", - "type": "costume", - "name": "Pico walk1", - "tags": [ - "fantasy", - "space", - "drawing", - "walking", - "vector" - ] - }, - { - "info": [ - 54, - 71 - ], - "md5": "1e498f3fffecc61ea5ff689ac9c2481f.svg", - "type": "costume", - "name": "Pico walk2", - "tags": [ - "fantasy", - "space", - "drawing", - "walking", - "vector" - ] - }, - { - "info": [ - 54, - 70 - ], - "md5": "618d2af0e1b69318ff430cb13e63d9ba.svg", - "type": "costume", - "name": "Pico walk3", - "tags": [ - "fantasy", - "space", - "drawing", - "walking", - "vector" - ] - }, - { - "info": [ - 54, - 70 - ], - "md5": "1c9978c1d5c5ddbe6e79c4ae7a3f25f8.svg", - "type": "costume", - "name": "Pico walk4", - "tags": [ - "fantasy", - "space", - "drawing", - "walking", - "vector" - ] - }, - { - "info": [ - 72, - 72 - ], - "md5": "5e271e95665e90be47a6ef315d65aa0b.svg", - "type": "costume", - "name": "planet2", - "tags": [ - "things", - "space", - "drawing", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "d68eade061c5aedb9bd64e1ddfe84f6c.svg", - "type": "costume", - "name": "prince", - "tags": [ - "people", - "fantasy", - "castle", - "drawing", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "4950196d5e49da3c706ebc9fe14be1c7.svg", - "type": "costume", - "name": "princess", - "tags": [ - "people", - "fantasy", - "castle", - "drawing", - "vector" - ] - }, - { - "info": [ - 72, - 36 - ], - "md5": "aa284fb76bc965294306dfd264edfad2.svg", - "type": "costume", - "name": "rainbow", - "tags": [ - "things", - "flying", - "city", - "drawing", - "vector" - ] - }, - { - "info": [ - 41, - 100, - 1 - ], - "md5": "b510bc924622795216154727e18dd38e.gif", - "type": "costume", - "name": "referee", - "tags": [ - "people", - "sports", - "photo", - "bitmap" - ] - }, - { - "info": [ - 39, - 70 - ], - "md5": "4d5301597ef9b1679e4c06938892b918.svg", - "type": "costume", - "name": "reindeer", - "tags": [ - "fantasy", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "ea7e44d0e301b60ba22319dfb501073a.svg", - "type": "costume", - "name": "robot1", - "tags": [ - "fantasy", - "drawing", - "space", - "vector" - ] - }, - { - "info": [ - 59, - 15 - ], - "md5": "049e5b00b9b3e389bca862ee408c00d3.svg", - "type": "costume", - "name": "rocks", - "tags": [ - "things", - "nature", - "drawing", - "vector" - ] - }, - { - "info": [ - 82, - 160, - 2 - ], - "md5": "7cca95c0a56646dd65771247ea288612.png", - "type": "costume", - "name": "rory", - "tags": [ - "people", - "city", - "drawing", - "bitmap" - ] - }, - { - "info": [ - 54, - 172, - 2 - ], - "md5": "c30210e8f719c3a4d2c7cc6917a39300.png", - "type": "costume", - "name": "ruby-a", - "tags": [ - "people", - "city", - "drawing", - "bitmap" - ] - }, - { - "info": [ - 76, - 142, - 2 - ], - "md5": "fc15fdbcc535473f6140cab28197f3be.png", - "type": "costume", - "name": "ruby-b", - "tags": [ - "people", - "city", - "drawing", - "bitmap" - ] - }, - { - "info": [ - 112, - 91, - 1 - ], - "md5": "8f8d0ea2f0ab5ca533f33f0da1eecfa6.png", - "type": "costume", - "name": "sail-boat", - "tags": [ - "transportation", - "photo", - "bitmap" - ] - }, - { - "info": [ - 58, - 90, - 1 - ], - "md5": "1d33952fec0abe4ef6adee9fd065d3a8.gif", - "type": "costume", - "name": "sam", - "tags": [ - "people", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 69, - 80 - ], - "md5": "cebf064d1670cd4225b8a237ae28219b.svg", - "type": "costume", - "name": "saxophone-a", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 69, - 80 - ], - "md5": "0de9d7beb4c752c4f73377c803b49a3a.svg", - "type": "costume", - "name": "saxophone-b", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 54, - 36 - ], - "md5": "c55d2cfa06a834d2587bea5dbab3211e.svg", - "type": "costume", - "name": "scarf1", - "tags": [ - "dress-up", - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 23, - 16 - ], - "md5": "90bc9cb4a8ce6f9523e4dd2e928e7b58.svg", - "type": "costume", - "name": "scarf2", - "tags": [ - "dress-up", - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 85, - 26 - ], - "md5": "6c2a9839a24dca53e9b02a552ded6828.svg", - "type": "costume", - "name": "scratch logo", - "tags": [ - "things", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "437e51894eaeeb3a5d44f0d417948c27.svg", - "type": "costume", - "name": "shark-a ", - "tags": [ - "animals", - "drawing", - "underwater", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "d63acefaf97990252b935f6e377c3b6f.svg", - "type": "costume", - "name": "shark-b ", - "tags": [ - "animals", - "drawing", - "underwater", - "vector" - ] - }, - { - "info": [ - 77, - 37 - ], - "md5": "019d8f535145a38b370c977db99efb6b.svg", - "type": "costume", - "name": "shark-c ", - "tags": [ - "animals", - "drawing", - "underwater", - "vector" - ] - }, - { - "info": [ - 39, - 48 - ], - "md5": "3f47f55039d35e4734576de652be8772.svg", - "type": "costume", - "name": "shirt-a", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 48, - 48 - ], - "md5": "2c886fdcca6fb847eec9f069e10682bb.svg", - "type": "costume", - "name": "shirt-b", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 39, - 48 - ], - "md5": "c224bb3cd22fd9e0c0c2f2be1f86395e.svg", - "type": "costume", - "name": "shirt2-a", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 39, - 48 - ], - "md5": "b4d653691641c1f717cdf689f7e2821c.svg", - "type": "costume", - "name": "shirt2-a2", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 35, - 28 - ], - "md5": "dd7efeb200d80f5183f2cb7b7efce038.svg", - "type": "costume", - "name": "shirt blouse", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 30, - 57 - ], - "md5": "7e93627f104d76d7274e7d2ad782345d.svg", - "type": "costume", - "name": "shirt collar-a", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 30, - 57 - ], - "md5": "885506a24bfe830c7150fdca1f019371.svg", - "type": "costume", - "name": "shirt collar-b", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 30, - 57 - ], - "md5": "1d1d2a0ea62e28586e8276970d3b89af.svg", - "type": "costume", - "name": "shirt collar-c", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 39, - 28 - ], - "md5": "80253a3052afa8f321f0023c9e13420c.svg", - "type": "costume", - "name": "shirt-t", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 36, - 23 - ], - "md5": "3e322d6e9a487facb7149fa072720ada.svg", - "type": "costume", - "name": "shoes1", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 40, - 8 - ], - "md5": "0c0a356705c2c8f6c5cc6caac032889f.svg", - "type": "costume", - "name": "shoes2", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "59730ba37234f59efeddec1bb0a4e314.svg", - "type": "costume", - "name": "Singer1", - "tags": [ - "people", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 44, - -21 - ], - "md5": "3d2d42a03495c0ad7a973ba35e96be39.svg", - "type": "costume", - "name": "skates", - "tags": [ - "dress-up", - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 64, - 233, - 2 - ], - "md5": "2d2b577a12a51aa4448ad3e7e2a07079.png", - "type": "costume", - "name": "sl top stand", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 54, - 230, - 2 - ], - "md5": "ba01e9c4448285b7b8a63e98d89ac1d7.png", - "type": "costume", - "name": "sl top R leg", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 149, - 245, - 2 - ], - "md5": "b274db2a4fa913555dae028f327e7423.png", - "type": "costume", - "name": "sl top L leg", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 74, - 198, - 2 - ], - "md5": "3df3afb72314807fc6c58075da124b84.png", - "type": "costume", - "name": "sl top ready", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 50, - 214, - 2 - ], - "md5": "f26ea2f0d0baaa5aaed3cd96d7843206.png", - "type": "costume", - "name": "sl top L cross", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 110, - 200, - 2 - ], - "md5": "b46163522a53150fdb6a44461738e9ae.png", - "type": "costume", - "name": "sl top R cross", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 145, - 174, - 2 - ], - "md5": "48fcc33505fbd3c65d1f7bfbb4745a13.png", - "type": "costume", - "name": "sl pop L arm", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 66, - 237, - 2 - ], - "md5": "ffae2eb189d6efc97efc91e93ed4d8bf.png", - "type": "costume", - "name": "sl pop R arm", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 104, - 103 - ], - "md5": "e6b25d5fd688b5448f7977282644354e.svg", - "type": "costume", - "name": "snowflake", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "3ec5fa2b864d84e07db4104c6fc531d7.svg", - "type": "costume", - "name": "snowman", - "tags": [ - "fantasy", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 32, - 34 - ], - "md5": "3adbf5f367c8e330ee01ac1df48c61a6.svg", - "type": "costume", - "name": "soccer ball", - "tags": [ - "things", - "sports", - "drawing", - "vector" - ] - }, - { - "info": [ - 59, - 84 - ], - "md5": "a9517b5b6530b313e5c682c607865093.svg", - "type": "costume", - "name": "spaceship-a", - "tags": [ - "transportation", - "space", - "fantasy", - "flying", - "drawing", - "vector" - ] - }, - { - "info": [ - 62, - 83 - ], - "md5": "a4470323dee8c46402c5b0dc23b7715a.svg", - "type": "costume", - "name": "spaceship-b", - "tags": [ - "transportation", - "space", - "fantasy", - "flying", - "drawing", - "vector" - ] - }, - { - "info": [ - 53, - 79 - ], - "md5": "11f7d750831512a743aed3b301fb6158.svg", - "type": "costume", - "name": "speaker", - "tags": [ - "things", - "music", - "dance", - "drawing", - "vector" - ] - }, - { - "info": [ - 158, - 146, - 2 - ], - "md5": "7e24c99c1b853e52f8e7f9004416fa34.png", - "type": "costume", - "name": "squirrel1", - "tags": [ - "animals", - "bitmap", - "photo" - ] - }, - { - "info": [ - 21, - 19 - ], - "md5": "cd10e729b4e222f1e469b206343cf4b4.svg", - "type": "costume", - "name": "star1", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 25, - 27 - ], - "md5": "4d3286deb1314a0956402bbf446f29af.svg", - "type": "costume", - "name": "star2", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 54, - 55 - ], - "md5": "75ae725d4e1b0b83d33aff45b5b1476d.svg", - "type": "costume", - "name": "star3-a", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 33, - 34 - ], - "md5": "70fc35fd2b0430ea681d0c8244eaa59e.svg", - "type": "costume", - "name": "star3-b", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "c4276a5f591162d7b350cac161aa9abc.svg", - "type": "costume", - "name": "starfish-a", - "tags": [ - "animals", - "drawing", - "underwater", - "vector" - ] - }, - { - "info": [ - 53, - 60 - ], - "md5": "6dc100e566ef439ccbe9c0b5be1492d4.svg", - "type": "costume", - "name": "starfish-b ", - "tags": [ - "animals", - "drawing", - "underwater", - "vector" - ] - }, - { - "info": [ - 25, - 25 - ], - "md5": "2f5a6535688b6742f2c9d0446405d88f.svg", - "type": "costume", - "name": "stop", - "tags": [ - "things", - "vector", - "drawing" - ] - }, - { - "info": [ - 100, - 59, - 1 - ], - "md5": "e3699b3f2f7d67a9f48ea9b71fd3733a.png", - "type": "costume", - "name": "street-cleaner-mit", - "tags": [ - "transportation", - "city", - "photo", - "bitmap" - ] - }, - { - "info": [ - 72, - 72 - ], - "md5": "efaa211af34ad894707b563239f84aeb.svg", - "type": "costume", - "name": "sun", - "tags": [ - "things", - "space", - "drawing", - "vector", - "vector" - ] - }, - { - "info": [ - 37, - 14 - ], - "md5": "47a9400912ddb1b051a4b681d3845edb.svg", - "type": "costume", - "name": "sunglasses1", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 29, - 10 - ], - "md5": "bc266026eeb0d1942c78df55f26bb3f6.svg", - "type": "costume", - "name": "sunglasses2", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 20, - 15 - ], - "md5": "3845cf38b946941d5cb653a8d667259a.svg", - "type": "costume", - "name": "taco-a", - "tags": [ - "things", - "flying", - "drawing", - "vector" - ] - }, - { - "info": [ - 56, - 15 - ], - "md5": "a3999b2f60e65799fac4cc5a4b06c4c8.svg", - "type": "costume", - "name": "taco-b", - "tags": [ - "things", - "flying", - "drawing", - "vector" - ] - }, - { - "info": [ - 15, - 15, - 1 - ], - "md5": "38d3048bf7ec9f4ec3fd24dc38a03eea.png", - "type": "costume", - "name": "tennisball", - "tags": [ - "things", - "sports", - "photo", - "bitmap" - ] - }, - { - "info": [ - 49, - 63 - ], - "md5": "88ba313f6b2f5d1188e1b530f13f9619.svg", - "type": "costume", - "name": "tera-a", - "tags": [ - "fantasy", - "space", - "drawing", - "vector" - ] - }, - { - "info": [ - 49, - 64 - ], - "md5": "a55fb03bc32381fd8c33f428cf4c9485.svg", - "type": "costume", - "name": "tera-b", - "tags": [ - "fantasy", - "space", - "drawing", - "vector" - ] - }, - { - "info": [ - 49, - 63 - ], - "md5": "98d750d45640daa7be7c9b563df585c8.svg", - "type": "costume", - "name": "tera-c", - "tags": [ - "fantasy", - "space", - "drawing", - "vector" - ] - }, - { - "info": [ - 49, - 63 - ], - "md5": "12e4da814051d616aeaf4482bb85775e.svg", - "type": "costume", - "name": "tera-d", - "tags": [ - "fantasy", - "space", - "drawing", - "vector" - ] - }, - { - "info": [ - 109, - 32 - ], - "md5": "0a54c19714962c197532f68c56fde123.svg", - "type": "costume", - "name": "text awesome", - "tags": [ - "letters", - "things", - "vector" - ] - }, - { - "info": [ - 135, - 24 - ], - "md5": "97c9e6ef78d4f1987fd8c6e5042963cb.svg", - "type": "costume", - "name": "text keep scratching", - "tags": [ - "letters", - "things", - "vector" - ] - }, - { - "info": [ - 172, - 30 - ], - "md5": "9fde2e190a9d01c08737dff291bdd4a8.svg", - "type": "costume", - "name": "text valentine's day", - "tags": [ - "letters", - "things", - "vector" - ] - }, - { - "info": [ - 165, - 34 - ], - "md5": "0176a402a133f7b833da61b890e0d73e.svg", - "type": "costume", - "name": "text Halloween", - "tags": [ - "letters", - "things", - "vector" - ] - }, - { - "info": [ - 100, - 41, - 1 - ], - "md5": "20b16bcb61396df304cad5e8886ceb46.png", - "type": "costume", - "name": "trampoline", - "tags": [ - "things", - "photo", - "bitmap" - ] - }, - { - "info": [ - 77, - 126 - ], - "md5": "d6ef0fe56774ad16d42ad6f847342f88.svg", - "type": "costume", - "name": "tree1", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 82, - 104 - ], - "md5": "3d5662e3e8f8cfa7e6fbf1add3aaf108.svg", - "type": "costume", - "name": "tree2", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 59, - 77 - ], - "md5": "46ff0a392bcf76c27f7e1d6ffb148e61.svg", - "type": "costume", - "name": "tree-lights-a", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 58, - 76 - ], - "md5": "366c09c68d1ac15d61550ccd56a6faba.svg", - "type": "costume", - "name": "tree-lights-b", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ] - }, - { - "info": [ - 49, - 94 - ], - "md5": "e9a6e91d950d7f357b02c9fa3ff27693.svg", - "type": "costume", - "name": "trees-a", - "tags": [ - "city", - "flying", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 36, - 87 - ], - "md5": "0a3484645d3a2c1c618c2bd978f7977a.svg", - "type": "costume", - "name": "trees-b", - "tags": [ - "city", - "flying", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 73, - 43 - ], - "md5": "eb64decb33a8c672030ae0316ab1bf4f.svg", - "type": "costume", - "name": "trombone-a", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 73, - 43 - ], - "md5": "a67ef40fc1e41ff6bcae79a19a8c4445.svg", - "type": "costume", - "name": "trombone-b", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 84, - 25 - ], - "md5": "693c53097cb2bdb61a908da013fb32ef.svg", - "type": "costume", - "name": "trumpet-a", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 84, - 25 - ], - "md5": "efbfcaf69d90880e3b3851045c59f984.svg", - "type": "costume", - "name": "trumpet-a2", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 30, - 78 - ], - "md5": "f4a535024ab2a2603a76b93c999ef4ae.svg", - "type": "costume", - "name": "ukulele", - "tags": [ - "things", - "music", - "drawing", - "vector" - ] - }, - { - "info": [ - 85, - 62, - 1 - ], - "md5": "2ae6d0c3a8cb500e63c11a95eee80fa7.png", - "type": "costume", - "name": "umbrella", - "tags": [ - "things", - "photo", - "bitmap" - ] - }, - { - "info": [ - 75, - 75 - ], - "md5": "67f6d3da6c9640fdc67dcaac753626d6.svg", - "type": "costume", - "name": "unicorn", - "tags": [ - "flying", - "fantasy", - "drawing", - "castle", - "vector" - ] - }, - { - "info": [ - 18, - 62 - ], - "md5": "41a2c9d076659033198bfb02504691b8.svg", - "type": "costume", - "name": "vest-a", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 18, - 62 - ], - "md5": "a582b8a2c3e4aca3c5351caf2491be1f.svg", - "type": "costume", - "name": "vest-b", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ] - }, - { - "info": [ - 49, - 68 - ], - "md5": "17d7d2a69d49cd9bece9268c89a4716d.svg", - "type": "costume", - "name": "wanda", - "tags": [ - "people", - "city", - "drawing", - "vector" - ] - }, - { - "info": [ - 40, - 27 - ], - "md5": "e3b8c5fa4fa56b979af1ba9059af6d3a.svg", - "type": "costume", - "name": "watermelon-a", - "tags": [ - "things", - "vector", - "drawing" - ] - }, - { - "info": [ - 22, - 27 - ], - "md5": "89ad628af409798a9dde7ed11840bdbe.svg", - "type": "costume", - "name": "watermelon-b", - "tags": [ - "things", - "vector", - "drawing" - ] - }, - { - "info": [ - 21, - 15 - ], - "md5": "aaa3384b125a0571d7cae91c8f992173.svg", - "type": "costume", - "name": "watermelon-c", - "tags": [ - "things", - "vector", - "drawing" - ] - }, - { - "info": [ - 74, - 59 - ], - "md5": "69866edb1db502ab87379dbfb56b3740.svg", - "type": "costume", - "name": "witch", - "tags": [ - "flying", - "people", - "fantasy", - "castle", - "drawing", - "vector" - ] - }, - { - "info": [ - 76, - 86 - ], - "md5": "333f755ce8d28b0b79c51e7be745ac8e.svg", - "type": "costume", - "name": "wizard", - "tags": [ - "people", - "fantasy", - "castle", - "drawing", - "vector" - ] - }, - { - "info": [ - 134, - 153 - ], - "md5": "e16ceb783e16d0625466986cdd6b91b4.svg", - "type": "costume", - "name": "wizard1", - "tags": [ - "people", - "fantasy", - "castle", - "drawing", - "vector" - ] - }, - { - "info": [ - 69, - 93 - ], - "md5": "ffe622e7679cd8bf5cc74dc45590b9f5.svg", - "type": "costume", - "name": "wizard2", - "tags": [ - "people", - "fantasy", - "castle", - "drawing", - "vector" - ] - }, - { - "info": [ - 50, - 170, - 2 - ], - "md5": "ad7b145d46e933125bd9c928d784fcdc.png", - "type": "costume", - "name": "zara-a", - "tags": [ - "people", - "city", - "drawing", - "bitmap" - ] - }, - { - "info": [ - 86, - 168, - 2 - ], - "md5": "6fba793b512069a67096a82aa85a5c12.png", - "type": "costume", - "name": "zara-b", - "tags": [ - "people", - "city", - "drawing", - "bitmap" - ] - }, - { - "info": [ - 28, - 38 - ], - "md5": "4b8fecad5f8834b05d907ebcaa959477.svg", - "type": "costume", - "name": "a-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 29, - 42 - ], - "md5": "63cff160693f4b250b1c47f3ac8d325b.svg", - "type": "costume", - "name": "b-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 35, - 43 - ], - "md5": "47ee2e0ae55728ddc255b45918f575e6.svg", - "type": "costume", - "name": "c-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 31, - 41 - ], - "md5": "060a20d70b98630a584913e1524e191b.svg", - "type": "costume", - "name": "d-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 25, - 39 - ], - "md5": "44d0878224ddd43e14e025575d838a8f.svg", - "type": "costume", - "name": "e-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 23, - 40 - ], - "md5": "f7da50f5fede5755e6e7ca65b2780247.svg", - "type": "costume", - "name": "f-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 28, - 39 - ], - "md5": "83c53681f69111882049537bdc0b594f.svg", - "type": "costume", - "name": "g-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 27, - 38 - ], - "md5": "c71d7d5cd824eefce0d8bdba9e785ee9.svg", - "type": "costume", - "name": "h-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 19, - 39 - ], - "md5": "2dbffbe195853d8ffe5c35bd63dbcce4.svg", - "type": "costume", - "name": "i-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 25, - 41 - ], - "md5": "61f716676ace4bf5499d1d82228bcf9c.svg", - "type": "costume", - "name": "j-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 24, - 40 - ], - "md5": "c3e832f6e426c167adcc6e15bc50145f.svg", - "type": "costume", - "name": "k-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 26, - 40 - ], - "md5": "a9d8baee9b77e267f2f92279944a3578.svg", - "type": "costume", - "name": "l-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 35, - 37 - ], - "md5": "d16a1d6aca3cc4356c9b1038e086f76b.svg", - "type": "costume", - "name": "m-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 28, - 37 - ], - "md5": "4ad33b964744fa709a30797e1b09b234.svg", - "type": "costume", - "name": "n-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 32, - 40 - ], - "md5": "60853a69301b03f54bf0901a41fd9288.svg", - "type": "costume", - "name": "o-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 18, - 33 - ], - "md5": "498613b145b853564b1377995f1b05a3.svg", - "type": "costume", - "name": "p-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 26, - 33 - ], - "md5": "1310ee089e917987a4962b33f509933a.svg", - "type": "costume", - "name": "q-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 22, - 33 - ], - "md5": "54e7dd03538c0722f13c00428ed47d87.svg", - "type": "costume", - "name": "r-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 13, - 30 - ], - "md5": "19fb4aa2f9f0d95ef723cdcf5232cff4.svg", - "type": "costume", - "name": "s-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 25, - 33 - ], - "md5": "62bdad7440437ded1b5a9869ee8a68be.svg", - "type": "costume", - "name": "t-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 28, - 41 - ], - "md5": "0d8135dbf322d3ad6ba54691e3488b2a.svg", - "type": "costume", - "name": "u-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 35, - 41 - ], - "md5": "d8e66709beacb4558d5a6a14ffc92ad7.svg", - "type": "costume", - "name": "v-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 47, - 39 - ], - "md5": "ec13d8fdfb97162f25f78b91edd4b49d.svg", - "type": "costume", - "name": "w-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 25, - 32 - ], - "md5": "6ace784b15f886b714a9658af89bc016.svg", - "type": "costume", - "name": "x-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 26, - 33 - ], - "md5": "d160d2c522b80196ea0cdaee2ca2705f.svg", - "type": "costume", - "name": "y-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 24, - 38 - ], - "md5": "d3ac60cf90b7af903fc24261ceaa82c0.svg", - "type": "costume", - "name": "z-block", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 36, - 37 - ], - "md5": "7a3dc8a55849356e746b885bb249b34e.svg", - "type": "costume", - "name": "A-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 32, - 35 - ], - "md5": "a6af3710bb0786176545e6204ea20f62.svg", - "type": "costume", - "name": "B-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 27, - 35 - ], - "md5": "5d5994f7fd5a294d6628191ee1a2290e.svg", - "type": "costume", - "name": "C-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 33, - 35 - ], - "md5": "a0e58d65f56008004d727af065f52018.svg", - "type": "costume", - "name": "D-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 34, - 38 - ], - "md5": "6dcd628104feb6067c944cf3bb3cef15.svg", - "type": "costume", - "name": "E-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 35, - 41 - ], - "md5": "c910f48355293d79e2832f6ad27941c8.svg", - "type": "costume", - "name": "F-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 32, - 39 - ], - "md5": "5704fd4af8fcddb7127c246d3cd11e09.svg", - "type": "costume", - "name": "G-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 35, - 46 - ], - "md5": "2a2fb1a7a7c932a4455e315d09bf1bc4.svg", - "type": "costume", - "name": "H-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 21, - 38 - ], - "md5": "d48035075078165bc52f7eac82a00efc.svg", - "type": "costume", - "name": "I-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 29, - 39 - ], - "md5": "d382ed10afe31829b0b5e42a012343a9.svg", - "type": "costume", - "name": "J-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 38, - 36 - ], - "md5": "bca611a8639f0726b4e1fcdfaf53934a.svg", - "type": "costume", - "name": "K-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 33, - 35 - ], - "md5": "3fd306d0efd8f5f454aa7c363d52cdf3.svg", - "type": "costume", - "name": "L-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 42, - 39 - ], - "md5": "ec4152e9bfd661ceedbd8b20e8d02a36.svg", - "type": "costume", - "name": "M-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 37, - 39 - ], - "md5": "f70b7175e1bab4d266c03778cba936ea.svg", - "type": "costume", - "name": "N-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 29, - 39 - ], - "md5": "0b0da4beb501e3fab43ea6cee4a270cc.svg", - "type": "costume", - "name": "O-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 32, - 39 - ], - "md5": "a9c1c00d5d5a14b9dc841a2f8ffce1b0.svg", - "type": "costume", - "name": "P-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 33, - 43 - ], - "md5": "a822d2a4d4df5b0eb42f1bcb8f5958a9.svg", - "type": "costume", - "name": "Q-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 35, - 38 - ], - "md5": "566228a870f1170fd6d7087b1514e9a5.svg", - "type": "costume", - "name": "R-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 27, - 40 - ], - "md5": "c3a18d91633f5c3feb6ab946d2912301.svg", - "type": "costume", - "name": "S-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 35, - 38 - ], - "md5": "7d9900de7d8734f7ad446d64b7260cb0.svg", - "type": "costume", - "name": "T-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 37, - 37 - ], - "md5": "e573398e25936dd6034fcd4aabf5f5bf.svg", - "type": "costume", - "name": "U-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 35, - 42 - ], - "md5": "a1c5ee4278b7d35913e13fbbab1b7f44.svg", - "type": "costume", - "name": "V-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 45, - 41 - ], - "md5": "40f84faa7023e5f0f58b21635f417e99.svg", - "type": "costume", - "name": "W-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 40, - 39 - ], - "md5": "17abb949ecec5ce6f9610811fe8a58da.svg", - "type": "costume", - "name": "X-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 38, - 41 - ], - "md5": "b6eaadb74af94b0b437b03c62b2a2817.svg", - "type": "costume", - "name": "Y-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 30, - 39 - ], - "md5": "f1d4626aa487198dc6d6ac340932675f.svg", - "type": "costume", - "name": "Z-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 29, - 39 - ], - "md5": "0b0da4beb501e3fab43ea6cee4a270cc.svg", - "type": "costume", - "name": "0-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 24, - 39 - ], - "md5": "aee5a084200d93212f0eefd193a166f6.svg", - "type": "costume", - "name": "1-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 28, - 41 - ], - "md5": "12900b4ad9de597626a080b2d6e8b8da.svg", - "type": "costume", - "name": "2-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 33, - 42 - ], - "md5": "d5d1bc9f7cfad5039b4c74c408144494.svg", - "type": "costume", - "name": "3-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 31, - 38 - ], - "md5": "ca1c3562241b10ab93ba3e6ac0683ef1.svg", - "type": "costume", - "name": "4-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 30, - 38 - ], - "md5": "727e6d82d8f0733a65b0cf5d144766ae.svg", - "type": "costume", - "name": "5-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 30, - 37 - ], - "md5": "349d96682f4a645a41873a0a1ba15e14.svg", - "type": "costume", - "name": "6-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 31, - 42 - ], - "md5": "a026cb19da963632e5f61cf9ce07ed1a.svg", - "type": "costume", - "name": "7-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 31, - 37 - ], - "md5": "cc5ac4831638d2fbc0c0450b998e8bf8.svg", - "type": "costume", - "name": "8-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 28, - 36 - ], - "md5": "452d69af56bd5016639abb76acab98d2.svg", - "type": "costume", - "name": "9-glow", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 14, - 19 - ], - "md5": "667b5717b4a9de1a6248eaa4bd4b1949.svg", - "type": "costume", - "name": "A-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 14, - 18 - ], - "md5": "2c95b15da27831c733e97fdb31658434.svg", - "type": "costume", - "name": "B-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 14, - 20 - ], - "md5": "18b570f7e9cb0a87e136c7a5193fc770.svg", - "type": "costume", - "name": "C-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 14, - 20 - ], - "md5": "c93563ebf5bb16df69a5d0490e3c80c3.svg", - "type": "costume", - "name": "D-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 11, - 19 - ], - "md5": "95bbd429662480c4e2456ac4d0122b25.svg", - "type": "costume", - "name": "E-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 10, - 20 - ], - "md5": "97290f54b27a31b561814368badde51d.svg", - "type": "costume", - "name": "F-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 15, - 22 - ], - "md5": "58345c5b2923e97f4de5a904e7ab381a.svg", - "type": "costume", - "name": "G-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 15, - 20 - ], - "md5": "2cfb7325c1f58d7cd2fa2ba6c92f58c1.svg", - "type": "costume", - "name": "H-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 9, - 21 - ], - "md5": "d35227e8efbe490d59d2f1096cd60ae5.svg", - "type": "costume", - "name": "I-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 14, - 20 - ], - "md5": "6b79bdfe2389b9017b2dbb9a2bb937e5.svg", - "type": "costume", - "name": "J-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 14, - 20 - ], - "md5": "9bf066972c980159d11923db1a3004af.svg", - "type": "costume", - "name": "K-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 11, - 18 - ], - "md5": "9da27310d68a15b0252cc1b35882acd3.svg", - "type": "costume", - "name": "L-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 19, - 16 - ], - "md5": "d427cfd826c9b9c98f9214d84ccfca67.svg", - "type": "costume", - "name": "M-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 14, - 19 - ], - "md5": "73a7e690cf4eb20cffbcf9877b6dafdf.svg", - "type": "costume", - "name": "N-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 13, - 19 - ], - "md5": "1517481350a93fdce1e9d929d617a023.svg", - "type": "costume", - "name": "O-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 13, - 19 - ], - "md5": "4db5eeaea6d09b74565f48c58709a419.svg", - "type": "costume", - "name": "P-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 13, - 21 - ], - "md5": "738fc021ac9ad449511d0308c985a102.svg", - "type": "costume", - "name": "Q-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 13, - 19 - ], - "md5": "4bb86b33b3f6f298d621e202d116b198.svg", - "type": "costume", - "name": "R-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 13, - 20 - ], - "md5": "d3736ecfe63a9fe20cce716e694f1b70.svg", - "type": "costume", - "name": "S-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 13, - 20 - ], - "md5": "f993ca6271bf4ae40d869c79206405f2.svg", - "type": "costume", - "name": "T-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 14, - 19 - ], - "md5": "c10beb1692efee87de0fc6a3038c5da2.svg", - "type": "costume", - "name": "U-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 14, - 20 - ], - "md5": "51aafc3a7190eb5dab251522fb2e921b.svg", - "type": "costume", - "name": "V-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 13, - 19 - ], - "md5": "fe07762ad2226678450a6bed4b1e6e8a.svg", - "type": "costume", - "name": "W-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 14, - 19 - ], - "md5": "85608e187d743464f3c035714c32dbab.svg", - "type": "costume", - "name": "X-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 13, - 18 - ], - "md5": "cc54d7dd5ecd42fcb496ab417219315f.svg", - "type": "costume", - "name": "Y-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 12, - 18 - ], - "md5": "2d31d217aeccedf857211e2ba419c285.svg", - "type": "costume", - "name": "Z-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 13, - 18 - ], - "md5": "e51b2e33dbadc9e197b56ce44f0571fa.svg", - "type": "costume", - "name": "0-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 7, - 20 - ], - "md5": "f66ede98fbe607a56eb5e806ecdfd7b4.svg", - "type": "costume", - "name": "1-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 14, - 17 - ], - "md5": "f7cb01670b7c78ea2d767b2998966196.svg", - "type": "costume", - "name": "2-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 14, - 18 - ], - "md5": "ceb406c912506964c0869133907821c9.svg", - "type": "costume", - "name": "3-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 14, - 19 - ], - "md5": "890a1dfe581e17c58cf132c7671d9fcd.svg", - "type": "costume", - "name": "4-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 12, - 19 - ], - "md5": "270359dbb0ecbe96acd5c6f7e3193be0.svg", - "type": "costume", - "name": "5-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 14, - 17 - ], - "md5": "dffffc84cd2d793f420c53ca6cee4953.svg", - "type": "costume", - "name": "6-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 12, - 19 - ], - "md5": "e0f5bfc0912956222f55111499929813.svg", - "type": "costume", - "name": "7-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 14, - 19 - ], - "md5": "0ca4dbbdbf106431bd3a197658b7cb73.svg", - "type": "costume", - "name": "8-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 12, - 20 - ], - "md5": "36f96123f90060f739c26387222f9e71.svg", - "type": "costume", - "name": "9-pixel", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 23, - 26 - ], - "md5": "a541431ea1b67b2100b2ef59927df0d7.svg", - "type": "costume", - "name": "A-story-1", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 23, - 26 - ], - "md5": "3f1f35409aa88d11f1c375b82f9e5687.svg", - "type": "costume", - "name": "A-story-2", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 22, - 24 - ], - "md5": "93463f01063a8806d4f1532cadb6be8c.svg", - "type": "costume", - "name": "A-story-3", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 20, - 25 - ], - "md5": "3f3b274d161bae432bd5966a33114fd0.svg", - "type": "costume", - "name": "B-story-1", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 19, - 25 - ], - "md5": "5e36ba5a07847ca6bffbbb8d8b53541c.svg", - "type": "costume", - "name": "B-story-2", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 18, - 23 - ], - "md5": "e0f13cef86074901b7535cacbf24eb9f.svg", - "type": "costume", - "name": "B-story-3", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 22, - 26 - ], - "md5": "786383a7baf7ff58bdcbd55d8a7395a1.svg", - "type": "costume", - "name": "C-story-1", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 22, - 26 - ], - "md5": "daac25b9d88547ef9c802e5b2585ccf6.svg", - "type": "costume", - "name": "C-story-2", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 20, - 24 - ], - "md5": "7b687b2eb2702a44f8bb432f59aa7534.svg", - "type": "costume", - "name": "C-story-3", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 25, - 26 - ], - "md5": "ec60df3b4dfde735f72d3a641b737800.svg", - "type": "costume", - "name": "D-story-1", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 25, - 26 - ], - "md5": "0894d63cefa2e7f0fcdac51860c05390.svg", - "type": "costume", - "name": "D-story-2", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 22, - 23 - ], - "md5": "3c71cb248eb61a6c5950082e0fae2cee.svg", - "type": "costume", - "name": "D-story-3", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 20, - 25 - ], - "md5": "c227b91edab98c183bb0700acf00764f.svg", - "type": "costume", - "name": "E-story-1", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 20, - 25 - ], - "md5": "b7bb8f1548e7c262ce5f8b2be169f55a.svg", - "type": "costume", - "name": "E-story-2", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 18, - 23 - ], - "md5": "1c9717e36a0175fc7a1e603c6a19fef3.svg", - "type": "costume", - "name": "E-story-3", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 18, - 26 - ], - "md5": "0ffc2ff1c96a596a72552c85c9a5be1a.svg", - "type": "costume", - "name": "F-story-1", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 18, - 25 - ], - "md5": "9aa1fa46bcf69f15fb0c338bf2be98e5.svg", - "type": "costume", - "name": "F-story-2", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 16, - 23 - ], - "md5": "1b33ec2426c33ba99d595a53784feacf.svg", - "type": "costume", - "name": "F-story-3", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 23, - 25 - ], - "md5": "d39a8a56ea511a40d3b98300dbd19f9b.svg", - "type": "costume", - "name": "G-story-1", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 23, - 25 - ], - "md5": "1916e13af140decf97981b801b6b8cc1.svg", - "type": "costume", - "name": "G-story-2", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 21, - 24 - ], - "md5": "c06fc0e4de567775c7101ca272f641c4.svg", - "type": "costume", - "name": "G-story-3", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 24, - 25 - ], - "md5": "28461ea7b94a55ce4ecf54241a0b7523.svg", - "type": "costume", - "name": "H-story-1", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 24, - 25 - ], - "md5": "57368fed2911d75446323573ba8d858d.svg", - "type": "costume", - "name": "H-story-2", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 22, - 24 - ], - "md5": "1f6e479d5c0d367dd81e41f6763b203c.svg", - "type": "costume", - "name": "H-story-3", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 9, - 26 - ], - "md5": "cdf36c8bd803819996a392089b040c3d.svg", - "type": "costume", - "name": "I-story-1", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 9, - 26 - ], - "md5": "a2dc78f1bd0fb4872a43407d1369f434.svg", - "type": "costume", - "name": "I-story-2", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 7, - 23 - ], - "md5": "27167cbc636f8ccebc529ac800a7a7a8.svg", - "type": "costume", - "name": "I-story-3", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 14, - 25 - ], - "md5": "6a10a69d1ce075a24abc8073bb402ab6.svg", - "type": "costume", - "name": "J-story-1", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 14, - 25 - ], - "md5": "72df6b70e8e557b4a9c86b7445a89ec4.svg", - "type": "costume", - "name": "J-story-2", - "tags": [ - "letters", - "drawing", - "vector" - ] - }, - { - "info": [ - 12, - 24 - ], - "md5": "bbf0fc5ef6f354b16d79103b9dd68f35.svg", - "type": "costume", - "name": "J-story-3", - "tags": [ - "letters", - "drawing", - "vector" + 73, + 96, + 1 ] }, { - "info": [ - 24, - 26 - ], - "md5": "76812d04542ffbd8aa77d593f1bced44.svg", + "name": "Giga-d", + "md5": "7708e2d9f83a01476ee6d17aa540ddf1.svg", "type": "costume", - "name": "K-story-1", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 73, + 96, + 1 ] }, { - "info": [ - 24, - 26 - ], - "md5": "5b856c7510fbd359b7934776e4efddbc.svg", + "name": "Gobo-a", + "md5": "1f5ea0d12f85aed2e471cdd21b0bd6d7.svg", "type": "costume", - "name": "K-story-2", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 47, + 55, + 1 ] }, { - "info": [ - 21, - 24 - ], - "md5": "7fd82a6d9ed3e1b321ce0747fe36c1ae.svg", + "name": "Gobo-b", + "md5": "73e493e4abd5d0954b677b97abcb7116.svg", "type": "costume", - "name": "K-story-3", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 47, + 55, + 1 ] }, { - "info": [ - 19, - 26 - ], - "md5": "444e9ceca500ef96a92879678109ef38.svg", + "name": "Gobo-c", + "md5": "bc68a6bdf300df7b53d73b38f74c844e.svg", "type": "costume", - "name": "L-story-1", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 47, + 55, + 1 ] }, { - "info": [ - 19, - 26 - ], - "md5": "7732b6881a08bdbb1dfe63bf1278b7c3.svg", + "name": "Hippo1-a", + "md5": "c1353c4a5eec5e6f32ed053e6f6e8f99.svg", "type": "costume", - "name": "L-story-2", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 69, + 65, + 1 ] }, { - "info": [ - 17, - 23 - ], - "md5": "e4ad81b0ccfbc3a29fe46ae84c9a7c89.svg", + "name": "Hippo1-b", + "md5": "e65ed93bbb9cccf698fc7e774ab609a6.svg", "type": "costume", - "name": "L-story-3", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 69, + 68, + 1 ] }, { - "info": [ - 30, - 25 - ], - "md5": "9197a1edb925c94fc912367a2943bc69.svg", + "name": "Horse1-a", + "md5": "32f4d80477cd070cb0848e555d374060.svg", "type": "costume", - "name": "M-story-1", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 119, + 83, + 1 ] }, { - "info": [ - 30, - 25 - ], - "md5": "af4c6a5942fbbd38f1530c2706a56210.svg", + "name": "Horse1-b", + "md5": "ffa6431c5ef2a4e975ecffacdb0efea7.svg", "type": "costume", - "name": "M-story-2", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 103, + 97, + 1 ] }, { - "info": [ - 27, - 24 - ], - "md5": "b279eaecace3573ac3826bc2cb97120f.svg", + "name": "Knight", + "md5": "f2c5e8bc24d001b81566879dbf2f1a13.svg", "type": "costume", - "name": "M-story-3", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 75, + 75, + 1 ] }, { - "info": [ - 26, - 25 - ], - "md5": "d604d95ad1367813fdc67c362bb9d298.svg", + "name": "Ladybug2", + "md5": "f16a1ccc69a4a8190a927f1595aa7bfa.svg", "type": "costume", - "name": "N-story-1", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 41, + 43, + 1 ] }, { - "info": [ - 26, - 25 - ], - "md5": "a26d45dff3e3e5c89e7e82ceb66dfed0.svg", + "name": "Lion-a", + "md5": "692a3c84366bf8ae4d16858e20e792f5.svg", "type": "costume", - "name": "N-story-2", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 75, + 75, + 1 ] }, { - "info": [ - 24, - 23 - ], - "md5": "c7f659dfdc45379fcba53aa2ef88a35e.svg", + "name": "Lion-b", + "md5": "a519ef168a345a2846d0201bf092a6d0.svg", "type": "costume", - "name": "N-story-3", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 75, + 75, + 1 ] }, { - "info": [ - 25, - 25 - ], - "md5": "46173e0ec42c17d22b29c88929c49f2c.svg", + "name": "Monkey2-a", + "md5": "6e4de762dbd52cd2b6356694a9668211.svg", "type": "costume", - "name": "O-story-1", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 68, + 99, + 1 ] }, { - "info": [ - 24, - 25 - ], - "md5": "f04deb4d3cdd98f1b2befcd142b0bf5b.svg", + "name": "Monkey2-b", + "md5": "7662a3a0f4c6fa21fdf2de33bd80fe5f.svg", "type": "costume", - "name": "O-story-2", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 68, + 99, + 1 ] }, { - "info": [ - 22, - 24 - ], - "md5": "fc85733bd985c0d47cfd16758ae2c8cb.svg", + "name": "Monkey2-c", + "md5": "db8eb50b948047181922310bb94511fb.svg", "type": "costume", - "name": "O-story-3", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 68, + 99, + 1 ] }, { - "info": [ - 20, - 25 - ], - "md5": "e6e5ccc4bd44680b4c21fabefc009e4f.svg", + "name": "Nano-a", + "md5": "02c5433118f508038484bbc5b111e187.svg", "type": "costume", - "name": "P-story-1", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 61, + 60, + 1 ] }, { - "info": [ - 20, - 25 - ], - "md5": "e66c22776cc623eb20f81bca8aa165cf.svg", + "name": "Nano-b", + "md5": "10d6d9130618cd092ae02158cde2e113.svg", "type": "costume", - "name": "P-story-2", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 61, + 60, + 1 ] }, { - "info": [ - 17, - 24 - ], - "md5": "2cfb9040a22a131bff10a8a13c9caec8.svg", + "name": "Nano-c", + "md5": "85e762d45bc626ca2edb3472c7cfaa32.svg", "type": "costume", - "name": "P-story-3", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 61, + 60, + 1 ] }, { - "info": [ - 25, - 30 - ], - "md5": "24c5beac46f4452bffe23e3c4e8a4a4c.svg", + "name": "Nano-d", + "md5": "b10925346da8080443f27e7dfaeff6f7.svg", "type": "costume", - "name": "Q-story-1", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 61, + 60, + 1 ] }, { - "info": [ - 25, - 30 - ], - "md5": "d616698f3c56a953bd4ef4a575fddb13.svg", + "name": "Octopus-a", + "md5": "bb68d2e29d8572ef9de06f8033e668d9.svg", "type": "costume", - "name": "Q-story-2", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 75, + 75, + 1 ] }, { - "info": [ - 22, - 29 - ], - "md5": "a65bac27711b43bc99ea6107432e4025.svg", + "name": "Octopus-b", + "md5": "b52bd3bc12553bb31b1395516c3cec4d.svg", "type": "costume", - "name": "Q-story-3", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 75, + 75, + 1 ] }, { - "info": [ - 22, - 26 - ], - "md5": "ef26045ebaccbf271ca2370ed95c73ab.svg", + "name": "Parrot-a", + "md5": "098570b8e1aa85b32f9b4eb07bea3af2.svg", "type": "costume", - "name": "R-story-1", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 86, + 106, + 1 ] }, { - "info": [ - 22, - 26 - ], - "md5": "b356086096993d15edcb63b682a9d876.svg", + "name": "Parrot-b", + "md5": "721255a0733c9d8d2ba518ff09b3b7cb.svg", "type": "costume", - "name": "R-story-2", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 49, + 31, + 1 ] }, { - "info": [ - 20, - 23 - ], - "md5": "14bf05edbcf5837310cac672138d503f.svg", + "name": "Penguin1", + "md5": "c17d9e4bdb59c574e0c34aa70af516da.svg", "type": "costume", - "name": "R-story-3", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 54, + 61, + 1 ] }, { - "info": [ - 16, - 25 - ], - "md5": "dccb5c52aa6e674d7747e172f9c52cb6.svg", + "name": "Pico-a", + "md5": "0579fe60bb3717c49dfd7743caa84ada.svg", "type": "costume", - "name": "S-story-1", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 55, + 66, + 1 ] }, { - "info": [ - 16, - 25 - ], - "md5": "82d84f69282129ccedd470aa0b409d9b.svg", + "name": "Pico-b", + "md5": "26c688d7544757225ff51cd2fb1519b5.svg", "type": "costume", - "name": "S-story-2", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 55, + 66, + 1 ] }, { - "info": [ - 14, - 23 - ], - "md5": "c1f13e9badadb81d980cd4d72d428f53.svg", + "name": "Pico-c", + "md5": "adf61e2090f8060e1e8b2b0604d03751.svg", "type": "costume", - "name": "S-story-3", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 55, + 66, + 1 ] }, { - "info": [ - 22, - 27 - ], - "md5": "0333054ad39b919687a53924b4849be9.svg", + "name": "Pico-d", + "md5": "594704bf12e3c4d9e83bb91661ad709a.svg", "type": "costume", - "name": "T-story-1", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 55, + 66, + 1 ] }, { - "info": [ - 22, - 27 - ], - "md5": "3008cfde341052f09cb8dfa242bd491e.svg", + "name": "Rainbow", + "md5": "680a806bd87a28c8b25b5f9b6347f022.svg", "type": "costume", - "name": "T-story-2", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 72, + 36, + 1 ] }, { - "info": [ - 20, - 24 - ], - "md5": "26c31c3975cffb15c26e08d516e91419.svg", + "name": "Saxophone-a", + "md5": "a09b114b0652006ac66def94548073a9.svg", "type": "costume", - "name": "T-story-3", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 69, + 80, + 1 ] }, { - "info": [ - 24, - 26 - ], - "md5": "57a7bbdd3cd819e62363ef0f151bcea0.svg", + "name": "Saxophone-b", + "md5": "366c42cc65497f5007c9377a2d4d854b.svg", "type": "costume", - "name": "U-story-1", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 69, + 80, + 1 ] }, { - "info": [ - 24, - 26 - ], - "md5": "b114abe0ecac54389069136231d51332.svg", + "name": "Shark-a ", + "md5": "7c0a907eae79462f69f8e2af8e7df828.svg", "type": "costume", - "name": "U-story-2", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 75, + 75, + 1 ] }, { - "info": [ - 21, - 24 - ], - "md5": "d8fdcaedcfe954333fd1c9ea75483283.svg", + "name": "Shark-b ", + "md5": "cff9ae87a93294693a0650b38a7a33d2.svg", "type": "costume", - "name": "U-story-3", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 75, + 75, + 1 ] }, { - "info": [ - 25, - 25 - ], - "md5": "3895ca10e7ae39bc513ba285d07cba69.svg", + "name": "Shark-c ", + "md5": "afeae3f998598424f7c50918507f6ce6.svg", "type": "costume", - "name": "V-story-1", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 77, + 37, + 1 ] }, { - "info": [ - 25, - 25 - ], - "md5": "4b30c64786d5fcbc10935a84cebb6a56.svg", + "name": "Snowman", + "md5": "56c71c31c17b9bc66a2aab0342cf94b2.svg", "type": "costume", - "name": "V-story-2", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 75, + 75, + 1 ] }, { - "info": [ - 22, - 23 - ], - "md5": "dd784ba920901e6c396a05dc9014bba0.svg", + "name": "Speaker", + "md5": "44dc3a2ec161999545914d1f77332d76.svg", "type": "costume", - "name": "V-story-3", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 53, + 79, + 1 ] }, { - "info": [ - 37, - 25 - ], - "md5": "e691a91fd45b0c302f3d954515ed164a.svg", + "name": "Tera-a", + "md5": "b54a4a9087435863ab6f6c908f1cac99.svg", "type": "costume", - "name": "W-story-1", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 49, + 63, + 1 ] }, { - "info": [ - 37, - 25 - ], - "md5": "2099a4611b2fcc80709cd622236b79fc.svg", + "name": "Tera-b", + "md5": "1e6b3a29351cda80d1a70a3cc0e499f2.svg", "type": "costume", - "name": "W-story-2", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 49, + 64, + 1 ] }, { - "info": [ - 34, - 24 - ], - "md5": "b32117931bebaca985dabf91895be077.svg", + "name": "Tera-c", + "md5": "7edf116cbb7111292361431521ae699e.svg", "type": "costume", - "name": "W-story-3", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 49, + 63, + 1 ] }, { - "info": [ - 22, - 26 - ], - "md5": "2370b2a2fd153d18d1ad0ef64565b620.svg", + "name": "Tera-d", + "md5": "7c3c9c8b5f4ac77de2036175712a777a.svg", "type": "costume", - "name": "X-story-1", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 49, + 63, + 1 ] }, { - "info": [ - 22, - 26 - ], - "md5": "e7a1d2694a229b55c0001504e31f8a3a.svg", + "name": "Unicorn", + "md5": "a04def38351e7fd805226345cac4fbfe.svg", "type": "costume", - "name": "X-story-2", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 75, + 75, + 1 ] }, { - "info": [ - 20, - 24 - ], - "md5": "775fd22b4a8a7dcfd45213e7f6000974.svg", + "name": "Watermelon-a", + "md5": "26fecef75cf3b6e0d98bff5c06475036.svg", "type": "costume", - "name": "X-story-3", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 40, + 27, + 1 ] }, { + "name": "Watermelon-b", + "md5": "fbdaf4d1d349edd3ddf3a1c4528aa9ec.svg", + "type": "costume", + "tags": [], "info": [ 22, - 27 - ], - "md5": "850386477f82d80fb0e79e5c675dd906.svg", - "type": "costume", - "name": "Y-story-1", - "tags": [ - "letters", - "drawing", - "vector" + 27, + 1 ] }, { - "info": [ - 22, - 27 - ], - "md5": "b20fe0250f4665adbd795583f45e723e.svg", + "name": "Watermelon-c", + "md5": "5976c10412306fc093c1d1930fa05119.svg", "type": "costume", - "name": "Y-story-2", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 21, + 15, + 1 ] }, { - "info": [ - 20, - 24 - ], - "md5": "10e37a53bb3dd38cb87f621e9b3d99d0.svg", + "name": "Witch", + "md5": "c991196a708294535a1dbdce7189c23c.svg", "type": "costume", - "name": "Y-story-3", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 74, + 59, + 1 ] }, { - "info": [ - 19, - 26 - ], - "md5": "9a0a64558a53fde1af44dad5fb021199.svg", + "name": "Wizard", + "md5": "4df1dd733f6ee4a2d8842478ac2c4661.svg", "type": "costume", - "name": "Z-story-1", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 76, + 86, + 1 ] }, { - "info": [ - 19, - 26 - ], - "md5": "a5e1981accf0ec38490892836e2d5635.svg", + "name": "Wizard1", + "md5": "e085c97691d16f0cc8a595ce1137e26c.svg", "type": "costume", - "name": "Z-story-2", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 134, + 153, + 1 ] }, { - "info": [ - 17, - 23 - ], - "md5": "64016d8a9bd0ca9a635cf09914edadf9.svg", + "name": "Wizard2", + "md5": "6db4d9e4229dc50a1b1c91c3c8311d40.svg", "type": "costume", - "name": "Z-story-3", - "tags": [ - "letters", - "drawing", - "vector" + "tags": [], + "info": [ + 69, + 93, + 1 ] } -] +] \ No newline at end of file diff --git a/src/lib/libraries/extensions/index.js b/src/lib/libraries/extensions/index.js index 4a03a896bba145c04175765e3b2b7ad9fa41557f..56c195fb07b95afe313c2999b11815e50aa7f253 100644 --- a/src/lib/libraries/extensions/index.js +++ b/src/lib/libraries/extensions/index.js @@ -1,19 +1,19 @@ +import musicImage from './music.png'; import penImage from './pen.png'; -import wedoImage from './wedo.png'; export default [ + { + name: 'Music', + extensionURL: 'music', + iconURL: musicImage, + description: 'Play instruments and drums.', + featured: true + }, { name: 'Pen', extensionURL: 'pen', iconURL: penImage, description: 'Draw with your sprites.', featured: true - }, - { - name: 'Lego WeDo 2.0', - extensionURL: 'wedo2', - iconURL: wedoImage, - description: 'Build with motors and sensors.', - featured: true } ]; diff --git a/src/lib/libraries/extensions/music.png b/src/lib/libraries/extensions/music.png new file mode 100644 index 0000000000000000000000000000000000000000..f8fa9aa3ed134903ea8ef4e155a2e8699bc4d97a Binary files /dev/null and b/src/lib/libraries/extensions/music.png differ diff --git a/src/lib/libraries/sounds.json b/src/lib/libraries/sounds.json index 3874581212898b8ef3a4777cf7fcde346f68efa0..9d8642c7e3c112d3990cd2ea0712d60d9f1a6297 100644 --- a/src/lib/libraries/sounds.json +++ b/src/lib/libraries/sounds.json @@ -1,1045 +1,1689 @@ [ { - "name": "boing", + "name": "A Bass", + "md5": "c04ebf21e5e19342fa1535e4efcdb43b.wav", + "sampleCount": 28160, + "rate": 22050, + "format": "" + }, + { + "name": "A Elec Bass", + "md5": "5cb46ddd903fc2c9976ff881df9273c9.wav", + "sampleCount": 5920, + "rate": 22050, + "format": "" + }, + { + "name": "A Elec Guitar", + "md5": "fa5f7fea601e9368dd68449d9a54c995.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "name": "A Elec Piano", + "md5": "0cfa8e84d6a5cd63afa31d541625a9ef.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "name": "A Guitar", + "md5": "ee753e87d212d4b2fb650ca660f1e839.wav", + "sampleCount": 31872, + "rate": 22050, + "format": "" + }, + { + "name": "A Minor Ukulele", + "md5": "69d25af0fd065da39c71439174efc589.wav", + "sampleCount": 18267, + "rate": 22050, + "format": "" + }, + { + "name": "A Piano", + "md5": "0727959edb2ea0525feed9b0c816991c.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "name": "A Sax", + "md5": "420991e0d6d99292c6d736963842536a.wav", + "sampleCount": 6472, + "rate": 22050, + "format": "" + }, + { + "name": "A Trombone", + "md5": "863ccc8ba66e6dabbce2a1261c22be0f.wav", + "sampleCount": 17227, + "rate": 22050, + "format": "adpcm" + }, + { + "name": "A Trumpet", + "md5": "d2dd6b4372ca17411965dc92d52b2172.wav", + "sampleCount": 13911, + "rate": 22050, + "format": "" + }, + { + "name": "Afro String", + "md5": "3477ccfde26047eeb93ff43a21ac7d3d.wav", + "sampleCount": 9807, + "rate": 11025, + "format": "" + }, + { + "name": "Alien Creak1", + "md5": "0377a7476136e5e8c780c64a4828922d.wav", + "sampleCount": 8045, + "rate": 11025, + "format": "" + }, + { + "name": "Alien Creak2", + "md5": "21f82b7f1a83c501539c5031aea4fa8c.wav", + "sampleCount": 8300, + "rate": 11025, + "format": "" + }, + { + "name": "B Bass", + "md5": "e31dcaf7bcdf58ac2a26533c48936c45.wav", + "sampleCount": 25792, + "rate": 22050, + "format": "" + }, + { + "name": "B Elec Bass", + "md5": "5a0701d0a914223b5288300ac94e90e4.wav", + "sampleCount": 6208, + "rate": 22050, + "format": "" + }, + { + "name": "B Elec Guitar", + "md5": "81f142d0b00189703d7fe9b1f13f6f87.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "name": "B Elec Piano", + "md5": "9cc77167419f228503dd57fddaa5b2a6.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "name": "B Guitar", + "md5": "2ae2d67de62df8ca54d638b4ad2466c3.wav", + "sampleCount": 29504, + "rate": 22050, + "format": "" + }, + { + "name": "B Piano", + "md5": "86826c6022a46370ed1afae69f1ab1b9.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "name": "B Sax", + "md5": "653ebe92d491b49ad5d8101d629f567b.wav", + "sampleCount": 9555, + "rate": 22050, + "format": "" + }, + { + "name": "B Trombone", + "md5": "85b663229525b73d9f6647f78eb23e0a.wav", + "sampleCount": 15522, + "rate": 22050, + "format": "" + }, + { + "name": "B Trumpet", + "md5": "cad2bc57729942ed9b605145fc9ea65d.wav", + "sampleCount": 14704, + "rate": 22050, + "format": "" + }, + { + "name": "Bass Beatbox", + "md5": "28153621d293c86da0b246d314458faf.wav", + "sampleCount": 6720, + "rate": 22050, + "format": "" + }, + { + "name": "Beat Box1", + "md5": "663270af0235bf14c890ba184631675f.wav", + "sampleCount": 5729, + "rate": 11025, + "format": "" + }, + { + "name": "Beat Box2", + "md5": "b9b8073f6aa9a60085ad11b0341a4af2.wav", + "sampleCount": 5729, + "rate": 11025, + "format": "" + }, + { + "name": "Bell Cymbal", + "md5": "efddec047de95492f775a1b5b2e8d19e.wav", + "sampleCount": 19328, + "rate": 22050, + "format": "" + }, + { + "name": "Bell Toll", + "md5": "25d61e79cbeba4041eebeaebd7bf9598.wav", + "sampleCount": 45168, + "rate": 11025, + "format": "" + }, + { + "name": "Bird", + "md5": "18bd4b634a3f992a16b30344c7d810e0.wav", + "sampleCount": 3840, + "rate": 11025, + "format": "" + }, + { + "name": "Birthday", + "md5": "e8df0951694293fe17850260b4d12734.wav", + "sampleCount": 167040, + "rate": 22050, + "format": "" + }, + { + "name": "Birthday Bells", + "md5": "89691587a169d935a58c48c3d4e78534.wav", + "sampleCount": 161408, + "rate": 22050, + "format": "" + }, + { + "name": "Birthday Song", + "md5": "89691587a169d935a58c48c3d4e78534.wav", + "sampleCount": 161408, + "rate": 22050, + "format": "" + }, + { + "name": "Boing", "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", "sampleCount": 6804, "rate": 22050, "format": "adpcm" }, { - "name": "chomp", + "name": "Bubbles", + "md5": "78b0be9c9c2f664158b886bc7e794095.wav", + "sampleCount": 45056, + "rate": 11025, + "format": "" + }, + { + "name": "Buzz Whir", + "md5": "d4f76ded6bccd765958d15b63804de55.wav", + "sampleCount": 9037, + "rate": 11025, + "format": "" + }, + { + "name": "C Bass", + "md5": "c3566ec797b483acde28f790994cc409.wav", + "sampleCount": 44608, + "rate": 22050, + "format": "" + }, + { + "name": "C Elec Bass", + "md5": "69eee3d038ea0f1c34ec9156a789236d.wav", + "sampleCount": 5216, + "rate": 22050, + "format": "" + }, + { + "name": "C Elec Guitar", + "md5": "0d340de02e14bebaf8dfa0e43eb3f1f9.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "name": "C Elec Piano", + "md5": "8366ee963cc57ad24a8a35a26f722c2b.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "name": "C Guitar", + "md5": "22baa07795a9a524614075cdea543793.wav", + "sampleCount": 44864, + "rate": 22050, + "format": "" + }, + { + "name": "C Major Ukulele", + "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", + "sampleCount": 18203, + "rate": 22050, + "format": "" + }, + { + "name": "C Piano", + "md5": "d27ed8d953fe8f03c00f4d733d31d2cc.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "name": "C Sax", + "md5": "4d2c939d6953b5f241a27a62cf72de64.wav", + "sampleCount": 9491, + "rate": 22050, + "format": "" + }, + { + "name": "C Trombone", + "md5": "821b23a489201a0f21f47ba8528ba47f.wav", + "sampleCount": 19053, + "rate": 22050, + "format": "" + }, + { + "name": "C Trumpet", + "md5": "8970afcdc4e47bb54959a81fe27522bd.wav", + "sampleCount": 13118, + "rate": 22050, + "format": "" + }, + { + "name": "C2 Bass", + "md5": "667d6c527b79321d398e85b526f15b99.wav", + "sampleCount": 24128, + "rate": 22050, + "format": "" + }, + { + "name": "C2 Elec Bass", + "md5": "56fc995b8860e713c5948ecd1c2ae572.wav", + "sampleCount": 5792, + "rate": 22050, + "format": "" + }, + { + "name": "C2 Elec Guitar", + "md5": "3a8ed3129f22cba5b0810bc030d16b5f.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "name": "C2 Elec Piano", + "md5": "366c7edbd4dd5cca68bf62902999bd66.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "name": "C2 Guitar", + "md5": "c8d2851bd99d8e0ce6c1f05e4acc7f34.wav", + "sampleCount": 27712, + "rate": 22050, + "format": "" + }, + { + "name": "C2 Piano", + "md5": "75d7d2c9b5d40dd4e1cb268111abf1a2.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "name": "C2 Sax", + "md5": "ea8d34b18c3d8fe328cea201666458bf.wav", + "sampleCount": 7349, + "rate": 22050, + "format": "adpcm" + }, + { + "name": "C2 Trombone", + "md5": "68aec107bd3633b2ee40c532eedc3897.wav", + "sampleCount": 13904, + "rate": 22050, + "format": "" + }, + { + "name": "C2 Trumpet", + "md5": "df08249ed5446cc5e10b7ac62faac89b.wav", + "sampleCount": 15849, + "rate": 22050, + "format": "" + }, + { + "name": "Car Passing", + "md5": "c21a5ad00b40b5ce923e56c905c94a9f.wav", + "sampleCount": 84992, + "rate": 11025, + "format": "" + }, + { + "name": "Cave", + "md5": "881f1bf5f301a36efcce4204a44af9ab.wav", + "sampleCount": 163584, + "rate": 22050, + "format": "adpcm" + }, + { + "name": "Chee Chee", + "md5": "25f4826cdd61e0a1c623ec2324c16ca0.wav", + "sampleCount": 34560, + "rate": 22050, + "format": "" + }, + { + "name": "Cheer", + "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", + "sampleCount": 62528, + "rate": 22050, + "format": "" + }, + { + "name": "Chomp", "md5": "0b1e3033140d094563248e61de4039e5.wav", "sampleCount": 2912, "rate": 11025, "format": "" }, { - "name": "gong", - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, + "name": "Chord", + "md5": "7ffe91cce06c5415df53610d173336e7.wav", + "sampleCount": 20608, "rate": 11025, "format": "" }, { - "name": "pop", - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "name": "Clap Beatbox", + "md5": "abc70bb390f8e55f22f32265500d814a.wav", + "sampleCount": 4224, + "rate": 22050, "format": "" }, { - "name": "space ripple", - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, + "name": "Clapping", + "md5": "684ffae7bc3a65e35e9f0aaf7a579dd5.wav", + "sampleCount": 84160, + "rate": 22050, + "format": "" + }, + { + "name": "Computer Beeps1", + "md5": "1da43f6d52d0615da8a250e28100a80d.wav", + "sampleCount": 19200, "rate": 11025, "format": "" }, { - "name": "beeps", - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", + "name": "Computer Beeps2", + "md5": "28c76b6bebd04be1383fe9ba4933d263.wav", "sampleCount": 9536, "rate": 11025, "format": "" }, { - "name": "woof", - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, + "name": "Cough-female", + "md5": "98ec3e1eeb7893fca519aa52cc1ef3c1.wav", + "sampleCount": 7516, + "rate": 11025, + "format": "" + }, + { + "name": "Cough-male", + "md5": "467fe8ef3cab475af4b3088fd1261510.wav", + "sampleCount": 16612, "rate": 22050, "format": "" }, { - "name": "squawk", - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, + "name": "Crash Beatbox", + "md5": "725e29369e9138a43f11e0e5eb3eb562.wav", + "sampleCount": 26883, "rate": 22050, "format": "" }, { - "name": "cheer", - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, + "name": "Crash Cymbal", + "md5": "f2c47a46f614f467a7ac802ed9ec3d8e.wav", + "sampleCount": 25220, "rate": 22050, "format": "" }, { - "name": "wub", - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, + "name": "Cricket", + "md5": "a2b3cac37065c109aac17ed46005445e.wav", + "sampleCount": 3673, "rate": 22050, "format": "" }, { - "name": "hey", - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, + "name": "Crickets", + "md5": "cae6206eb3c57bb8c4b3e2ca362dfa6d.wav", + "sampleCount": 92160, + "rate": 22050, + "format": "" + }, + { + "name": "Cymbal", + "md5": "7c5405a9cf561f65a941aff10e661593.wav", + "sampleCount": 24118, "rate": 22050, "format": "adpcm" }, { - "name": "C major ukulele", - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, + "name": "Cymbal Crash", + "md5": "fa2c9da1d4fd70207ab749851853cb50.wav", + "sampleCount": 25219, "rate": 22050, "format": "" }, { - "name": "dance loop", - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "name": "Cymbal Echo", + "md5": "bb243badd1201b2607bf2513df10cd97.wav", + "sampleCount": 44326, "rate": 22050, "format": "" }, { - "name": "funky loop", - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, + "name": "D Bass", + "md5": "5a3ae8a2665f50fdc38cc301fbac79ba.wav", + "sampleCount": 40192, + "rate": 22050, + "format": "" + }, + { + "name": "D Elec Bass", + "md5": "67a6d1aa68233a2fa641aee88c7f051f.wav", + "sampleCount": 5568, + "rate": 22050, + "format": "" + }, + { + "name": "D Elec Guitar", + "md5": "1b5de9866801eb2f9d4f57c7c3b473f5.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "name": "D Elec Piano", + "md5": "835f136ca8d346a17b4d4baf8405be37.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "name": "D Guitar", + "md5": "2dbcfae6a55738f94bbb40aa5fcbf7ce.wav", + "sampleCount": 41120, + "rate": 22050, + "format": "" + }, + { + "name": "D Piano", + "md5": "51381ac422605ee8c7d64cfcbfd75efc.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "name": "D Sax", + "md5": "39f41954a73c0e15d842061e1a4c5e1d.wav", + "sampleCount": 9555, + "rate": 22050, + "format": "" + }, + { + "name": "D Trombone", + "md5": "f3afca380ba74372d611d3f518c2f35b.wav", + "sampleCount": 17339, + "rate": 22050, + "format": "" + }, + { + "name": "D Trumpet", + "md5": "0b1345b8fe2ba3076fedb4f3ae48748a.wav", + "sampleCount": 12702, + "rate": 22050, + "format": "" + }, + { + "name": "Dance Around", + "md5": "8bcea76415eaf98ec1cbc3825845b934.wav", + "sampleCount": 343746, "rate": 22050, "format": "adpcm" }, { - "name": "dance celebrate", + "name": "Dance Celebrate", "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav", "sampleCount": 176401, "rate": 22050, "format": "adpcm" }, { - "name": "odesong-b", - "md5": "2c41921491b1da2bfa1ebcaba34265ca.wav", - "sampleCount": 212553, + "name": "Dance Chill Out", + "md5": "b235da45581b1f212c9e9cce70d2a2dc.wav", + "sampleCount": 222822, "rate": 22050, "format": "adpcm" }, { - "name": "C bass", - "md5": "c3566ec797b483acde28f790994cc409.wav", - "sampleCount": 44608, + "name": "Dance Funky", + "md5": "a8383eaddc02d33714dc5832c02ccf13.wav", + "sampleCount": 111412, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "name": "D bass", - "md5": "5a3ae8a2665f50fdc38cc301fbac79ba.wav", - "sampleCount": 40192, + "name": "Dance Head Nod", + "md5": "65e8a47d55df3f4cb17722959f6220db.wav", + "sampleCount": 124519, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "name": "E bass", - "md5": "0657e39bae81a232b01a18f727d3b891.wav", - "sampleCount": 36160, + "name": "Dance Magic", + "md5": "042309f190183383c0b1c1fc3edc2e84.wav", + "sampleCount": 187200, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "name": "F bass", - "md5": "ea21bdae86f70d60b28f1dddcf50d104.wav", - "sampleCount": 34368, + "name": "Dance Slow Mo", + "md5": "329ee6f3418c0a569418e102e620edf0.wav", + "sampleCount": 445643, + "rate": 22050, + "format": "adpcm" + }, + { + "name": "Dance Snare Beat", + "md5": "562587bdb75e3a8124cdaa46ba0f648b.wav", + "sampleCount": 176401, + "rate": 22050, + "format": "adpcm" + }, + { + "name": "Dance Space", + "md5": "e15333f5ffaf08e145ace1610fccd67d.wav", + "sampleCount": 88200, + "rate": 22050, + "format": "adpcm" + }, + { + "name": "Dog1", + "md5": "b15adefc3c12f758b6dc6a045362532f.wav", + "sampleCount": 3672, "rate": 22050, "format": "" }, { - "name": "G bass", - "md5": "05c192194e8f1944514dce3833e33439.wav", - "sampleCount": 30976, + "name": "Dog2", + "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", + "sampleCount": 3168, "rate": 22050, "format": "" }, { - "name": "A bass", - "md5": "c04ebf21e5e19342fa1535e4efcdb43b.wav", - "sampleCount": 28160, + "name": "Door Creak", + "md5": "56985da9c052a5e26007c99aa5a958f7.wav", + "sampleCount": 54272, + "rate": 11025, + "format": "" + }, + { + "name": "Drip Drop", + "md5": "3249e61fa135d0a1d68ff515ba3bd92f.wav", + "sampleCount": 62680, + "rate": 22050, + "format": "adpcm" + }, + { + "name": "Drive Around", + "md5": "a3a85fb8564b0266f50a9c091087b7aa.wav", + "sampleCount": 44096, "rate": 22050, "format": "" }, { - "name": "B bass", - "md5": "e31dcaf7bcdf58ac2a26533c48936c45.wav", - "sampleCount": 25792, + "name": "Drum", + "md5": "f730246174873cd4ae4127c83e475b50.wav", + "sampleCount": 107136, + "rate": 22050, + "format": "adpcm" + }, + { + "name": "Drum Bass1", + "md5": "48328c874353617451e4c7902cc82817.wav", + "sampleCount": 6528, "rate": 22050, "format": "" }, { - "name": "C2 bass", - "md5": "667d6c527b79321d398e85b526f15b99.wav", - "sampleCount": 24128, + "name": "Drum Bass2", + "md5": "711a1270d1cf2e5de9b145ee539213e4.wav", + "sampleCount": 3791, + "rate": 22050, + "format": "adpcm" + }, + { + "name": "Drum Bass3", + "md5": "c21704337b16359ea631b5f8eb48f765.wav", + "sampleCount": 8576, "rate": 22050, "format": "" }, { - "name": "plunge", - "md5": "c09455ee9da0e7eeead42d4e73c2555d.wav", - "sampleCount": 22400, + "name": "Drum Buzz", + "md5": "3650dc4262bcc5010c0d8fa8d7c670cf.wav", + "sampleCount": 5742, "rate": 11025, "format": "" }, { - "name": "meow", - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, + "name": "Drum Funky", + "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", + "sampleCount": 44748, + "rate": 22050, + "format": "adpcm" + }, + { + "name": "Drum Jam", + "md5": "8b5486ccc806e97e83049d25b071f7e4.wav", + "sampleCount": 44288, "rate": 22050, "format": "" }, { - "name": "xylo1", - "md5": "6ac484e97c1c1fe1384642e26a125e70.wav", - "sampleCount": 238232, + "name": "Drum Machine", + "md5": "f9d53d773b42e16df3dfca6174015592.wav", + "sampleCount": 105984, "rate": 22050, "format": "adpcm" }, { - "name": "bell toll", - "md5": "25d61e79cbeba4041eebeaebd7bf9598.wav", - "sampleCount": 45168, - "rate": 11025, + "name": "Drum Satellite", + "md5": "079067d7909f791b29f8be1c00fc2131.wav", + "sampleCount": 44096, + "rate": 22050, "format": "" }, { - "name": "water drop", - "md5": "aa488de9e2c871e9d4faecd246ed737a.wav", - "sampleCount": 8136, + "name": "Drum Set1", + "md5": "38a2bb8129bddb4e8eaa06781cfa3040.wav", + "sampleCount": 46080, "rate": 22050, "format": "adpcm" }, { - "name": "strum", - "md5": "b92de59d992a655c1b542223a784cda6.wav", - "sampleCount": 11247, + "name": "Drum Set2", + "md5": "738e871fda577295e8beb9021f670e28.wav", + "sampleCount": 37440, + "rate": 22050, + "format": "adpcm" + }, + { + "name": "Duck", + "md5": "af5b039e1b05e0ccb12944f648a8884e.wav", + "sampleCount": 5792, "rate": 22050, "format": "" }, { - "name": "meow2", - "md5": "cf51a0c4088942d95bcc20af13202710.wav", - "sampleCount": 6512, - "rate": 11025, + "name": "E Bass", + "md5": "0657e39bae81a232b01a18f727d3b891.wav", + "sampleCount": 36160, + "rate": 22050, "format": "" }, { - "name": "ripples", - "md5": "4da8a805673c288965e1e5535c3f7f2b.wav", - "sampleCount": 10144, - "rate": 11025, + "name": "E Elec Bass", + "md5": "0704b8ceabe54f1dcedda8c98f1119fd.wav", + "sampleCount": 5691, + "rate": 22050, + "format": "" + }, + { + "name": "E Elec Guitar", + "md5": "2e6a6ae3e0f72bf78c74def8130f459a.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "name": "E Elec Piano", + "md5": "ab3c198f8e36efff14f0a5bad35fa3cd.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "name": "E Guitar", + "md5": "4b5d1da83e59bf35578324573c991666.wav", + "sampleCount": 38400, + "rate": 22050, + "format": "" + }, + { + "name": "E Piano", + "md5": "c818fdfaf8a0efcb562e24e794700a57.wav", + "sampleCount": 44100, + "rate": 22050, + "format": "" + }, + { + "name": "E Sax", + "md5": "3568b7dfe173fab6877a9ff1dcbcf1aa.wav", + "sampleCount": 7489, + "rate": 22050, "format": "" }, { - "name": "dance snare beat", - "md5": "562587bdb75e3a8124cdaa46ba0f648b.wav", - "sampleCount": 176401, + "name": "E Trombone", + "md5": "c859fb0954acaa25c4b329df5fb76434.wav", + "sampleCount": 16699, "rate": 22050, - "format": "adpcm" + "format": "" }, { - "name": "small cowbell", - "md5": "e29154f53f56f96f8a3292bdcddcec54.wav", - "sampleCount": 9718, + "name": "E Trumpet", + "md5": "494295a92314cadb220945a6711c568c.wav", + "sampleCount": 8680, "rate": 22050, "format": "adpcm" }, { - "name": "large cowbell", - "md5": "006316650ffc673dc02d36aa55881327.wav", - "sampleCount": 20856, + "name": "Eggs", + "md5": "659de1f3826ece8dbeca948884835f14.wav", + "sampleCount": 336480, "rate": 22050, "format": "adpcm" }, { - "name": "crash cymbal", - "md5": "f2c47a46f614f467a7ac802ed9ec3d8e.wav", - "sampleCount": 25220, + "name": "Elec Piano A Minor", + "md5": "8fe470b5f2fb58364b153fe647adcbbf.wav", + "sampleCount": 44100, "rate": 22050, "format": "" }, { - "name": "hihat cymbal", - "md5": "2d01f60d0f20ab39facbf707899c6b2a.wav", - "sampleCount": 2752, + "name": "Elec Piano C Major", + "md5": "228429930dfc60f48d75ce8e14291416.wav", + "sampleCount": 44100, "rate": 22050, "format": "" }, { - "name": "splash cymbal", - "md5": "9d63ed5be96c43b06492e8b4a9cea8d8.wav", - "sampleCount": 9600, + "name": "Elec Piano F Major", + "md5": "740098316ed06d9a64c14b93f65c5da5.wav", + "sampleCount": 44100, "rate": 22050, "format": "" }, { - "name": "roll cymbal", - "md5": "da8355d753cd2a5ddd19cb2bb41c1547.wav", - "sampleCount": 26432, + "name": "Elec Piano G Major", + "md5": "5a5f5de80bcdf782250e889747b374bd.wav", + "sampleCount": 43908, "rate": 22050, "format": "" }, { - "name": "bell cymbal", - "md5": "efddec047de95492f775a1b5b2e8d19e.wav", - "sampleCount": 19328, + "name": "Elec Piano Loop", + "md5": "7b4822ccca655db47de0880bab0e7bd9.wav", + "sampleCount": 43844, "rate": 22050, "format": "" }, { - "name": "dog1", - "md5": "b15adefc3c12f758b6dc6a045362532f.wav", - "sampleCount": 3672, + "name": "F Bass", + "md5": "ea21bdae86f70d60b28f1dddcf50d104.wav", + "sampleCount": 34368, "rate": 22050, "format": "" }, { - "name": "dog2", - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, + "name": "F Elec Bass", + "md5": "45eedb4ce62a9cbbd2207824b94a4641.wav", + "sampleCount": 5312, "rate": 22050, "format": "" }, { - "name": "bird", - "md5": "18bd4b634a3f992a16b30344c7d810e0.wav", - "sampleCount": 3840, - "rate": 11025, + "name": "F Elec Guitar", + "md5": "5eb00f15f21f734986aa45156d44478d.wav", + "sampleCount": 44100, + "rate": 22050, "format": "" }, { - "name": "drum bass1", - "md5": "48328c874353617451e4c7902cc82817.wav", - "sampleCount": 6528, + "name": "F Elec Piano", + "md5": "dc5e368fc0d0dad1da609bfc3e29aa15.wav", + "sampleCount": 44100, "rate": 22050, "format": "" }, { - "name": "drum bass2", - "md5": "711a1270d1cf2e5de9b145ee539213e4.wav", - "sampleCount": 3791, + "name": "F Guitar", + "md5": "b51d086aeb1921ec405561df52ecbc50.wav", + "sampleCount": 36416, "rate": 22050, - "format": "adpcm" + "format": "" }, { - "name": "drum bass3", - "md5": "c21704337b16359ea631b5f8eb48f765.wav", - "sampleCount": 8576, + "name": "F Major Ukulele", + "md5": "cd0ab5d1b0120c6ed92a1654ccf81376.wav", + "sampleCount": 18235, "rate": 22050, "format": "" }, { - "name": "high conga", - "md5": "16144544de90e98a92a265d4fc3241ea.wav", - "sampleCount": 8192, + "name": "F Piano", + "md5": "cdab3cce84f74ecf53e3941c6a003b5e.wav", + "sampleCount": 44100, "rate": 22050, "format": "" }, { - "name": "low conga", - "md5": "0b6f94487cd8a1cf0bb77e15966656c3.wav", - "sampleCount": 8384, + "name": "F Sax", + "md5": "2ae3083817bcd595e26ea2884b6684d5.wav", + "sampleCount": 7361, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "name": "muted conga", - "md5": "1d4abbe3c9bfe198a88badb10762de75.wav", - "sampleCount": 4544, + "name": "F Trombone", + "md5": "d6758470457aac2aa712717a676a5163.wav", + "sampleCount": 19373, "rate": 22050, "format": "" }, { - "name": "tap conga", - "md5": "fd9a67157f57f9cc6fe3cdce38a6d4a8.wav", - "sampleCount": 6880, + "name": "F Trumpet", + "md5": "5fa3108b119ca266029b4caa340a7cd0.wav", + "sampleCount": 12766, "rate": 22050, "format": "" }, { - "name": "tap snare", - "md5": "d55b3954d72c6275917f375e49b502f3.wav", - "sampleCount": 3296, + "name": "Fairydust", + "md5": "b92de59d992a655c1b542223a784cda6.wav", + "sampleCount": 11247, "rate": 22050, "format": "" }, { - "name": "sidestick snare", - "md5": "f6868ee5cf626fc4ef3ca1119dc95592.wav", - "sampleCount": 2336, - "rate": 22050, + "name": "Finger Snap", + "md5": "99d02ffb3212d86b3e5b173b6f33f835.wav", + "sampleCount": 1985, + "rate": 11025, "format": "" }, { - "name": "flam snare", + "name": "Flam Snare", "md5": "3b6cce9f8c56c0537ca61eee3945cd1d.wav", "sampleCount": 4416, "rate": 22050, "format": "" }, { - "name": "hi na tabla", - "md5": "35b42d98c43404a5b1b52fb232a62bd7.wav", - "sampleCount": 4096, - "rate": 22050, + "name": "Footsteps-1", + "md5": "c893b0a9b3e2e0594f1f921a12aa66be.wav", + "sampleCount": 58880, + "rate": 11025, "format": "" }, { - "name": "hi tun tabla", - "md5": "da734693dfa6a9a7eccdc7f9a0ca9840.wav", - "sampleCount": 18656, + "name": "G Bass", + "md5": "05c192194e8f1944514dce3833e33439.wav", + "sampleCount": 30976, "rate": 22050, "format": "" }, { - "name": "lo gliss tabla", - "md5": "d7cd24689737569c93e7ea7344ba6b0e.wav", - "sampleCount": 7008, + "name": "G Elec Bass", + "md5": "97b187d72219b994a6ef6a5a6b09605c.wav", + "sampleCount": 5568, "rate": 22050, "format": "" }, { - "name": "lo geh tabla", - "md5": "9205359ab69d042ed3da8a160a651690.wav", - "sampleCount": 30784, + "name": "G Elec Guitar", + "md5": "cd0d0e7dad415b2ffa2ba7a61860eaf8.wav", + "sampleCount": 44100, "rate": 22050, "format": "" }, { - "name": "high tom", - "md5": "d623f99b3c8d33932eb2c6c9cfd817c5.wav", - "sampleCount": 12320, + "name": "G Elec Piano", + "md5": "39525f6545d62a95d05153f92d63301a.wav", + "sampleCount": 44100, "rate": 22050, "format": "" }, { - "name": "low tom", - "md5": "1569bbbd8952b0575e5a5cb5aefb50ba.wav", - "sampleCount": 20000, + "name": "G Guitar", + "md5": "98a835713ecea2f3ef9f4f442d52ad20.wav", + "sampleCount": 33600, "rate": 22050, "format": "" }, { - "name": "duck", - "md5": "af5b039e1b05e0ccb12944f648a8884e.wav", - "sampleCount": 5792, + "name": "G Piano", + "md5": "42bb2ed28e7023e111b33220e1594a6f.wav", + "sampleCount": 44100, "rate": 22050, "format": "" }, { - "name": "C guitar", - "md5": "22baa07795a9a524614075cdea543793.wav", - "sampleCount": 44864, + "name": "G Sax", + "md5": "cefba5de46adfe5702485e0934bb1e13.wav", + "sampleCount": 7349, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "name": "D guitar", - "md5": "2dbcfae6a55738f94bbb40aa5fcbf7ce.wav", - "sampleCount": 41120, + "name": "G Trombone", + "md5": "9436fd7a0eacb4a6067e7db14236dde1.wav", + "sampleCount": 17179, "rate": 22050, "format": "" }, { - "name": "E guitar", - "md5": "4b5d1da83e59bf35578324573c991666.wav", - "sampleCount": 38400, + "name": "G Trumpet", + "md5": "e84afda25975f14b364118591538ccf4.wav", + "sampleCount": 14640, "rate": 22050, "format": "" }, { - "name": "F guitar", - "md5": "b51d086aeb1921ec405561df52ecbc50.wav", - "sampleCount": 36416, + "name": "G Ukulele", + "md5": "d20218f92ee606277658959005538e2d.wav", + "sampleCount": 18235, "rate": 22050, "format": "" }, { - "name": "G guitar", - "md5": "98a835713ecea2f3ef9f4f442d52ad20.wav", - "sampleCount": 33600, + "name": "Garden", + "md5": "7c25f6d39011cd2ee5ffb1af539d9d0c.wav", + "sampleCount": 371520, "rate": 22050, + "format": "adpcm" + }, + { + "name": "Gong", + "md5": "9d30c38443691e9626d510546d98327c.wav", + "sampleCount": 114432, + "rate": 11025, "format": "" }, { - "name": "A guitar", - "md5": "ee753e87d212d4b2fb650ca660f1e839.wav", - "sampleCount": 31872, + "name": "Goose", + "md5": "16a3b9d516e125cdb2ad74cd8d205d71.wav", + "sampleCount": 8208, "rate": 22050, "format": "" }, { - "name": "B guitar", - "md5": "2ae2d67de62df8ca54d638b4ad2466c3.wav", - "sampleCount": 29504, + "name": "Guitar Chords1", + "md5": "2b1a5bc63580d8625cf24ff3d7622c0b.wav", + "sampleCount": 123264, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "name": "C2 guitar", - "md5": "c8d2851bd99d8e0ce6c1f05e4acc7f34.wav", - "sampleCount": 27712, + "name": "Guitar Chords2", + "md5": "e956f15da397a13fae0c90d9fe4571fb.wav", + "sampleCount": 158976, "rate": 22050, + "format": "adpcm" + }, + { + "name": "Guitar Strum", + "md5": "29000fa713f70765147ee0551fa42d9e.wav", + "sampleCount": 25216, + "rate": 11025, "format": "" }, { - "name": "C elec bass", - "md5": "69eee3d038ea0f1c34ec9156a789236d.wav", - "sampleCount": 5216, + "name": "Hand Clap", + "md5": "9502142875e67f7b0292a117a27e9563.wav", + "sampleCount": 2464, "rate": 22050, "format": "" }, { - "name": "D elec bass", - "md5": "67a6d1aa68233a2fa641aee88c7f051f.wav", - "sampleCount": 5568, + "name": "Hey", + "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", + "sampleCount": 5414, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "name": "E elec bass", - "md5": "0704b8ceabe54f1dcedda8c98f1119fd.wav", - "sampleCount": 5691, + "name": "Hi Beatbox", + "md5": "5a07847bf246c227204728b05a3fc8f3.wav", + "sampleCount": 5856, "rate": 22050, "format": "" }, { - "name": "F elec bass", - "md5": "45eedb4ce62a9cbbd2207824b94a4641.wav", - "sampleCount": 5312, + "name": "Hi Na Tabla", + "md5": "35b42d98c43404a5b1b52fb232a62bd7.wav", + "sampleCount": 4096, "rate": 22050, "format": "" }, { - "name": "G elec bass", - "md5": "97b187d72219b994a6ef6a5a6b09605c.wav", - "sampleCount": 5568, + "name": "Hi Tun Tabla", + "md5": "da734693dfa6a9a7eccdc7f9a0ca9840.wav", + "sampleCount": 18656, "rate": 22050, "format": "" }, { - "name": "A elec bass", - "md5": "5cb46ddd903fc2c9976ff881df9273c9.wav", - "sampleCount": 5920, + "name": "High Conga", + "md5": "16144544de90e98a92a265d4fc3241ea.wav", + "sampleCount": 8192, "rate": 22050, "format": "" }, { - "name": "B elec bass", - "md5": "5a0701d0a914223b5288300ac94e90e4.wav", - "sampleCount": 6208, + "name": "High Hat", + "md5": "0d91b2759ac861d156235f5ecf8d3218.wav", + "sampleCount": 2757, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "name": "C2 elec bass", - "md5": "56fc995b8860e713c5948ecd1c2ae572.wav", - "sampleCount": 5792, + "name": "High Tom", + "md5": "d623f99b3c8d33932eb2c6c9cfd817c5.wav", + "sampleCount": 12320, "rate": 22050, "format": "" }, { - "name": "C elec guitar", - "md5": "0d340de02e14bebaf8dfa0e43eb3f1f9.wav", - "sampleCount": 44100, + "name": "Hihat Beatbox", + "md5": "5a07847bf246c227204728b05a3fc8f3.wav", + "sampleCount": 5856, "rate": 22050, "format": "" }, { - "name": "D elec guitar", - "md5": "1b5de9866801eb2f9d4f57c7c3b473f5.wav", - "sampleCount": 44100, + "name": "Hihat Cymbal", + "md5": "2d01f60d0f20ab39facbf707899c6b2a.wav", + "sampleCount": 2752, "rate": 22050, "format": "" }, { - "name": "E elec guitar", - "md5": "2e6a6ae3e0f72bf78c74def8130f459a.wav", - "sampleCount": 44100, + "name": "Hip Hop", + "md5": "7ed8ce1853bde6dcbc6f7f5a1c65ae47.wav", + "sampleCount": 108864, "rate": 22050, + "format": "adpcm" + }, + { + "name": "Horse", + "md5": "45ffcf97ee2edca0199ff5aa71a5b72e.wav", + "sampleCount": 14464, + "rate": 11025, "format": "" }, { - "name": "F elec guitar", - "md5": "5eb00f15f21f734986aa45156d44478d.wav", - "sampleCount": 44100, - "rate": 22050, + "name": "Horse Gallop", + "md5": "058a34b5fb8b57178b5322d994b6b8c8.wav", + "sampleCount": 38336, + "rate": 11025, "format": "" }, { - "name": "G elec guitar", - "md5": "cd0d0e7dad415b2ffa2ba7a61860eaf8.wav", - "sampleCount": 44100, + "name": "Human Beatbox1", + "md5": "37f37455c35fea71449926eb0bff05dd.wav", + "sampleCount": 103680, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "name": "A elec guitar", - "md5": "fa5f7fea601e9368dd68449d9a54c995.wav", - "sampleCount": 44100, + "name": "Human Beatbox2", + "md5": "f62e9f7deeb0e06268df6edffa14f5de.wav", + "sampleCount": 62392, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "name": "B elec guitar", - "md5": "81f142d0b00189703d7fe9b1f13f6f87.wav", - "sampleCount": 44100, + "name": "Jungle", + "md5": "b234a04cc3958437c43ed3d93f34a345.wav", + "sampleCount": 76032, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "name": "C2 elec guitar", - "md5": "3a8ed3129f22cba5b0810bc030d16b5f.wav", - "sampleCount": 44100, + "name": "Kick Back", + "md5": "9cd340d9d568b1479f731e69e103b3ce.wav", + "sampleCount": 44748, "rate": 22050, - "format": "" + "format": "adpcm" + }, + { + "name": "Kick Drum", + "md5": "711a1270d1cf2e5de9b145ee539213e4.wav", + "sampleCount": 3791, + "rate": 22050, + "format": "adpcm" }, { - "name": "xylo3", - "md5": "3395cade6d7c0cc9ce73a8c12f40319b.wav", - "sampleCount": 209502, + "name": "Large Cowbell", + "md5": "006316650ffc673dc02d36aa55881327.wav", + "sampleCount": 20856, "rate": 22050, + "format": "adpcm" + }, + { + "name": "Laser1", + "md5": "46571f8ec0f2cc91666c80e312579082.wav", + "sampleCount": 516, + "rate": 11025, + "format": "" + }, + { + "name": "Laser2", + "md5": "27654ed2e3224f0a3f77c244e4fae9aa.wav", + "sampleCount": 755, + "rate": 11025, + "format": "" + }, + { + "name": "Laugh-female", + "md5": "1e8e7fb94103282d02a4bb597248c788.wav", + "sampleCount": 13547, + "rate": 11025, + "format": "" + }, + { + "name": "Laugh-male1", + "md5": "8b1e025f38b0635f7e34e9afcace1b5e.wav", + "sampleCount": 14662, + "rate": 11025, + "format": "" + }, + { + "name": "Laugh-male2", + "md5": "86dee6fa7cd73095ba17e4d666a27804.wav", + "sampleCount": 32065, + "rate": 11025, "format": "" }, { - "name": "tom drum", - "md5": "ca350a536d60bb8ed50f24677d65eed8.wav", - "sampleCount": 33920, + "name": "Lo Geh Tabla", + "md5": "9205359ab69d042ed3da8a160a651690.wav", + "sampleCount": 30784, "rate": 22050, "format": "" }, { - "name": "dance celebrate2", - "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav", - "sampleCount": 176401, + "name": "Lo Gliss Tabla", + "md5": "d7cd24689737569c93e7ea7344ba6b0e.wav", + "sampleCount": 7008, "rate": 22050, - "format": "adpcm" + "format": "" }, { - "name": "bass beatbox", - "md5": "28153621d293c86da0b246d314458faf.wav", - "sampleCount": 6720, + "name": "Low Conga", + "md5": "0b6f94487cd8a1cf0bb77e15966656c3.wav", + "sampleCount": 8384, "rate": 22050, "format": "" }, { - "name": "hi beatbox", - "md5": "5a07847bf246c227204728b05a3fc8f3.wav", - "sampleCount": 5856, + "name": "Low Tom", + "md5": "1569bbbd8952b0575e5a5cb5aefb50ba.wav", + "sampleCount": 20000, "rate": 22050, "format": "" }, { - "name": "snare beatbox", - "md5": "c642c4c00135d890998f351faec55498.wav", - "sampleCount": 5630, + "name": "Medieval1", + "md5": "9329fef6a59c5406d70cbe5837976d6b.wav", + "sampleCount": 213120, "rate": 22050, "format": "adpcm" }, { - "name": "scratching beatbox", - "md5": "859249563a7b1fc0f6e92e36d1db81c7.wav", - "sampleCount": 11552, + "name": "Medieval2", + "md5": "7bc8c4a9d0525f04451356c6cc483dd7.wav", + "sampleCount": 324288, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "name": "crash beatbox", - "md5": "725e29369e9138a43f11e0e5eb3eb562.wav", - "sampleCount": 26883, + "name": "Meow", + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, "rate": 22050, "format": "" }, { - "name": "wub beatbox", - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, + "name": "Meow2", + "md5": "cf51a0c4088942d95bcc20af13202710.wav", + "sampleCount": 6512, + "rate": 11025, "format": "" }, { - "name": "hihat beatbox", - "md5": "0c77025e2e874f05cd3c7d850874d56d.wav", - "sampleCount": 4274, - "rate": 22050, + "name": "Motorcycle Passing", + "md5": "b49ab3a926da46578396d1faffd24d3b.wav", + "sampleCount": 86016, + "rate": 11025, "format": "" }, { - "name": "rim beatbox", - "md5": "7ede1382b578d8fc32850b48d082d914.wav", - "sampleCount": 4960, + "name": "Muted Conga", + "md5": "1d4abbe3c9bfe198a88badb10762de75.wav", + "sampleCount": 4544, "rate": 22050, "format": "" }, { - "name": "clap beatbox", - "md5": "abc70bb390f8e55f22f32265500d814a.wav", - "sampleCount": 4224, + "name": "Odesong-b", + "md5": "2c41921491b1da2bfa1ebcaba34265ca.wav", + "sampleCount": 212553, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "name": "wah beatbox", - "md5": "9021b7bb06f2399f18e2db4fb87095dc.wav", - "sampleCount": 6624, - "rate": 22050, + "name": "Owl", + "md5": "e8b6d605f5a1bb36c29e4e21ef754209.wav", + "sampleCount": 8111, + "rate": 11025, "format": "" }, { - "name": "chee chee", - "md5": "25f4826cdd61e0a1c623ec2324c16ca0.wav", - "sampleCount": 34560, - "rate": 22050, + "name": "Party Noise", + "md5": "8f5a994abfa814da72272e766772dbac.wav", + "sampleCount": 44672, + "rate": 11025, "format": "" }, { - "name": "horse", - "md5": "45ffcf97ee2edca0199ff5aa71a5b72e.wav", - "sampleCount": 14464, + "name": "Plunge", + "md5": "c09455ee9da0e7eeead42d4e73c2555d.wav", + "sampleCount": 22400, "rate": 11025, "format": "" }, { - "name": "C piano", - "md5": "d27ed8d953fe8f03c00f4d733d31d2cc.wav", - "sampleCount": 44100, - "rate": 22050, + "name": "Pop", + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" }, { - "name": "D piano", - "md5": "51381ac422605ee8c7d64cfcbfd75efc.wav", - "sampleCount": 44100, - "rate": 22050, + "name": "Pop2", + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" }, { - "name": "E piano", - "md5": "c818fdfaf8a0efcb562e24e794700a57.wav", - "sampleCount": 44100, + "name": "Rattle", + "md5": "74f1c07e0bcd7811fd9d456a5f8667f8.wav", + "sampleCount": 13184, "rate": 22050, "format": "" }, { - "name": "F piano", - "md5": "cdab3cce84f74ecf53e3941c6a003b5e.wav", - "sampleCount": 44100, - "rate": 22050, + "name": "Ride Cymbal", + "md5": "53badb02228d10494e0efdd1e839548d.wav", + "sampleCount": 8144, + "rate": 11025, "format": "" }, { - "name": "G piano", - "md5": "42bb2ed28e7023e111b33220e1594a6f.wav", - "sampleCount": 44100, - "rate": 22050, + "name": "Ripples", + "md5": "d3c95a4ba37dcf90c8a57e8b2fd1632d.wav", + "sampleCount": 21504, + "rate": 11025, "format": "" }, { - "name": "A piano", - "md5": "0727959edb2ea0525feed9b0c816991c.wav", - "sampleCount": 44100, + "name": "Roll Cymbal", + "md5": "da8355d753cd2a5ddd19cb2bb41c1547.wav", + "sampleCount": 26432, "rate": 22050, "format": "" }, { - "name": "B piano", - "md5": "86826c6022a46370ed1afae69f1ab1b9.wav", - "sampleCount": 44100, - "rate": 22050, + "name": "Rooster", + "md5": "2e375acae2c7c0d655935a9de14b12f6.wav", + "sampleCount": 17110, + "rate": 11025, "format": "" }, { - "name": "C2 piano", - "md5": "75d7d2c9b5d40dd4e1cb268111abf1a2.wav", - "sampleCount": 44100, + "name": "Scratch Beatbox", + "md5": "859249563a7b1fc0f6e92e36d1db81c7.wav", + "sampleCount": 11552, "rate": 22050, "format": "" }, { - "name": "C elec piano", - "md5": "8366ee963cc57ad24a8a35a26f722c2b.wav", - "sampleCount": 44100, + "name": "Scratchy Beat", + "md5": "289dc558e076971e74dd1a0bd55719b1.wav", + "sampleCount": 44096, "rate": 22050, "format": "" }, { - "name": "D elec piano", - "md5": "835f136ca8d346a17b4d4baf8405be37.wav", - "sampleCount": 44100, - "rate": 22050, + "name": "Scream-female", + "md5": "10420bb2f5a3ab440f3b10fc8ea2b08b.wav", + "sampleCount": 6628, + "rate": 11025, "format": "" }, { - "name": "E elec piano", - "md5": "ab3c198f8e36efff14f0a5bad35fa3cd.wav", - "sampleCount": 44100, + "name": "Scream-male1", + "md5": "e06e29398d770dae3cd57447439752ef.wav", + "sampleCount": 17010, "rate": 22050, "format": "" }, { - "name": "F elec piano", - "md5": "dc5e368fc0d0dad1da609bfc3e29aa15.wav", - "sampleCount": 44100, - "rate": 22050, + "name": "Screech", + "md5": "3676f478e5e3496034cf100d239160df.wav", + "sampleCount": 28928, + "rate": 11025, "format": "" }, { - "name": "G elec piano", - "md5": "39525f6545d62a95d05153f92d63301a.wav", - "sampleCount": 44100, - "rate": 22050, + "name": "Shaker", + "md5": "714e598d28e493cc50babc17f2c4895d.wav", + "sampleCount": 18560, + "rate": 11025, "format": "" }, { - "name": "A elec piano", - "md5": "0cfa8e84d6a5cd63afa31d541625a9ef.wav", - "sampleCount": 44100, + "name": "Sidestick Snare", + "md5": "f6868ee5cf626fc4ef3ca1119dc95592.wav", + "sampleCount": 2336, "rate": 22050, "format": "" }, { - "name": "B elec piano", - "md5": "9cc77167419f228503dd57fddaa5b2a6.wav", - "sampleCount": 44100, - "rate": 22050, + "name": "Singer1", + "md5": "92ee32e9be5ed7b69370fc38bb550597.wav", + "sampleCount": 23653, + "rate": 11025, "format": "" }, { - "name": "C2 elec piano", - "md5": "366c7edbd4dd5cca68bf62902999bd66.wav", - "sampleCount": 44100, - "rate": 22050, + "name": "Singer2", + "md5": "5d3d2865906889e866b3edf154e6cf5d.wav", + "sampleCount": 28636, + "rate": 11025, "format": "" }, { - "name": "C sax", - "md5": "4d2c939d6953b5f241a27a62cf72de64.wav", - "sampleCount": 9491, + "name": "Small Cowbell", + "md5": "e29154f53f56f96f8a3292bdcddcec54.wav", + "sampleCount": 9718, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "name": "D sax", - "md5": "39f41954a73c0e15d842061e1a4c5e1d.wav", - "sampleCount": 9555, + "name": "Snap", + "md5": "c2ff5da4d9d85dee866615f672b749ce.wav", + "sampleCount": 15360, "rate": 22050, "format": "" }, { - "name": "E sax", - "md5": "3568b7dfe173fab6877a9ff1dcbcf1aa.wav", - "sampleCount": 7489, + "name": "Snare Beatbox", + "md5": "c642c4c00135d890998f351faec55498.wav", + "sampleCount": 5630, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "name": "F sax", - "md5": "2ae3083817bcd595e26ea2884b6684d5.wav", - "sampleCount": 7361, + "name": "Snare Beatbox2", + "md5": "7ede1382b578d8fc32850b48d082d914.wav", + "sampleCount": 4960, "rate": 22050, - "format": "adpcm" + "format": "" }, { - "name": "G sax", - "md5": "cefba5de46adfe5702485e0934bb1e13.wav", - "sampleCount": 7349, + "name": "Snare Drum", + "md5": "c27fb569aba99c7203e954aecb1ed8e4.wav", + "sampleCount": 2757, "rate": 22050, "format": "adpcm" }, { - "name": "A sax", - "md5": "420991e0d6d99292c6d736963842536a.wav", - "sampleCount": 6472, - "rate": 22050, + "name": "Sneeze-female", + "md5": "31600c613823710b66a74f4dd54c4cdd.wav", + "sampleCount": 11818, + "rate": 11025, "format": "" }, { - "name": "B sax", - "md5": "653ebe92d491b49ad5d8101d629f567b.wav", - "sampleCount": 9555, + "name": "Sneeze-male", + "md5": "42b5a31628083f3089f494f2ba644660.wav", + "sampleCount": 15218, "rate": 22050, "format": "" }, { - "name": "C2 sax", - "md5": "ea8d34b18c3d8fe328cea201666458bf.wav", - "sampleCount": 7349, - "rate": 22050, - "format": "adpcm" + "name": "Space Ripple", + "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", + "sampleCount": 41149, + "rate": 11025, + "format": "" }, { - "name": "drive around", - "md5": "a3a85fb8564b0266f50a9c091087b7aa.wav", - "sampleCount": 44096, - "rate": 22050, + "name": "Spiral", + "md5": "c987c4e2c85d1a034ef047c2611aff25.wav", + "sampleCount": 28672, + "rate": 11025, "format": "" }, { - "name": "scratchy beat", - "md5": "289dc558e076971e74dd1a0bd55719b1.wav", - "sampleCount": 44096, + "name": "Splash Cymbal", + "md5": "9d63ed5be96c43b06492e8b4a9cea8d8.wav", + "sampleCount": 9600, "rate": 22050, "format": "" }, { - "name": "drum jam", - "md5": "8b5486ccc806e97e83049d25b071f7e4.wav", - "sampleCount": 44288, - "rate": 22050, + "name": "Spooky String", + "md5": "6648b690e6e22c7504db7746879d51b4.wav", + "sampleCount": 51376, + "rate": 11025, "format": "" }, { - "name": "cymbal echo", - "md5": "bb243badd1201b2607bf2513df10cd97.wav", - "sampleCount": 44326, + "name": "Squawk", + "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", + "sampleCount": 8208, "rate": 22050, "format": "" }, { - "name": "drum satellite", - "md5": "079067d7909f791b29f8be1c00fc2131.wav", - "sampleCount": 44096, - "rate": 22050, + "name": "String Accent", + "md5": "c1b5c86a10f43f87746b1c305d4fd8df.wav", + "sampleCount": 16896, + "rate": 11025, "format": "" }, { - "name": "kick back", - "md5": "9cd340d9d568b1479f731e69e103b3ce.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" + "name": "String Pluck", + "md5": "d658129427a96764819cb9bd52076860.wav", + "sampleCount": 4976, + "rate": 11025, + "format": "" }, { - "name": "drum funky", - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" + "name": "Suspense", + "md5": "12f86e0188510860970e04df45370c1d.wav", + "sampleCount": 16659, + "rate": 11025, + "format": "" }, { - "name": "C trombone", - "md5": "821b23a489201a0f21f47ba8528ba47f.wav", - "sampleCount": 19053, - "rate": 22050, + "name": "Tambura", + "md5": "c2109f07f83086ec863e70887ef55fb6.wav", + "sampleCount": 22261, + "rate": 11025, "format": "" }, { - "name": "D trombone", - "md5": "f3afca380ba74372d611d3f518c2f35b.wav", - "sampleCount": 17339, + "name": "Tap Conga", + "md5": "fd9a67157f57f9cc6fe3cdce38a6d4a8.wav", + "sampleCount": 6880, "rate": 22050, "format": "" }, { - "name": "E trombone", - "md5": "c859fb0954acaa25c4b329df5fb76434.wav", - "sampleCount": 16699, + "name": "Tap Snare", + "md5": "d55b3954d72c6275917f375e49b502f3.wav", + "sampleCount": 3296, "rate": 22050, "format": "" }, { - "name": "F trombone", - "md5": "d6758470457aac2aa712717a676a5163.wav", - "sampleCount": 19373, + "name": "Techno", + "md5": "8700dac70c8e08f4a5d21411980304bb.wav", + "sampleCount": 175680, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "name": "G trombone", - "md5": "9436fd7a0eacb4a6067e7db14236dde1.wav", - "sampleCount": 17179, + "name": "Techno2", + "md5": "693b428f3797561a11ad0ddbd897b5df.wav", + "sampleCount": 327168, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "name": "A trombone", - "md5": "863ccc8ba66e6dabbce2a1261c22be0f.wav", - "sampleCount": 17227, + "name": "Tom Drum", + "md5": "5a8b8678d37a860dd6c08082d5cda3c2.wav", + "sampleCount": 35803, "rate": 22050, "format": "adpcm" }, { - "name": "B trombone", - "md5": "85b663229525b73d9f6647f78eb23e0a.wav", - "sampleCount": 15522, + "name": "Triumph", + "md5": "072f4d9a3dfd2a082d50ff90ac7dc8f2.wav", + "sampleCount": 89280, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "name": "C2 trombone", - "md5": "68aec107bd3633b2ee40c532eedc3897.wav", - "sampleCount": 13904, - "rate": 22050, + "name": "Trumpet1", + "md5": "851c9e2c38e5e71922231a8f64c37e70.wav", + "sampleCount": 25800, + "rate": 11025, "format": "" }, { - "name": "C trumpet", - "md5": "8970afcdc4e47bb54959a81fe27522bd.wav", - "sampleCount": 13118, - "rate": 22050, + "name": "Trumpet2", + "md5": "dd73f891deca0241b800ed203408b6f3.wav", + "sampleCount": 23424, + "rate": 11025, "format": "" }, { - "name": "D trumpet", - "md5": "0b1345b8fe2ba3076fedb4f3ae48748a.wav", - "sampleCount": 12702, + "name": "Wah Beatbox", + "md5": "9021b7bb06f2399f18e2db4fb87095dc.wav", + "sampleCount": 6624, "rate": 22050, "format": "" }, { - "name": "E trumpet", - "md5": "494295a92314cadb220945a6711c568c.wav", - "sampleCount": 8680, + "name": "Water Drop", + "md5": "aa488de9e2c871e9d4faecd246ed737a.wav", + "sampleCount": 8136, "rate": 22050, "format": "adpcm" }, { - "name": "F trumpet", - "md5": "5fa3108b119ca266029b4caa340a7cd0.wav", - "sampleCount": 12766, - "rate": 22050, + "name": "Whoop", + "md5": "fbbbb76a2f53dae6ff1cf61b41f66038.wav", + "sampleCount": 54400, + "rate": 11025, "format": "" }, { - "name": "G trumpet", - "md5": "e84afda25975f14b364118591538ccf4.wav", - "sampleCount": 14640, - "rate": 22050, + "name": "Wolf Howl", + "md5": "5e36d74bb16aa5085b901362788b0fbf.wav", + "sampleCount": 43008, + "rate": 11025, "format": "" }, { - "name": "A trumpet", - "md5": "d2dd6b4372ca17411965dc92d52b2172.wav", - "sampleCount": 13911, + "name": "Wub Beatbox", + "md5": "e1f32c057411da4237181ce72ae15d23.wav", + "sampleCount": 7392, "rate": 22050, "format": "" }, { - "name": "B trumpet", - "md5": "cad2bc57729942ed9b605145fc9ea65d.wav", - "sampleCount": 14704, + "name": "Xylo1", + "md5": "6ac484e97c1c1fe1384642e26a125e70.wav", + "sampleCount": 238232, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "name": "C2 trumpet", - "md5": "df08249ed5446cc5e10b7ac62faac89b.wav", - "sampleCount": 15849, + "name": "Xylo2", + "md5": "d38fc904a0acfc27854baf7335ed46f9.wav", + "sampleCount": 246552, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "name": "F major ukulele", - "md5": "cd0ab5d1b0120c6ed92a1654ccf81376.wav", - "sampleCount": 18235, + "name": "Xylo3", + "md5": "786a7a66e96c801ca2efed59b20bf025.wav", + "sampleCount": 208832, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "name": "A minor ukulele", - "md5": "69d25af0fd065da39c71439174efc589.wav", - "sampleCount": 18267, + "name": "Xylo4", + "md5": "b3ee7b6515eaf85aebab3c624c1423e9.wav", + "sampleCount": 77184, "rate": 22050, + "format": "adpcm" + }, + { + "name": "Ya", + "md5": "30987bbe464eb8db1e4c781dc238f81c.wav", + "sampleCount": 5691, + "rate": 11025, "format": "" }, { - "name": "G ukulele", - "md5": "d20218f92ee606277658959005538e2d.wav", - "sampleCount": 18235, - "rate": 22050, + "name": "Zoop", + "md5": "01f5372ddac43001a2db4c82d71f37bb.wav", + "sampleCount": 2764, + "rate": 11025, "format": "" } -] +] \ No newline at end of file diff --git a/src/lib/libraries/sprites.json b/src/lib/libraries/sprites.json index a347daf3cf671d2af541917b43de76a371f12368..09086af9cf4dd7d162b5bfc773f39163ee2a00ca 100644 --- a/src/lib/libraries/sprites.json +++ b/src/lib/libraries/sprites.json @@ -1,14 +1,9 @@ [ { "name": "Abby", - "md5": "7319bc0d839f613172afaa0bb822f0ad.svg", + "md5": "afab2d2141e9811bd89e385e9628cb5f.svg", "type": "sprite", - "tags": [ - "people", - "city", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, 4, @@ -30,7 +25,7 @@ { "costumeName": "abby-a", "baseLayerID": -1, - "baseLayerMD5": "7319bc0d839f613172afaa0bb822f0ad.svg", + "baseLayerMD5": "afab2d2141e9811bd89e385e9628cb5f.svg", "bitmapResolution": 1, "rotationCenterX": 31, "rotationCenterY": 100 @@ -38,7 +33,7 @@ { "costumeName": "abby-b", "baseLayerID": -1, - "baseLayerMD5": "930055903e3da58a7b137b2b3d1e0dca.svg", + "baseLayerMD5": "1e0116c7c2e5e80c679d0b33f1f5cfb7.svg", "bitmapResolution": 1, "rotationCenterX": 31, "rotationCenterY": 100 @@ -46,7 +41,7 @@ { "costumeName": "abby-c", "baseLayerID": -1, - "baseLayerMD5": "e83ac4d2ba2a68dd00c453274c41e67e.svg", + "baseLayerMD5": "b6e23922f23b49ddc6f62f675e77417c.svg", "bitmapResolution": 1, "rotationCenterX": 32, "rotationCenterY": 100 @@ -54,42 +49,36 @@ { "costumeName": "abby-d", "baseLayerID": -1, - "baseLayerMD5": "b3f253fe9cea6f0bc613b0d0ce422865.svg", + "baseLayerMD5": "2193cf08f74b8354f7c4fac37a06ea24.svg", "bitmapResolution": 1, "rotationCenterX": 31, "rotationCenterY": 100 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -20, + "scratchY": -38, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 10, "visible": true, "spriteInfo": {} } }, { - "name": "Airplane", - "md5": "58bcb130f226bda9017f1a443360a78a.png", + "name": "Apple", + "md5": "831ccd4741a7a56d85f6698a21f4ca69.svg", "type": "sprite", - "tags": [ - "transportation", - "flying", - "city", - "photo", - "bitmap" - ], + "tags": [], "info": [ 0, 1, 1 ], "json": { - "objName": "Airplane", + "objName": "Apple", "sounds": [ { "soundName": "pop", @@ -102,42 +91,38 @@ ], "costumes": [ { - "costumeName": "airplane2", + "costumeName": "apple", "baseLayerID": -1, - "baseLayerMD5": "58bcb130f226bda9017f1a443360a78a.png", - "rotationCenterX": 100, - "rotationCenterY": 32 + "baseLayerMD5": "831ccd4741a7a56d85f6698a21f4ca69.svg", + "bitmapResolution": 1, + "rotationCenterX": 31, + "rotationCenterY": 31 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": 93, + "scratchY": -23, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 4, "visible": true, "spriteInfo": {} } }, { - "name": "Amon", - "md5": "8d508770c1991fe05959c9b3b5167036.gif", + "name": "Arrow1", + "md5": "62f8794dd120e9b4ead4d098d50fc64b.svg", "type": "sprite", - "tags": [ - "people", - "flying", - "photo", - "bitmap" - ], + "tags": [], "info": [ 0, - 1, + 4, 1 ], "json": { - "objName": "Amon", + "objName": "Arrow1", "sounds": [ { "soundName": "pop", @@ -150,188 +135,138 @@ ], "costumes": [ { - "costumeName": "amon", + "costumeName": "arrow1-a", + "baseLayerID": -1, + "baseLayerMD5": "62f8794dd120e9b4ead4d098d50fc64b.svg", + "bitmapResolution": 1, + "rotationCenterX": 28, + "rotationCenterY": 23 + }, + { + "costumeName": "arrow1-b", + "baseLayerID": -1, + "baseLayerMD5": "a157dc7e33d7c7a048af933de999e397.svg", + "bitmapResolution": 1, + "rotationCenterX": 28, + "rotationCenterY": 23 + }, + { + "costumeName": "arrow1-c", + "baseLayerID": -1, + "baseLayerMD5": "d3b389e91f7beb22b2b1a80af09990ee.svg", + "bitmapResolution": 1, + "rotationCenterX": 23, + "rotationCenterY": 28 + }, + { + "costumeName": "arrow1-d", "baseLayerID": -1, - "baseLayerMD5": "8d508770c1991fe05959c9b3b5167036.gif", - "rotationCenterX": 87, - "rotationCenterY": 81 + "baseLayerMD5": "412717ff731e9f19003a5840054057eb.svg", + "bitmapResolution": 1, + "rotationCenterX": 23, + "rotationCenterY": 28 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -36, + "scratchY": -14, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 6, "visible": true, "spriteInfo": {} } }, { - "name": "Anina Hip-Hop", - "md5": "6d01c961449223f9e61dda9281100806.png", + "name": "Ball", + "md5": "10117ddaefa98d819f2b1df93805622f.svg", "type": "sprite", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ], + "tags": [], "info": [ 0, - 13, + 5, 1 ], "json": { - "objName": "Anina Hip-Hop", + "objName": "Ball", "sounds": [ { - "soundName": "dance celebrate", + "soundName": "pop", "soundID": -1, - "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav", - "sampleCount": 176401, - "rate": 22050, - "format": "adpcm" + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" } ], "costumes": [ { - "costumeName": "anina stance", - "baseLayerID": -1, - "baseLayerMD5": "6d01c961449223f9e61dda9281100806.png", - "bitmapResolution": 2, - "rotationCenterX": 76, - "rotationCenterY": 252 - }, - { - "costumeName": "anina top stand", - "baseLayerID": -1, - "baseLayerMD5": "34d6362cb4030d92be6fec73300f0aec.png", - "bitmapResolution": 2, - "rotationCenterX": 74, - "rotationCenterY": 280 - }, - { - "costumeName": "anina top R step", - "baseLayerID": -1, - "baseLayerMD5": "0477f7105d02b9a902382eca080476dc.png", - "bitmapResolution": 2, - "rotationCenterX": 248, - "rotationCenterY": 272 - }, - { - "costumeName": "anina top L step", - "baseLayerID": -1, - "baseLayerMD5": "62a89d8c6f7680e342132fcde59b2a5d.png", - "bitmapResolution": 2, - "rotationCenterX": 228, - "rotationCenterY": 274 - }, - { - "costumeName": "anina top freeze", - "baseLayerID": -1, - "baseLayerMD5": "dd67565519bdebea1b931deb19621384.png", - "bitmapResolution": 2, - "rotationCenterX": 110, - "rotationCenterY": 268 - }, - { - "costumeName": "anina R cross", - "baseLayerID": -1, - "baseLayerMD5": "22f3ca23b2f0ac67f8ebc36a8c3116a0.png", - "bitmapResolution": 2, - "rotationCenterX": 126, - "rotationCenterY": 268 - }, - { - "costumeName": "anina pop front", - "baseLayerID": -1, - "baseLayerMD5": "c163f1002f61421816386e52522b9133.png", - "bitmapResolution": 2, - "rotationCenterX": 68, - "rotationCenterY": 270 - }, - { - "costumeName": "anina pop down", - "baseLayerID": -1, - "baseLayerMD5": "e9e54ff1fa61c71507e25540d0326177.png", - "bitmapResolution": 2, - "rotationCenterX": 74, - "rotationCenterY": 156 - }, - { - "costumeName": "anina pop left", + "costumeName": "ball-a", "baseLayerID": -1, - "baseLayerMD5": "9fda30f66d51b2ad5f6fe11d57e199d6.png", - "bitmapResolution": 2, - "rotationCenterX": 238, - "rotationCenterY": 266 + "baseLayerMD5": "10117ddaefa98d819f2b1df93805622f.svg", + "bitmapResolution": 1, + "rotationCenterX": 22, + "rotationCenterY": 22 }, { - "costumeName": "anina pop right", + "costumeName": "ball-b", "baseLayerID": -1, - "baseLayerMD5": "cc2594e9278494e82f725be34369f178.png", - "bitmapResolution": 2, - "rotationCenterX": 66, - "rotationCenterY": 268 + "baseLayerMD5": "6e6330cad7750ea7e9dc88402661deb8.svg", + "bitmapResolution": 1, + "rotationCenterX": 22, + "rotationCenterY": 22 }, { - "costumeName": "anina pop L arm", + "costumeName": "ball-c", "baseLayerID": -1, - "baseLayerMD5": "843bff4a5ee3d61fd8cbd419cb2797a3.png", - "bitmapResolution": 2, - "rotationCenterX": 68, - "rotationCenterY": 274 + "baseLayerMD5": "bb45ed5db278f15c17c012c34a6b160f.svg", + "bitmapResolution": 1, + "rotationCenterX": 22, + "rotationCenterY": 22 }, { - "costumeName": "anina pop stand", + "costumeName": "ball-d", "baseLayerID": -1, - "baseLayerMD5": "de7cab2c8d567d49a5a1f378b5709bb4.png", - "bitmapResolution": 2, - "rotationCenterX": 76, - "rotationCenterY": 276 + "baseLayerMD5": "5d494659deae5c0de06b5885f5524276.svg", + "bitmapResolution": 1, + "rotationCenterX": 22, + "rotationCenterY": 22 }, { - "costumeName": "anina pop R arm", + "costumeName": "ball-e", "baseLayerID": -1, - "baseLayerMD5": "e7e1a86233b7ad28d6ee9970b152be20.png", - "bitmapResolution": 2, - "rotationCenterX": 88, - "rotationCenterY": 272 + "baseLayerMD5": "e80c98bc62fd32e8df81642af11ffb1a.svg", + "bitmapResolution": 1, + "rotationCenterX": 22, + "rotationCenterY": 22 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -38, + "scratchY": -24, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 7, "visible": true, "spriteInfo": {} } }, { - "name": "Anna", - "md5": "23ab3e9be3be672fa2c43571e92b2b3e.png", + "name": "Balloon1", + "md5": "bc96a1fb5fe794377acd44807e421ce2.svg", "type": "sprite", - "tags": [ - "people", - "city", - "photo", - "bitmap" - ], + "tags": [], "info": [ 0, - 2, + 3, 1 ], "json": { - "objName": "Anna", + "objName": "Balloon1", "sounds": [ { "soundName": "pop", @@ -344,216 +279,54 @@ ], "costumes": [ { - "costumeName": "anna-a", - "baseLayerID": -1, - "baseLayerMD5": "23ab3e9be3be672fa2c43571e92b2b3e.png", - "rotationCenterX": 76, - "rotationCenterY": 87 - }, - { - "costumeName": "anna-b", - "baseLayerID": -1, - "baseLayerMD5": "25b8d4f7eae0add3bc24c20f5f17ada9.png", - "rotationCenterX": 57, - "rotationCenterY": 110 - } - ], - "currentCostumeIndex": 1, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Anna Ode to Code", - "md5": "74b5e9c882deb81d88c175d548b8ff66.png", - "type": "sprite", - "tags": [ - "people", - "dance", - "photo", - "bitmap" - ], - "info": [ - 1, - 14, - 1 - ], - "json": { - "objName": "Anna Ode to Code", - "scripts": [ - [ - 8, - 77.65, - [ - [ - "whenKeyPressed", - "space" - ], - [ - "nextCostume" - ] - ] - ] - ], - "sounds": [ - { - "soundName": "odesong-b", - "soundID": -1, - "md5": "2c41921491b1da2bfa1ebcaba34265ca.wav", - "sampleCount": 212553, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "anna01", - "baseLayerID": -1, - "baseLayerMD5": "74b5e9c882deb81d88c175d548b8ff66.png", - "bitmapResolution": 2, - "rotationCenterX": 78, - "rotationCenterY": 190 - }, - { - "costumeName": "anna02", - "baseLayerID": -1, - "baseLayerMD5": "ece557e1c4500b30fd0e22b0d693cf4c.png", - "bitmapResolution": 2, - "rotationCenterX": 132, - "rotationCenterY": 260 - }, - { - "costumeName": "anna03", - "baseLayerID": -1, - "baseLayerMD5": "2e97d9d9d6bc1f174d3fc897638e8a46.png", - "bitmapResolution": 2, - "rotationCenterX": 138, - "rotationCenterY": 242 - }, - { - "costumeName": "anna04", - "baseLayerID": -1, - "baseLayerMD5": "69da72a9a29181425944e7963eb4f32a.png", - "bitmapResolution": 2, - "rotationCenterX": 138, - "rotationCenterY": 70 - }, - { - "costumeName": "anna05", - "baseLayerID": -1, - "baseLayerMD5": "1b396abf1336bceddb01166d975dad3b.png", - "bitmapResolution": 2, - "rotationCenterX": 134, - "rotationCenterY": 246 - }, - { - "costumeName": "anna06", - "baseLayerID": -1, - "baseLayerMD5": "d32ac2b2e9c8fa2f7b251275d8eec8c9.png", - "bitmapResolution": 2, - "rotationCenterX": 118, - "rotationCenterY": 224 - }, - { - "costumeName": "anna07", - "baseLayerID": -1, - "baseLayerMD5": "c0961caabfa8545b6080ea7825d6fc66.png", - "bitmapResolution": 2, - "rotationCenterX": 124, - "rotationCenterY": 224 - }, - { - "costumeName": "anna07b", - "baseLayerID": -1, - "baseLayerMD5": "c21f0ef20be25af3b7c1ed42e974c75f.png", - "bitmapResolution": 2, - "rotationCenterX": 202, - "rotationCenterY": 224 - }, - { - "costumeName": "anna07c", - "baseLayerID": -1, - "baseLayerMD5": "54ed739e6ea31d128c319e8a3401af71.png", - "bitmapResolution": 2, - "rotationCenterX": 58, - "rotationCenterY": 218 - }, - { - "costumeName": "anna08", - "baseLayerID": -1, - "baseLayerMD5": "2d9bffdb6cda1ce0c77cfb3e001598f3.png", - "bitmapResolution": 2, - "rotationCenterX": 126, - "rotationCenterY": 212 - }, - { - "costumeName": "anna09", - "baseLayerID": -1, - "baseLayerMD5": "91f689627fa18d43ff6362ef872d90e2.png", - "bitmapResolution": 2, - "rotationCenterX": 130, - "rotationCenterY": 220 - }, - { - "costumeName": "anna10", + "costumeName": "balloon1-a", "baseLayerID": -1, - "baseLayerMD5": "eab5b5e2c4be253de024dd3deab68a66.png", - "bitmapResolution": 2, - "rotationCenterX": 148, - "rotationCenterY": 260 + "baseLayerMD5": "bc96a1fb5fe794377acd44807e421ce2.svg", + "bitmapResolution": 1, + "rotationCenterX": 32, + "rotationCenterY": 94 }, { - "costumeName": "anna11", + "costumeName": "balloon1-b", "baseLayerID": -1, - "baseLayerMD5": "859f95864d28fdb49d4170ce30fdd031.png", - "bitmapResolution": 2, - "rotationCenterX": 46, - "rotationCenterY": 278 + "baseLayerMD5": "d7bb51d9c38af6314bd2b4058d2a592d.svg", + "bitmapResolution": 1, + "rotationCenterX": 31, + "rotationCenterY": 94 }, { - "costumeName": "anna12", + "costumeName": "balloon1-c", "baseLayerID": -1, - "baseLayerMD5": "66133f695a23f669cc0fa6f06f275ab7.png", - "bitmapResolution": 2, - "rotationCenterX": 42, - "rotationCenterY": 206 + "baseLayerMD5": "247cef27b665d77d9efaca69327cae77.svg", + "bitmapResolution": 1, + "rotationCenterX": 31, + "rotationCenterY": 94 } ], - "currentCostumeIndex": 13, - "scratchX": 0, - "scratchY": 0, + "currentCostumeIndex": 2, + "scratchX": -69, + "scratchY": 41, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 8, "visible": true, "spriteInfo": {} } }, { - "name": "Apple", - "md5": "710cf1819b25f0f82c42ed19fa6b31ec.svg", + "name": "Baseball", + "md5": "6e13ef53885d2cfca9a54cc5c3f6c20f.svg", "type": "sprite", - "tags": [ - "things", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, 1, 1 ], "json": { - "objName": "Apple", + "objName": "Baseball", "sounds": [ { "soundName": "pop", @@ -566,41 +339,38 @@ ], "costumes": [ { - "costumeName": "apple", + "costumeName": "baseball", "baseLayerID": -1, - "baseLayerMD5": "710cf1819b25f0f82c42ed19fa6b31ec.svg", - "rotationCenterX": 31, + "baseLayerMD5": "6e13ef53885d2cfca9a54cc5c3f6c20f.svg", + "bitmapResolution": 1, + "rotationCenterX": 34, "rotationCenterY": 31 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": 49, + "scratchY": -23, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 5, "visible": true, "spriteInfo": {} } }, { - "name": "Arrow1", - "md5": "4d9decbe5e1620d9b05650875407675f.svg", + "name": "Bat1", + "md5": "7ad915f8e0884f497a24d5bb61ea8a4a.svg", "type": "sprite", - "tags": [ - "things", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, - 4, + 2, 1 ], "json": { - "objName": "Arrow1", + "objName": "Bat1", "sounds": [ { "soundName": "pop", @@ -613,67 +383,46 @@ ], "costumes": [ { - "costumeName": "arrow1-a", - "baseLayerID": -1, - "baseLayerMD5": "4d9decbe5e1620d9b05650875407675f.svg", - "bitmapResolution": 1, - "rotationCenterX": 28, - "rotationCenterY": 23 - }, - { - "costumeName": "arrow1-b", - "baseLayerID": -1, - "baseLayerMD5": "30f71a3b044c5797f91fc0ff23c97ef6.svg", - "bitmapResolution": 1, - "rotationCenterX": 28, - "rotationCenterY": 23 - }, - { - "costumeName": "arrow1-c", + "costumeName": "bat1-a ", "baseLayerID": -1, - "baseLayerMD5": "73b6320b4ac3735f05a2a2899e46846d.svg", + "baseLayerMD5": "7ad915f8e0884f497a24d5bb61ea8a4a.svg", "bitmapResolution": 1, - "rotationCenterX": 23, - "rotationCenterY": 28 + "rotationCenterX": 75, + "rotationCenterY": 75 }, { - "costumeName": "arrow1-d", + "costumeName": "bat1-b ", "baseLayerID": -1, - "baseLayerMD5": "47611db371b5c621a3334806c1deef93.svg", + "baseLayerMD5": "f127434672b872a902346ef3c1af45f2.svg", "bitmapResolution": 1, - "rotationCenterX": 23, - "rotationCenterY": 28 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": 40, + "scratchY": 2, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 9, "visible": true, "spriteInfo": {} } }, { - "name": "Avery", - "md5": "a626bcd9cba6be57292d277606b90cd8.svg", + "name": "Bat3", + "md5": "647d4bd53163f94a7dabf623ccab7fd3.svg", "type": "sprite", - "tags": [ - "people", - "city", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, 2, 1 ], "json": { - "objName": "Avery", + "objName": "Bat3", "sounds": [ { "soundName": "pop", @@ -686,52 +435,46 @@ ], "costumes": [ { - "costumeName": "avery-a", + "costumeName": "bat2-a ", "baseLayerID": -1, - "baseLayerMD5": "a626bcd9cba6be57292d277606b90cd8.svg", + "baseLayerMD5": "647d4bd53163f94a7dabf623ccab7fd3.svg", "bitmapResolution": 1, - "rotationCenterX": 39, - "rotationCenterY": 94 + "rotationCenterX": 75, + "rotationCenterY": 75 }, { - "costumeName": "avery-b", + "costumeName": "bat2-b ", "baseLayerID": -1, - "baseLayerMD5": "a6a582f4a3db8d4fd4dfda75bb2fcc83.svg", + "baseLayerMD5": "8aa1d20e4f7761becbe9bafa75290465.svg", "bitmapResolution": 1, - "rotationCenterX": 39, - "rotationCenterY": 94 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -3, + "scratchY": 38, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 12, "visible": true, "spriteInfo": {} } }, { - "name": "Avery Walking", - "md5": "a6b2655b7d27329fca90edb1c50db909.svg", + "name": "Beachball", + "md5": "87d64cab74c64b31498cc85f07510ee4.svg", "type": "sprite", - "tags": [ - "people", - "city", - "walking", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, - 4, + 1, 1 ], "json": { - "objName": "Avery Walking", + "objName": "Beachball", "sounds": [ { "soundName": "pop", @@ -744,212 +487,134 @@ ], "costumes": [ { - "costumeName": "avery walking-a", - "baseLayerID": -1, - "baseLayerMD5": "a6b2655b7d27329fca90edb1c50db909.svg", - "bitmapResolution": 1, - "rotationCenterX": 50, - "rotationCenterY": 95 - }, - { - "costumeName": "avery walking-b", - "baseLayerID": -1, - "baseLayerMD5": "2bbde6b48552a5eebc4b9250c1044de0.svg", - "bitmapResolution": 1, - "rotationCenterX": 50, - "rotationCenterY": 102 - }, - { - "costumeName": "avery walking-c", - "baseLayerID": -1, - "baseLayerMD5": "f7536e63ac8076dc356381d78691de91.svg", - "bitmapResolution": 1, - "rotationCenterX": 48, - "rotationCenterY": 95 - }, - { - "costumeName": "avery walking-d", + "costumeName": "beachball", "baseLayerID": -1, - "baseLayerMD5": "f893ec49e94e1d538a43cafda3b10413.svg", + "baseLayerMD5": "87d64cab74c64b31498cc85f07510ee4.svg", "bitmapResolution": 1, - "rotationCenterX": 50, - "rotationCenterY": 101 + "rotationCenterX": 34, + "rotationCenterY": 33 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -83, + "scratchY": -24, "scale": 1, "direction": 90, - "rotationStyle": "leftRight", + "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 11, "visible": true, "spriteInfo": {} } }, { - "name": "AZ Hip-Hop", - "md5": "e64363afc7f1e6951cb7967f50de2ba7.png", + "name": "Beetle", + "md5": "e1ce8f153f011fdd52486c91c6ed594d.svg", "type": "sprite", - "tags": [ - "people", - "dance", - "city", - "bitmap" - ], + "tags": [], "info": [ 0, - 13, + 1, 1 ], "json": { - "objName": "AZ Hip-Hop", + "objName": "Beetle", "sounds": [ { - "soundName": "dance celebrate", + "soundName": "pop", "soundID": -1, - "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav", - "sampleCount": 176401, - "rate": 22050, - "format": "adpcm" + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" } ], "costumes": [ { - "costumeName": "AZ stance", - "baseLayerID": -1, - "baseLayerMD5": "e64363afc7f1e6951cb7967f50de2ba7.png", - "bitmapResolution": 2, - "rotationCenterX": 70, - "rotationCenterY": 278 - }, - { - "costumeName": "AZ top stand", - "baseLayerID": -1, - "baseLayerMD5": "75b370524c92025cfa6f9071a6333e00.png", - "bitmapResolution": 2, - "rotationCenterX": 74, - "rotationCenterY": 274 - }, - { - "costumeName": "AZ top R step", - "baseLayerID": -1, - "baseLayerMD5": "3769dbe6e19b0e19ebf9416ba8660b88.png", - "bitmapResolution": 2, - "rotationCenterX": 200, - "rotationCenterY": 270 - }, - { - "costumeName": "AZ top L step", - "baseLayerID": -1, - "baseLayerMD5": "3d618085bce1a68829fa2cd5deab7871.png", - "bitmapResolution": 2, - "rotationCenterX": 144, - "rotationCenterY": 266 - }, - { - "costumeName": "AZ top freeze", - "baseLayerID": -1, - "baseLayerMD5": "ea33d5c631d8308b47685f1963becd4c.png", - "bitmapResolution": 2, - "rotationCenterX": 54, - "rotationCenterY": 258 - }, - { - "costumeName": "AZ top R cross", - "baseLayerID": -1, - "baseLayerMD5": "44216804569454067953fdd5c6b72928.png", - "bitmapResolution": 2, - "rotationCenterX": 206, - "rotationCenterY": 252 - }, - { - "costumeName": "AZ pop front", - "baseLayerID": -1, - "baseLayerMD5": "97c14e52551ae65679d61de6c94f0ec8.png", - "bitmapResolution": 2, - "rotationCenterX": 72, - "rotationCenterY": 266 - }, - { - "costumeName": "AZ pop down", - "baseLayerID": -1, - "baseLayerMD5": "2f8d07b568c8c67a0d211b5de09295d3.png", - "bitmapResolution": 2, - "rotationCenterX": 74, - "rotationCenterY": 188 - }, - { - "costumeName": "AZ pop left", - "baseLayerID": -1, - "baseLayerMD5": "4e7e43a86f1f09f1194e3579e7f385f5.png", - "bitmapResolution": 2, - "rotationCenterX": 184, - "rotationCenterY": 266 - }, - { - "costumeName": "AZ pop right", + "costumeName": "beetle", "baseLayerID": -1, - "baseLayerMD5": "15a9d503613c649ca3a55829dbd98869.png", - "bitmapResolution": 2, - "rotationCenterX": 78, - "rotationCenterY": 276 - }, + "baseLayerMD5": "e1ce8f153f011fdd52486c91c6ed594d.svg", + "bitmapResolution": 1, + "rotationCenterX": 43, + "rotationCenterY": 38 + } + ], + "currentCostumeIndex": 0, + "scratchX": 77, + "scratchY": -42, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 13, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Bell", + "md5": "f35056c772395455d703773657e1da6e.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 2 + ], + "json": { + "objName": "Bell", + "sounds": [ { - "costumeName": "AZ pop L arm", - "baseLayerID": -1, - "baseLayerMD5": "0f6462025c20ac346a7f54164832d495.png", - "bitmapResolution": 2, - "rotationCenterX": 100, - "rotationCenterY": 280 + "soundName": "xylo1", + "soundID": -1, + "md5": "6ac484e97c1c1fe1384642e26a125e70.wav", + "sampleCount": 238232, + "rate": 22050, + "format": "adpcm" }, { - "costumeName": "AZ pop stand", - "baseLayerID": -1, - "baseLayerMD5": "34b67b9e4db3aacbae735ade6a0539c2.png", - "bitmapResolution": 2, - "rotationCenterX": 92, - "rotationCenterY": 280 - }, + "soundName": "bell toll", + "soundID": -1, + "md5": "25d61e79cbeba4041eebeaebd7bf9598.wav", + "sampleCount": 45168, + "rate": 11025, + "format": "" + } + ], + "costumes": [ { - "costumeName": "AZ pop R arm", + "costumeName": "bell1", "baseLayerID": -1, - "baseLayerMD5": "129472ac2779eb6bc2dd9bfbf0d33f56.png", - "bitmapResolution": 2, - "rotationCenterX": 74, - "rotationCenterY": 278 + "baseLayerMD5": "f35056c772395455d703773657e1da6e.svg", + "bitmapResolution": 1, + "rotationCenterX": 59, + "rotationCenterY": 69 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": 96, + "scratchY": 8, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 14, "visible": true, "spriteInfo": {} } }, { - "name": "Ball", - "md5": "32fec75837e0b8b4a84c32fe65ac6d62.svg", + "name": "Butterfly1", + "md5": "836d4cc7889f4a1cbcb0303934f31f79.svg", "type": "sprite", - "tags": [ - "things", - "drawing", - "sports", - "vector" - ], + "tags": [], "info": [ 0, - 5, + 2, 1 ], "json": { - "objName": "Ball", + "objName": "Butterfly1", "sounds": [ { "soundName": "pop", @@ -962,75 +627,46 @@ ], "costumes": [ { - "costumeName": "ball-a", - "baseLayerID": -1, - "baseLayerMD5": "32fec75837e0b8b4a84c32fe65ac6d62.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 22 - }, - { - "costumeName": "ball-b", - "baseLayerID": -1, - "baseLayerMD5": "6393dfab227b818ca102aa007e0d73c9.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 22 - }, - { - "costumeName": "ball-c", - "baseLayerID": -1, - "baseLayerMD5": "3e1dc0b215fbe2a63199c8be435c8376.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 22 - }, - { - "costumeName": "ball-d", + "costumeName": "butterfly1-a", "baseLayerID": -1, - "baseLayerMD5": "8ca511dd54d80b018ac948b4a484f9e5.svg", + "baseLayerMD5": "836d4cc7889f4a1cbcb0303934f31f79.svg", "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 22 + "rotationCenterX": 75, + "rotationCenterY": 75 }, { - "costumeName": "ball-e", + "costumeName": "butterfly1-b ", "baseLayerID": -1, - "baseLayerMD5": "9bb85168adde2a3a408ab6cc16236300.svg", + "baseLayerMD5": "55dd0671a359d7c35f7b78f4176660e8.svg", "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 22 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "currentCostumeIndex": 1, + "scratchX": -98, + "scratchY": -16, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 15, "visible": true, "spriteInfo": {} } }, { - "name": "Ball-Soccer", - "md5": "3adbf5f367c8e330ee01ac1df48c61a6.svg", + "name": "Butterfly2", + "md5": "a0216895beade6afc6d42bd5bb43faea.svg", "type": "sprite", - "tags": [ - "things", - "drawing", - "sports", - "vector" - ], + "tags": [], "info": [ 0, 1, 1 ], "json": { - "objName": "Ball-Soccer", + "objName": "Butterfly2", "sounds": [ { "soundName": "pop", @@ -1043,43 +679,38 @@ ], "costumes": [ { - "costumeName": "ball-soccer", + "costumeName": "butterfly2 ", "baseLayerID": -1, - "baseLayerMD5": "3adbf5f367c8e330ee01ac1df48c61a6.svg", + "baseLayerMD5": "a0216895beade6afc6d42bd5bb43faea.svg", "bitmapResolution": 1, - "rotationCenterX": 32, - "rotationCenterY": 34 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": 43, + "scratchY": 41, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 16, "visible": true, "spriteInfo": {} } }, { - "name": "Ballerina", - "md5": "fdd5d0ce5c669aa0e2136a0ae65eda5a.svg", + "name": "Butterfly3", + "md5": "8907a43cf08b0a9134969023be2074c5.svg", "type": "sprite", - "tags": [ - "people", - "dance", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, - 4, + 1, 1 ], "json": { - "objName": "Ballerina", + "objName": "Butterfly3", "sounds": [ { "soundName": "pop", @@ -1092,63 +723,38 @@ ], "costumes": [ { - "costumeName": "ballerina-a", - "baseLayerID": -1, - "baseLayerMD5": "fdd5d0ce5c669aa0e2136a0ae65eda5a.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "ballerina-b", - "baseLayerID": -1, - "baseLayerMD5": "c11c1a170a9a1db5a03a031b7e3b0db0.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "ballerina-c", - "baseLayerID": -1, - "baseLayerMD5": "fb760e6352ae4010f04fd48998c3c620.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "ballerina-d", + "costumeName": "butterfly3 ", "baseLayerID": -1, - "baseLayerMD5": "8e9f1e4267becca4862cb61f1b58f7ad.svg", + "baseLayerMD5": "8907a43cf08b0a9134969023be2074c5.svg", + "bitmapResolution": 1, "rotationCenterX": 75, "rotationCenterY": 75 } ], - "currentCostumeIndex": 3, - "scratchX": 0, - "scratchY": 0, + "currentCostumeIndex": 0, + "scratchX": 20, + "scratchY": 36, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 17, "visible": true, "spriteInfo": {} } }, { - "name": "Balloon1", - "md5": "4aa07445c0d8bbf9d4e6f5866c6602d0.svg", + "name": "Button1", + "md5": "7ef67c5bc8cf7df64fdb3b1d6b250f71.svg", "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "Balloon1", + "objName": "Button1", "sounds": [ { "soundName": "pop", @@ -1161,106 +767,90 @@ ], "costumes": [ { - "costumeName": "balloon1-a", - "baseLayerID": -1, - "baseLayerMD5": "4aa07445c0d8bbf9d4e6f5866c6602d0.svg", - "bitmapResolution": 1, - "rotationCenterX": 32, - "rotationCenterY": 94 - }, - { - "costumeName": "balloon1-b", - "baseLayerID": -1, - "baseLayerMD5": "1ddaa1d142d9213c2126f49effea486e.svg", - "bitmapResolution": 1, - "rotationCenterX": 31, - "rotationCenterY": 94 - }, - { - "costumeName": "balloon1-c", + "costumeName": "button1", "baseLayerID": -1, - "baseLayerMD5": "8d286fd967027c999912d0a377a48302.svg", + "baseLayerMD5": "7ef67c5bc8cf7df64fdb3b1d6b250f71.svg", "bitmapResolution": 1, - "rotationCenterX": 31, - "rotationCenterY": 94 + "rotationCenterX": 72, + "rotationCenterY": 72 } ], - "currentCostumeIndex": 2, - "scratchX": 0, - "scratchY": 0, + "currentCostumeIndex": 0, + "scratchX": -22, + "scratchY": -30, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 18, "visible": true, "spriteInfo": {} } }, { - "name": "Bananas", - "md5": "be567280e4ab9cc33e9d844dac28b9a4.svg", + "name": "Button2", + "md5": "c0051ff23e9aae78295964206793c1e3.svg", "type": "sprite", - "tags": [ - "things", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, - 1, - 0 + 2, + 1 ], "json": { - "objName": "Bananas", - "costumes": [ + "objName": "Button2", + "sounds": [ { - "costumeName": "bananas", - "baseLayerID": -1, - "baseLayerMD5": "be567280e4ab9cc33e9d844dac28b9a4.svg", - "rotationCenterX": 36, - "rotationCenterY": 37 + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" } ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "costumes": [ + { + "costumeName": "button2-a", + "baseLayerID": -1, + "baseLayerMD5": "c0051ff23e9aae78295964206793c1e3.svg", + "bitmapResolution": 1, + "rotationCenterX": 72, + "rotationCenterY": 72 + }, + { + "costumeName": "button2-b", + "baseLayerID": -1, + "baseLayerMD5": "712a561dc0ad66e348b8247e566b50ef.svg", + "bitmapResolution": 1, + "rotationCenterX": 72, + "rotationCenterY": 72 + } + ], + "currentCostumeIndex": 0, + "scratchX": -27, + "scratchY": -16, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 19, "visible": true, - "spriteInfo": {}, - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ] + "spriteInfo": {} } }, { - "name": "Baseball", - "md5": "274ee8922ac6f09c9695f3e08ca67762.svg", + "name": "Button3", + "md5": "ffb2a9c21084c58fdb677c8d12a97519.svg", "type": "sprite", - "tags": [ - "things", - "sports", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "Baseball", + "objName": "Button3", "sounds": [ { "soundName": "pop", @@ -1273,62 +863,46 @@ ], "costumes": [ { - "costumeName": "baseball", + "costumeName": "button3-a", "baseLayerID": -1, - "baseLayerMD5": "274ee8922ac6f09c9695f3e08ca67762.svg", - "rotationCenterX": 34, - "rotationCenterY": 31 + "baseLayerMD5": "ffb2a9c21084c58fdb677c8d12a97519.svg", + "bitmapResolution": 1, + "rotationCenterX": 72, + "rotationCenterY": 72 + }, + { + "costumeName": "button3-b", + "baseLayerID": -1, + "baseLayerMD5": "7a9ccb55e4da36f48811ab125d2492e0.svg", + "bitmapResolution": 1, + "rotationCenterX": 72, + "rotationCenterY": 72 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -58, + "scratchY": 10, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 20, "visible": true, "spriteInfo": {} } }, { - "name": "Basketball", - "md5": "44c276b7abda0d5c3e1c7fbca5fc0d07.svg", + "name": "Button4", + "md5": "8782b457cdf4a10ca016ff1ec0c744ef.svg", "type": "sprite", - "tags": [ - "things", - "sports", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, - 1, - 0 + 2, + 1 ], "json": { - "objName": "Basketball", - "costumes": [ - { - "costumeName": "basketball", - "baseLayerID": -1, - "baseLayerMD5": "44c276b7abda0d5c3e1c7fbca5fc0d07.svg", - "bitmapResolution": 1, - "rotationCenterX": 36, - "rotationCenterY": 39 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {}, + "objName": "Button4", "sounds": [ { "soundName": "pop", @@ -1338,131 +912,49 @@ "rate": 11025, "format": "" } - ] - } - }, - { - "name": "Bass", - "md5": "0e7d9b8edd9236867be4b0189afcf4b0.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 8 - ], - "json": { - "objName": "Bass", - "sounds": [ - { - "soundName": "C bass", - "soundID": -1, - "md5": "c3566ec797b483acde28f790994cc409.wav", - "sampleCount": 44608, - "rate": 22050, - "format": "" - }, - { - "soundName": "D bass", - "soundID": -1, - "md5": "5a3ae8a2665f50fdc38cc301fbac79ba.wav", - "sampleCount": 40192, - "rate": 22050, - "format": "" - }, - { - "soundName": "E bass", - "soundID": -1, - "md5": "0657e39bae81a232b01a18f727d3b891.wav", - "sampleCount": 36160, - "rate": 22050, - "format": "" - }, - { - "soundName": "F bass", - "soundID": -1, - "md5": "ea21bdae86f70d60b28f1dddcf50d104.wav", - "sampleCount": 34368, - "rate": 22050, - "format": "" - }, - { - "soundName": "G bass", - "soundID": -1, - "md5": "05c192194e8f1944514dce3833e33439.wav", - "sampleCount": 30976, - "rate": 22050, - "format": "" - }, - { - "soundName": "A bass", - "soundID": -1, - "md5": "c04ebf21e5e19342fa1535e4efcdb43b.wav", - "sampleCount": 28160, - "rate": 22050, - "format": "" - }, - { - "soundName": "B bass", - "soundID": -1, - "md5": "e31dcaf7bcdf58ac2a26533c48936c45.wav", - "sampleCount": 25792, - "rate": 22050, - "format": "" - }, - { - "soundName": "C2 bass", - "soundID": -1, - "md5": "667d6c527b79321d398e85b526f15b99.wav", - "sampleCount": 24128, - "rate": 22050, - "format": "" - } ], "costumes": [ { - "costumeName": "bass", + "costumeName": "button4-a", "baseLayerID": -1, - "baseLayerMD5": "0e7d9b8edd9236867be4b0189afcf4b0.svg", + "baseLayerMD5": "8782b457cdf4a10ca016ff1ec0c744ef.svg", "bitmapResolution": 1, - "rotationCenterX": 60, - "rotationCenterY": 110 + "rotationCenterX": 35, + "rotationCenterY": 34 + }, + { + "costumeName": "button4-b", + "baseLayerID": -1, + "baseLayerMD5": "840f4ef01849e459fd84f5470a3b0080.svg", + "bitmapResolution": 1, + "rotationCenterX": 35, + "rotationCenterY": 34 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -32, + "scratchY": 48, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 21, "visible": true, "spriteInfo": {} } }, { - "name": "Bat1", - "md5": "98af2f7e5da8d1f39b30dd69b180c776.svg", + "name": "Button5", + "md5": "71e97245b7be4fd6fe3ba8cdeecadaf1.svg", "type": "sprite", - "tags": [ - "animals", - "drawing", - "flying", - "vector" - ], + "tags": [], "info": [ 0, 2, 1 ], "json": { - "objName": "Bat1", + "objName": "Button5", "sounds": [ { "soundName": "pop", @@ -1475,121 +967,124 @@ ], "costumes": [ { - "costumeName": "bat1-a ", + "costumeName": "button5-a", "baseLayerID": -1, - "baseLayerMD5": "98af2f7e5da8d1f39b30dd69b180c776.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "baseLayerMD5": "71e97245b7be4fd6fe3ba8cdeecadaf1.svg", + "bitmapResolution": 1, + "rotationCenterX": 72, + "rotationCenterY": 72 }, { - "costumeName": "bat1-b ", + "costumeName": "button5-b", "baseLayerID": -1, - "baseLayerMD5": "cd39b52370976fbeb70c035c920c40b2.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "baseLayerMD5": "54cd55512f7571060e6e64168e541222.svg", + "bitmapResolution": 1, + "rotationCenterX": 72, + "rotationCenterY": 72 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": 37, + "scratchY": 37, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 22, "visible": true, "spriteInfo": {} } }, { - "name": "Bat2", - "md5": "d9b3d454885ea253a16eab22a8db3a7f.svg", + "name": "Cake", + "md5": "97ab3596dc06510e963fa29795e663bf.svg", "type": "sprite", - "tags": [ - "animals", - "drawing", - "flying", - "vector" - ], + "tags": [], "info": [ 0, 2, 1 ], "json": { - "objName": "Bat2", + "objName": "Cake", "sounds": [ { - "soundName": "pop", + "soundName": "birthday song", "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "md5": "89691587a169d935a58c48c3d4e78534.wav", + "sampleCount": 161408, + "rate": 22050, "format": "" } ], "costumes": [ { - "costumeName": "bat2-a ", + "costumeName": "cake-a", "baseLayerID": -1, - "baseLayerMD5": "d9b3d454885ea253a16eab22a8db3a7f.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "baseLayerMD5": "97ab3596dc06510e963fa29795e663bf.svg", + "bitmapResolution": 1, + "rotationCenterX": 64, + "rotationCenterY": 50 }, { - "costumeName": "bat2-b ", + "costumeName": "cake-b", "baseLayerID": -1, - "baseLayerMD5": "4e101d71f85aae56d0dbe910a0ef29dc.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "baseLayerMD5": "61d5481955a2f42cb843d09506f6744e.svg", + "bitmapResolution": 1, + "rotationCenterX": 64, + "rotationCenterY": 42 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": 53, + "scratchY": 34, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 52, "visible": true, "spriteInfo": {} } }, { - "name": "Beachball", - "md5": "bf1d74888dfcdf6e1158ce8b774928f8.svg", + "name": "Cat", + "md5": "09dc888b0b7df19f70d81588ae73420e.svg", "type": "sprite", - "tags": [ - "things", - "sports", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "Beachball", + "objName": "Cat", "sounds": [ { - "soundName": "pop", + "soundName": "meow", "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, + "rate": 22050, "format": "" } ], "costumes": [ { - "costumeName": "beachball", + "costumeName": "costume1", "baseLayerID": -1, - "baseLayerMD5": "bf1d74888dfcdf6e1158ce8b774928f8.svg", - "rotationCenterX": 34, - "rotationCenterY": 33 + "baseLayerMD5": "09dc888b0b7df19f70d81588ae73420e.svg", + "bitmapResolution": 1, + "rotationCenterX": 47, + "rotationCenterY": 55 + }, + { + "costumeName": "costume2", + "baseLayerID": -1, + "baseLayerMD5": "3696356a03a8d938318876a593572843.svg", + "bitmapResolution": 1, + "rotationCenterX": 47, + "rotationCenterY": 55 } ], "currentCostumeIndex": 0, @@ -1599,141 +1094,127 @@ "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 1, "visible": true, "spriteInfo": {} } }, { - "name": "Bear1", - "md5": "273b8ed59311b92dae7d5a5583e2e4bc.svg", + "name": "Cat1 Flying", + "md5": "1e81725d2d2c7de4a2dd4a145198a43c.svg", "type": "sprite", - "tags": [ - "animals", - "holiday", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, 2, 1 ], "json": { - "objName": "Bear1", + "objName": "Cat1 Flying", "sounds": [ { - "soundName": "plunge", + "soundName": "pop", "soundID": -1, - "md5": "c09455ee9da0e7eeead42d4e73c2555d.wav", - "sampleCount": 22400, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, "rate": 11025, "format": "" } ], "costumes": [ { - "costumeName": "bear1-a", + "costumeName": "cat1 flying-a", "baseLayerID": -1, - "baseLayerMD5": "273b8ed59311b92dae7d5a5583e2e4bc.svg", + "baseLayerMD5": "1e81725d2d2c7de4a2dd4a145198a43c.svg", "bitmapResolution": 1, - "rotationCenterX": 56, - "rotationCenterY": 93 + "rotationCenterX": 67, + "rotationCenterY": 48 }, { - "costumeName": "bear1-b", + "costumeName": "cat1 flying-b", "baseLayerID": -1, - "baseLayerMD5": "4af6b54b78c9cc306040cc33b8d9ffbe.svg", + "baseLayerMD5": "0d192725870ef0eda50d91cab0e3c9c5.svg", "bitmapResolution": 1, - "rotationCenterX": 56, - "rotationCenterY": 93 + "rotationCenterX": 42, + "rotationCenterY": 44 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -53, + "scratchY": -14, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 44, "visible": true, "spriteInfo": {} } }, { - "name": "Bear2", - "md5": "25faec47fbd4ed585751942d8051a4df.svg", + "name": "Crab", + "md5": "114249a5660f7948663d95de575cfd8d.svg", "type": "sprite", - "tags": [ - "animals", - "holiday", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, 2, 1 ], "json": { - "objName": "Bear2", + "objName": "Crab", "sounds": [ { - "soundName": "meow", + "soundName": "pop", "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" } ], "costumes": [ { - "costumeName": "bear2-a", + "costumeName": "crab-a", "baseLayerID": -1, - "baseLayerMD5": "25faec47fbd4ed585751942d8051a4df.svg", + "baseLayerMD5": "114249a5660f7948663d95de575cfd8d.svg", "bitmapResolution": 1, - "rotationCenterX": 37, - "rotationCenterY": 42 + "rotationCenterX": 75, + "rotationCenterY": 75 }, { - "costumeName": "bear2-b", + "costumeName": "crab-b", "baseLayerID": -1, - "baseLayerMD5": "69f98b581bd034e14f25236b6abe6dba.svg", + "baseLayerMD5": "9bf050664e68c10d2616e85f2873be09.svg", "bitmapResolution": 1, - "rotationCenterX": 51, - "rotationCenterY": 42 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": 45, + "scratchY": -33, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 23, "visible": true, "spriteInfo": {} } }, { - "name": "Beetle", - "md5": "3464f9ddb54a3e8784604382650b2ed1.svg", + "name": "Dinoaur1", + "md5": "286094ffce382c8383519ab896711989.svg", "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, - 1, + 7, 1 ], "json": { - "objName": "Beetle", + "objName": "Dinoaur1", "sounds": [ { "soundName": "pop", @@ -1746,212 +1227,226 @@ ], "costumes": [ { - "costumeName": "beetle", + "costumeName": "dinosaur1-a", "baseLayerID": -1, - "baseLayerMD5": "3464f9ddb54a3e8784604382650b2ed1.svg", - "rotationCenterX": 43, - "rotationCenterY": 38 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "baseLayerMD5": "286094ffce382c8383519ab896711989.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 84 + }, + { + "costumeName": "dinosaur1-b", + "baseLayerID": -1, + "baseLayerMD5": "d9eca17b8569f2cde20ef7d3ed0fe19f.svg", + "bitmapResolution": 1, + "rotationCenterX": 116, + "rotationCenterY": 79 + }, + { + "costumeName": "dinosaur1-c", + "baseLayerID": -1, + "baseLayerMD5": "ade3d2ec5029693ecdcca17974bad5fd.svg", + "bitmapResolution": 1, + "rotationCenterX": 65, + "rotationCenterY": 89 + }, + { + "costumeName": "dinosaur1-d", + "baseLayerID": -1, + "baseLayerMD5": "2aa7257a3e0a19ee315b23eaf7f56933.svg", + "bitmapResolution": 1, + "rotationCenterX": 45, + "rotationCenterY": 87 + }, + { + "costumeName": "dinosaur1-e", + "baseLayerID": -1, + "baseLayerMD5": "ed46ee11478715f7596d01fb0f98aa3f.svg", + "bitmapResolution": 1, + "rotationCenterX": 82, + "rotationCenterY": 84 + }, + { + "costumeName": "dinosaur1-f", + "baseLayerID": -1, + "baseLayerMD5": "39caf2473b1eee55edb688cfa3c240c7.svg", + "bitmapResolution": 1, + "rotationCenterX": 69, + "rotationCenterY": 76 + }, + { + "costumeName": "dinosaur1-g", + "baseLayerID": -1, + "baseLayerMD5": "f0f2aa4e8e015de497050d8d44bbfbf1.svg", + "bitmapResolution": 1, + "rotationCenterX": 68, + "rotationCenterY": 72 + } + ], + "currentCostumeIndex": 0, + "scratchX": -60, + "scratchY": 46, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 43, "visible": true, "spriteInfo": {} } }, { - "name": "Bell", - "md5": "aba7164ab9390ca00bd854cadc924160.svg", + "name": "Dinosaur2", + "md5": "ae724a0a6d6e0a2b33dded4140219fb0.svg", "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, - 1, - 2 + 2, + 1 ], "json": { - "objName": "Bell", + "objName": "Dinosaur2", "sounds": [ { - "soundName": "xylo1", - "soundID": -1, - "md5": "6ac484e97c1c1fe1384642e26a125e70.wav", - "sampleCount": 238232, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "bell toll", + "soundName": "pop", "soundID": -1, - "md5": "25d61e79cbeba4041eebeaebd7bf9598.wav", - "sampleCount": 45168, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, "rate": 11025, "format": "" } ], "costumes": [ { - "costumeName": "bell1", + "costumeName": "dinosaur2-a", "baseLayerID": -1, - "baseLayerMD5": "aba7164ab9390ca00bd854cadc924160.svg", + "baseLayerMD5": "ae724a0a6d6e0a2b33dded4140219fb0.svg", "bitmapResolution": 1, - "rotationCenterX": 59, - "rotationCenterY": 69 + "rotationCenterX": 75, + "rotationCenterY": 75 + }, + { + "costumeName": "dinosaur2-b", + "baseLayerID": -1, + "baseLayerMD5": "a01d31caaab3b14b9bb0e2cd5a86c70c.svg", + "bitmapResolution": 1, + "rotationCenterX": 67, + "rotationCenterY": 67 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": 74, + "scratchY": 44, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 45, "visible": true, "spriteInfo": {} } }, { - "name": "Bells", - "md5": "f65113d5918f6d66f8cd9fc9d38a796b.svg", + "name": "Dinosaur3", + "md5": "79bb51bbf809b412147f2a196f8c9292.svg", "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Bells", + "objName": "Dinosaur3", "sounds": [ { - "soundName": "xylo1", + "soundName": "pop", "soundID": -1, - "md5": "5c6964021197fdd4ff46a0f107e6d624.wav", - "sampleCount": 238995, - "rate": 22050, - "format": "adpcm" + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" } ], "costumes": [ { - "costumeName": "bells-a", - "baseLayerID": -1, - "baseLayerMD5": "f65113d5918f6d66f8cd9fc9d38a796b.svg", - "bitmapResolution": 1, - "rotationCenterX": 53, - "rotationCenterY": 51 - }, - { - "costumeName": "bells-b", + "costumeName": "dinosaur3", "baseLayerID": -1, - "baseLayerMD5": "bfc768eda1dbe5c4fff8495ae112ce42.svg", + "baseLayerMD5": "79bb51bbf809b412147f2a196f8c9292.svg", "bitmapResolution": 1, - "rotationCenterX": 48, - "rotationCenterY": 31 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -2, + "scratchY": 45, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 24, "visible": true, "spriteInfo": {} } }, { - "name": "Bowl", - "md5": "654aa363ff9cc8e3be32809a86ae0747.svg", + "name": "Diver1", + "md5": "853803d5600b66538474909c5438c8ee.svg", "type": "sprite", - "tags": [ - "things", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, 1, - 2 + 1 ], "json": { - "objName": "Bowl", + "objName": "Diver1", "sounds": [ { - "soundName": "boing", - "soundID": -1, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "water drop", + "soundName": "pop", "soundID": -1, - "md5": "aa488de9e2c871e9d4faecd246ed737a.wav", - "sampleCount": 8136, - "rate": 22050, - "format": "adpcm" + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" } ], "costumes": [ { - "costumeName": "bowl-a", + "costumeName": "diver1", "baseLayerID": -1, - "baseLayerMD5": "654aa363ff9cc8e3be32809a86ae0747.svg", + "baseLayerMD5": "853803d5600b66538474909c5438c8ee.svg", "bitmapResolution": 1, - "rotationCenterX": 30, - "rotationCenterY": 15 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1.2500000000000002, + "scratchX": 11, + "scratchY": 48, + "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 25, "visible": true, "spriteInfo": {} } }, { - "name": "Bowtie", - "md5": "71f265ce8fcd199ca32e39ef81170f15.svg", + "name": "Diver2", + "md5": "248d3e69ada69a64b1077149ef6a931a.svg", "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Bowtie", + "objName": "Diver2", "sounds": [ { "soundName": "pop", @@ -1964,236 +1459,150 @@ ], "costumes": [ { - "costumeName": "bowtie-a", - "baseLayerID": -1, - "baseLayerMD5": "71f265ce8fcd199ca32e39ef81170f15.svg", - "bitmapResolution": 1, - "rotationCenterX": 11, - "rotationCenterY": 4 - }, - { - "costumeName": "bowtie-b", + "costumeName": "diver2", "baseLayerID": -1, - "baseLayerMD5": "0cdeb8646f2d997572bf1aedd92963ad.svg", + "baseLayerMD5": "248d3e69ada69a64b1077149ef6a931a.svg", "bitmapResolution": 1, - "rotationCenterX": 11, - "rotationCenterY": 4 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1.6, + "scratchX": 89, + "scratchY": -48, + "scale": 1, "direction": 90, "rotationStyle": "normal", - "isDraggable": true, - "indexInLibrary": 100000, + "isDraggable": false, + "indexInLibrary": 26, "visible": true, "spriteInfo": {} } }, { - "name": "Breakdancer1", - "md5": "cafd225b63d3aeeedc8df926fe5b6ab4.png", + "name": "Dog1", + "md5": "39ddefa0cc58f3b1b06474d63d81ef56.svg", "type": "sprite", - "tags": [ - "people", - "dance", - "city", - "drawing", - "bitmap" - ], + "tags": [], "info": [ 0, - 3, + 2, 1 ], "json": { - "objName": "Breakdancer1", + "objName": "Dog1", "sounds": [ { - "soundName": "pop", + "soundName": "dog1", "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "md5": "b15adefc3c12f758b6dc6a045362532f.wav", + "sampleCount": 3672, + "rate": 22050, "format": "" } ], "costumes": [ { - "costumeName": "breakdancer1-a", - "baseLayerID": -1, - "baseLayerMD5": "cafd225b63d3aeeedc8df926fe5b6ab4.png", - "rotationCenterX": 113, - "rotationCenterY": 90 - }, - { - "costumeName": "breakdancer1-b", + "costumeName": "dog1-a", "baseLayerID": -1, - "baseLayerMD5": "84bcb1be206e8653a7d97549733c3db5.png", - "rotationCenterX": 30, - "rotationCenterY": 90 + "baseLayerMD5": "39ddefa0cc58f3b1b06474d63d81ef56.svg", + "bitmapResolution": 1, + "rotationCenterX": 83, + "rotationCenterY": 80 }, { - "costumeName": "breakdancer1-c", + "costumeName": "dog1-b", "baseLayerID": -1, - "baseLayerMD5": "b345babf9f78b5e88a288a4b13a7ca29.png", - "rotationCenterX": 35, - "rotationCenterY": 90 + "baseLayerMD5": "598f4aa3d8f671375d1d2b3acf753416.svg", + "bitmapResolution": 1, + "rotationCenterX": 83, + "rotationCenterY": 80 } ], - "currentCostumeIndex": 2, - "scratchX": 0, - "scratchY": 0, + "currentCostumeIndex": 0, + "scratchX": 78, + "scratchY": -36, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 46, "visible": true, "spriteInfo": {} } }, { - "name": "Buildings", - "md5": "48f6836ef7700ef090258f5797bb0fbe.svg", + "name": "Dog2", + "md5": "e921f865b19b27cd99e16a341dbf09c2.svg", "type": "sprite", - "tags": [ - "city", - "flying", - "things", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, - 10, + 3, 1 ], "json": { - "objName": "Buildings", + "objName": "Dog2", "sounds": [ { - "soundName": "pop", + "soundName": "dog1", "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "md5": "b15adefc3c12f758b6dc6a045362532f.wav", + "sampleCount": 3672, + "rate": 22050, "format": "" } ], "costumes": [ { - "costumeName": "building-a", - "baseLayerID": -1, - "baseLayerMD5": "48f6836ef7700ef090258f5797bb0fbe.svg", - "bitmapResolution": 1, - "rotationCenterX": 40, - "rotationCenterY": 30 - }, - { - "costumeName": "building-b", - "baseLayerID": -1, - "baseLayerMD5": "0993fdb92fdf5082ecee2e0bf4a08542.svg", - "bitmapResolution": 1, - "rotationCenterX": 46, - "rotationCenterY": -11 - }, - { - "costumeName": "building-c", - "baseLayerID": -1, - "baseLayerMD5": "7af3a04ef92753ddc25f98a287d6e166.svg", - "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 17 - }, - { - "costumeName": "building-d", - "baseLayerID": -1, - "baseLayerMD5": "1ab0c779c87009c049e66b6294d7e8da.svg", - "bitmapResolution": 1, - "rotationCenterX": 59, - "rotationCenterY": -10 - }, - { - "costumeName": "building-e", - "baseLayerID": -1, - "baseLayerMD5": "025125f65e72a84bffbcf05514e7006d.svg", - "bitmapResolution": 1, - "rotationCenterX": 36, - "rotationCenterY": 55 - }, - { - "costumeName": "building-f", - "baseLayerID": -1, - "baseLayerMD5": "67cdc0865426b287c1bba9204a46244c.svg", - "bitmapResolution": 1, - "rotationCenterX": 41, - "rotationCenterY": 27 - }, - { - "costumeName": "building-g", - "baseLayerID": -1, - "baseLayerMD5": "741801c5a4816f1d6c66e4d58f5d37df.svg", - "bitmapResolution": 1, - "rotationCenterX": 64, - "rotationCenterY": -65 - }, - { - "costumeName": "building-h", + "costumeName": "dog2-a", "baseLayerID": -1, - "baseLayerMD5": "e8ce785e70dcd248662ab7c401add420.svg", + "baseLayerMD5": "e921f865b19b27cd99e16a341dbf09c2.svg", "bitmapResolution": 1, - "rotationCenterX": 33, - "rotationCenterY": 136 + "rotationCenterX": 75, + "rotationCenterY": 75 }, { - "costumeName": "building-i", + "costumeName": "dog2-b", "baseLayerID": -1, - "baseLayerMD5": "d218f234cd6f5a6076ece1b7e798b23c.svg", + "baseLayerMD5": "891f2fb7daf79ba8b224a9173eeb0a63.svg", "bitmapResolution": 1, - "rotationCenterX": 31, - "rotationCenterY": -12 + "rotationCenterX": 75, + "rotationCenterY": 75 }, { - "costumeName": "building-j", + "costumeName": "dog2-c", "baseLayerID": -1, - "baseLayerMD5": "793c032ee10008e813d6f160c543f340.svg", + "baseLayerMD5": "cd236d5eef4431dea82983ac9eec406b.svg", "bitmapResolution": 1, - "rotationCenterX": 29, - "rotationCenterY": 33 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, + "scratchX": 99, + "scratchY": 27, + "scale": 0.75, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 47, "visible": true, "spriteInfo": {} } }, { - "name": "Bus", - "md5": "66895930177178ea01d9e610917f8acf.png", + "name": "Donut", + "md5": "9e7b4d153421dae04a24571d7e079e85.svg", "type": "sprite", - "tags": [ - "transportation", - "city", - "photo", - "bitmap" - ], + "tags": [], "info": [ 0, 1, 1 ], "json": { - "objName": "Bus", + "objName": "Donut", "sounds": [ { "soundName": "pop", @@ -2206,97 +1615,82 @@ ], "costumes": [ { - "costumeName": "bus", + "costumeName": "donut", "baseLayerID": -1, - "baseLayerMD5": "66895930177178ea01d9e610917f8acf.png", - "rotationCenterX": 120, - "rotationCenterY": 35 + "baseLayerMD5": "9e7b4d153421dae04a24571d7e079e85.svg", + "bitmapResolution": 1, + "rotationCenterX": 73, + "rotationCenterY": 15 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -2, + "scratchY": 43, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 27, "visible": true, "spriteInfo": {} } }, { - "name": "Butterfly1", - "md5": "bd34d09c4b65dedbca72588f6247fb79.svg", + "name": "Duck", + "md5": "c3baf7eedfbdac8cd1e4f1f1f779dc0c.svg", "type": "sprite", - "tags": [ - "animals", - "drawing", - "flying", - "vector" - ], + "tags": [], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Butterfly1", + "objName": "Duck", "sounds": [ { - "soundName": "pop", + "soundName": "duck", "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "md5": "af5b039e1b05e0ccb12944f648a8884e.wav", + "sampleCount": 5792, + "rate": 22050, "format": "" } ], "costumes": [ { - "costumeName": "butterfly1-a", - "baseLayerID": -1, - "baseLayerMD5": "bd34d09c4b65dedbca72588f6247fb79.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "butterfly1-b ", + "costumeName": "duck", "baseLayerID": -1, - "baseLayerMD5": "1887c20516f859a8344a0e23aa41b838.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "baseLayerMD5": "c3baf7eedfbdac8cd1e4f1f1f779dc0c.svg", + "bitmapResolution": 1, + "rotationCenterX": 61, + "rotationCenterY": 59 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": 60, + "scratchY": 49, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 49, "visible": true, "spriteInfo": {} } }, { - "name": "Butterfly2", - "md5": "419f8825cfcf53396bf9240cb65a5c48.svg", + "name": "Elephant", + "md5": "b3515b3805938b0fae4e527aa0b4524e.svg", "type": "sprite", - "tags": [ - "animals", - "drawing", - "flying", - "vector" - ], + "tags": [], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "Butterfly2", + "objName": "Elephant", "sounds": [ { "soundName": "pop", @@ -2309,42 +1703,46 @@ ], "costumes": [ { - "costumeName": "butterfly2 ", + "costumeName": "elephant-a ", "baseLayerID": -1, - "baseLayerMD5": "419f8825cfcf53396bf9240cb65a5c48.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 + "baseLayerMD5": "b3515b3805938b0fae4e527aa0b4524e.svg", + "bitmapResolution": 1, + "rotationCenterX": 107, + "rotationCenterY": 33 + }, + { + "costumeName": "elephant-b ", + "baseLayerID": -1, + "baseLayerMD5": "bce91fa266220d3679a4c19c4e38b1f7.svg", + "bitmapResolution": 1, + "rotationCenterX": 95, + "rotationCenterY": 40 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -51, + "scratchY": -17, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 50, "visible": true, "spriteInfo": {} } }, { - "name": "Butterfly3", - "md5": "b0345f9555179455e93d487bd89e7053.svg", + "name": "Fish1", + "md5": "df78f8195f72372846d96dc70cb0ad95.svg", "type": "sprite", - "tags": [ - "animals", - "drawing", - "flying", - "vector" - ], + "tags": [], "info": [ 0, 1, 1 ], "json": { - "objName": "Butterfly3", + "objName": "Fish1", "sounds": [ { "soundName": "pop", @@ -2357,41 +1755,38 @@ ], "costumes": [ { - "costumeName": "butterfly3 ", + "costumeName": "fish1", "baseLayerID": -1, - "baseLayerMD5": "b0345f9555179455e93d487bd89e7053.svg", + "baseLayerMD5": "df78f8195f72372846d96dc70cb0ad95.svg", + "bitmapResolution": 1, "rotationCenterX": 75, "rotationCenterY": 75 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -90, + "scratchY": -25, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 28, "visible": true, "spriteInfo": {} } }, { - "name": "Button1", - "md5": "eef95c930316eafd5b72b792e6476884.svg", + "name": "Fish2", + "md5": "f3dd9cb79cce497a90900241cf726367.svg", "type": "sprite", - "tags": [ - "things", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, 1, 1 ], "json": { - "objName": "Button1", + "objName": "Fish2", "sounds": [ { "soundName": "pop", @@ -2404,41 +1799,38 @@ ], "costumes": [ { - "costumeName": "button1", + "costumeName": "fish2", "baseLayerID": -1, - "baseLayerMD5": "eef95c930316eafd5b72b792e6476884.svg", - "rotationCenterX": 72, - "rotationCenterY": 72 + "baseLayerMD5": "f3dd9cb79cce497a90900241cf726367.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": 94, + "scratchY": 11, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 29, "visible": true, "spriteInfo": {} } }, { - "name": "Button2", - "md5": "6da6edf190c13d2b4bbd740690837f1b.svg", + "name": "Fish3", + "md5": "aec949cefb15ddd1330f3b633734d4d3.svg", "type": "sprite", - "tags": [ - "things", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Button2", + "objName": "Fish3", "sounds": [ { "soundName": "pop", @@ -2451,48 +1843,38 @@ ], "costumes": [ { - "costumeName": "button2-a", - "baseLayerID": -1, - "baseLayerMD5": "6da6edf190c13d2b4bbd740690837f1b.svg", - "rotationCenterX": 72, - "rotationCenterY": 72 - }, - { - "costumeName": "button2-b", + "costumeName": "fish3", "baseLayerID": -1, - "baseLayerMD5": "3835ce531f18a6de60d3087471e20944.svg", - "rotationCenterX": 72, - "rotationCenterY": 72 + "baseLayerMD5": "aec949cefb15ddd1330f3b633734d4d3.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -6, + "scratchY": -20, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 30, "visible": true, "spriteInfo": {} } }, { - "name": "Button3", - "md5": "023869c6647183613ad5c839b36d9316.svg", + "name": "Frog", + "md5": "285483a688eed2ff8010c65112f99c41.svg", "type": "sprite", - "tags": [ - "things", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Button3", + "objName": "Frog", "sounds": [ { "soundName": "pop", @@ -2505,48 +1887,38 @@ ], "costumes": [ { - "costumeName": "button3-a", - "baseLayerID": -1, - "baseLayerMD5": "023869c6647183613ad5c839b36d9316.svg", - "rotationCenterX": 72, - "rotationCenterY": 72 - }, - { - "costumeName": "button3-b", + "costumeName": "frog", "baseLayerID": -1, - "baseLayerMD5": "acdcc22bfc1db30fbed844f6fb36cb77.svg", - "rotationCenterX": 72, - "rotationCenterY": 72 + "baseLayerMD5": "285483a688eed2ff8010c65112f99c41.svg", + "bitmapResolution": 1, + "rotationCenterX": 48, + "rotationCenterY": 30 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -19, + "scratchY": -11, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 31, "visible": true, "spriteInfo": {} } }, { - "name": "Button4", - "md5": "8f4d59040d28614fe6ab5ab5fb6e8104.svg", + "name": "Ghost1", + "md5": "c88579c578f2d171de78612f2ff9c9d9.svg", "type": "sprite", - "tags": [ - "things", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, - 2, + 1, 1 ], "json": { - "objName": "Button4", + "objName": "Ghost1", "sounds": [ { "soundName": "pop", @@ -2559,50 +1931,38 @@ ], "costumes": [ { - "costumeName": "button4-a", - "baseLayerID": -1, - "baseLayerMD5": "8f4d59040d28614fe6ab5ab5fb6e8104.svg", - "bitmapResolution": 1, - "rotationCenterX": 35, - "rotationCenterY": 34 - }, - { - "costumeName": "button4-b", + "costumeName": "ghost1 ", "baseLayerID": -1, - "baseLayerMD5": "a8fd321060c4e0ea3e42e957a016140b.svg", + "baseLayerMD5": "c88579c578f2d171de78612f2ff9c9d9.svg", "bitmapResolution": 1, - "rotationCenterX": 35, - "rotationCenterY": 34 + "rotationCenterX": 60, + "rotationCenterY": 63 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": 90, + "scratchY": 38, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 32, "visible": true, "spriteInfo": {} } }, { - "name": "Button5", - "md5": "9a3afa68f238d9cba3ab07b704383932.svg", + "name": "Ghost2", + "md5": "607be245da950af1a4e4d79acfda46e3.svg", "type": "sprite", - "tags": [ - "things", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, 2, 1 ], "json": { - "objName": "Button5", + "objName": "Ghost2", "sounds": [ { "soundName": "pop", @@ -2615,107 +1975,114 @@ ], "costumes": [ { - "costumeName": "button5-a", + "costumeName": "ghost2-a", "baseLayerID": -1, - "baseLayerMD5": "9a3afa68f238d9cba3ab07b704383932.svg", + "baseLayerMD5": "607be245da950af1a4e4d79acfda46e3.svg", "bitmapResolution": 1, - "rotationCenterX": 72, - "rotationCenterY": 72 + "rotationCenterX": 75, + "rotationCenterY": 75 }, { - "costumeName": "button5-b", + "costumeName": "ghost2-b", "baseLayerID": -1, - "baseLayerMD5": "d6a44857a155a05c356add1330624ccc.svg", + "baseLayerMD5": "b9e2ebbe17c617ac182abd8bc1627693.svg", "bitmapResolution": 1, - "rotationCenterX": 72, - "rotationCenterY": 72 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": 39, + "scratchY": -22, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 51, "visible": true, "spriteInfo": {} } }, { - "name": "Cake", - "md5": "5f1d757c818c95f4f2dd68297a9edf1b.svg", + "name": "Giga", + "md5": "93cb048a1d199f92424b9c097fa5fa38.svg", "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, - 2, - 0 + 4, + 1 ], "json": { - "objName": "Cake", + "objName": "Giga", + "sounds": [ + { + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, + "format": "" + } + ], "costumes": [ { - "costumeName": "cake-a", + "costumeName": "giga-a", "baseLayerID": -1, - "baseLayerMD5": "5f1d757c818c95f4f2dd68297a9edf1b.svg", + "baseLayerMD5": "93cb048a1d199f92424b9c097fa5fa38.svg", "bitmapResolution": 1, - "rotationCenterX": 64, - "rotationCenterY": 50 + "rotationCenterX": 72, + "rotationCenterY": 96 }, { - "costumeName": "cake-b", + "costumeName": "giga-b", "baseLayerID": -1, - "baseLayerMD5": "477d3e15a755b525cf25534b8b7e8f42.svg", + "baseLayerMD5": "528613711a7eae3a929025be04db081c.svg", "bitmapResolution": 1, - "rotationCenterX": 64, - "rotationCenterY": 42 + "rotationCenterX": 72, + "rotationCenterY": 96 + }, + { + "costumeName": "giga-c", + "baseLayerID": -1, + "baseLayerMD5": "ee4dd21d7ca6d1b889ee25d245cbcc66.svg", + "bitmapResolution": 1, + "rotationCenterX": 73, + "rotationCenterY": 96 + }, + { + "costumeName": "giga-d", + "baseLayerID": -1, + "baseLayerMD5": "7708e2d9f83a01476ee6d17aa540ddf1.svg", + "bitmapResolution": 1, + "rotationCenterX": 73, + "rotationCenterY": 96 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": 36, + "scratchY": 20, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 54, "visible": true, - "spriteInfo": {}, - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ] + "spriteInfo": {} } }, { - "name": "Calvrett", - "md5": "82b2f97fec9083cad502a781fe88929b.png", + "name": "Gobo", + "md5": "1f5ea0d12f85aed2e471cdd21b0bd6d7.svg", "type": "sprite", - "tags": [ - "people", - "photo", - "bitmap" - ], + "tags": [], "info": [ 0, - 2, + 3, 1 ], "json": { - "objName": "Calvrett", + "objName": "Gobo", "sounds": [ { "soundName": "pop", @@ -2728,204 +2095,202 @@ ], "costumes": [ { - "costumeName": "calvrett jumping", + "costumeName": "gobo-a", + "baseLayerID": -1, + "baseLayerMD5": "1f5ea0d12f85aed2e471cdd21b0bd6d7.svg", + "bitmapResolution": 1, + "rotationCenterX": 47, + "rotationCenterY": 55 + }, + { + "costumeName": "gobo-b", "baseLayerID": -1, - "baseLayerMD5": "82b2f97fec9083cad502a781fe88929b.png", - "rotationCenterX": 84, - "rotationCenterY": 108 + "baseLayerMD5": "73e493e4abd5d0954b677b97abcb7116.svg", + "bitmapResolution": 1, + "rotationCenterX": 47, + "rotationCenterY": 55 }, { - "costumeName": "calvrett thinking", + "costumeName": "gobo-c", "baseLayerID": -1, - "baseLayerMD5": "b8d2409e58b663020353c08fb029b7e6.png", - "rotationCenterX": 54, - "rotationCenterY": 85 + "baseLayerMD5": "bc68a6bdf300df7b53d73b38f74c844e.svg", + "bitmapResolution": 1, + "rotationCenterX": 47, + "rotationCenterY": 55 } ], - "currentCostumeIndex": 1, - "scratchX": 0, - "scratchY": 0, + "currentCostumeIndex": 0, + "scratchX": -33, + "scratchY": 25, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 53, "visible": true, "spriteInfo": {} } }, { - "name": "Candle", - "md5": "cbc4204b66973a888260308a9aaa933f.svg", + "name": "Hippo1", + "md5": "c1353c4a5eec5e6f32ed053e6f6e8f99.svg", "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, 2, 1 ], "json": { - "objName": "Candle", + "objName": "Hippo1", "sounds": [ { - "soundName": "pop", + "soundName": "meow", "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, + "rate": 22050, "format": "" } ], "costumes": [ { - "costumeName": "candle1-a", + "costumeName": "hippo1-a", "baseLayerID": -1, - "baseLayerMD5": "cbc4204b66973a888260308a9aaa933f.svg", + "baseLayerMD5": "c1353c4a5eec5e6f32ed053e6f6e8f99.svg", "bitmapResolution": 1, - "rotationCenterX": 12, - "rotationCenterY": 32 + "rotationCenterX": 69, + "rotationCenterY": 65 }, { - "costumeName": "candle1-b", + "costumeName": "hippo1-b", "baseLayerID": -1, - "baseLayerMD5": "5c7fd9ff374c11b07f1ec4e6b1424209.svg", + "baseLayerMD5": "e65ed93bbb9cccf698fc7e774ab609a6.svg", "bitmapResolution": 1, - "rotationCenterX": 12, - "rotationCenterY": 32 - } + "rotationCenterX": 69, + "rotationCenterY": 68 + } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 0.75, + "scratchX": 59, + "scratchY": 37, + "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 55, "visible": true, "spriteInfo": {} } }, { - "name": "Candles1", - "md5": "dab3bc49ac040f70119734ea871774a7.svg", + "name": "Horse1", + "md5": "32f4d80477cd070cb0848e555d374060.svg", "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, - 1, + 2, 1 ], "json": { - "objName": "Candles1", + "objName": "Horse1", "sounds": [ { - "soundName": "strum", + "soundName": "meow", "soundID": -1, - "md5": "b92de59d992a655c1b542223a784cda6.wav", - "sampleCount": 11247, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, "rate": 22050, "format": "" } ], "costumes": [ { - "costumeName": "candles1", + "costumeName": "horse1-a", + "baseLayerID": -1, + "baseLayerMD5": "32f4d80477cd070cb0848e555d374060.svg", + "bitmapResolution": 1, + "rotationCenterX": 119, + "rotationCenterY": 83 + }, + { + "costumeName": "horse1-b", "baseLayerID": -1, - "baseLayerMD5": "dab3bc49ac040f70119734ea871774a7.svg", + "baseLayerMD5": "ffa6431c5ef2a4e975ecffacdb0efea7.svg", "bitmapResolution": 1, - "rotationCenterX": 52, - "rotationCenterY": 37 + "rotationCenterX": 103, + "rotationCenterY": 97 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -4, + "scratchY": -26, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 56, "visible": true, "spriteInfo": {} } }, { - "name": "Candles2", - "md5": "222a60c96e36ea05782785468a1c4129.svg", + "name": "Knight", + "md5": "f2c5e8bc24d001b81566879dbf2f1a13.svg", "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, 1, 1 ], "json": { - "objName": "Candles2", + "objName": "Knight", "sounds": [ { - "soundName": "strum", + "soundName": "pop", "soundID": -1, - "md5": "b92de59d992a655c1b542223a784cda6.wav", - "sampleCount": 11247, - "rate": 22050, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" } ], "costumes": [ { - "costumeName": "candles2", + "costumeName": "knight", "baseLayerID": -1, - "baseLayerMD5": "222a60c96e36ea05782785468a1c4129.svg", + "baseLayerMD5": "f2c5e8bc24d001b81566879dbf2f1a13.svg", "bitmapResolution": 1, - "rotationCenterX": 52, - "rotationCenterY": 79 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": 90, + "scratchY": -18, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 33, "visible": true, "spriteInfo": {} } }, { - "name": "Car-Bug", - "md5": "c0b7d099a815f58ff6d92538856f08c1.png", + "name": "Ladybug1", + "md5": "f16a1ccc69a4a8190a927f1595aa7bfa.svg", "type": "sprite", - "tags": [ - "transportation", - "city", - "photo", - "bitmap" - ], + "tags": [], "info": [ 0, 1, 1 ], "json": { - "objName": "Car-Bug", + "objName": "Ladybug1", "sounds": [ { "soundName": "pop", @@ -2938,112 +2303,150 @@ ], "costumes": [ { - "costumeName": "car-bug", + "costumeName": "ladybug2", "baseLayerID": -1, - "baseLayerMD5": "c0b7d099a815f58ff6d92538856f08c1.png", - "rotationCenterX": 100, - "rotationCenterY": 39 + "baseLayerMD5": "f16a1ccc69a4a8190a927f1595aa7bfa.svg", + "bitmapResolution": 1, + "rotationCenterX": 41, + "rotationCenterY": 43 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -90, + "scratchY": 42, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 34, "visible": true, "spriteInfo": {} } }, { - "name": "Cassy", - "md5": "db4e1ee1f9102e3da5e06f2d17881df5.png", + "name": "Lion", + "md5": "692a3c84366bf8ae4d16858e20e792f5.svg", "type": "sprite", - "tags": [ - "people", - "city", - "photo", - "bitmap" - ], + "tags": [], "info": [ 0, - 4, + 2, 1 ], "json": { - "objName": "Cassy", + "objName": "Lion", "sounds": [ { - "soundName": "pop", + "soundName": "meow", "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, + "rate": 22050, "format": "" } ], "costumes": [ { - "costumeName": "cassy-a", + "costumeName": "lion-a", "baseLayerID": -1, - "baseLayerMD5": "db4e1ee1f9102e3da5e06f2d17881df5.png", - "rotationCenterX": 43, - "rotationCenterY": 100 + "baseLayerMD5": "692a3c84366bf8ae4d16858e20e792f5.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 }, { - "costumeName": "cassy-b", + "costumeName": "lion-b", "baseLayerID": -1, - "baseLayerMD5": "2f6f57d1ab69fc18a38fd30572530437.png", - "rotationCenterX": 35, - "rotationCenterY": 100 + "baseLayerMD5": "a519ef168a345a2846d0201bf092a6d0.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 + } + ], + "currentCostumeIndex": 1, + "scratchX": 8, + "scratchY": 36, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 57, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Monkey2", + "md5": "6e4de762dbd52cd2b6356694a9668211.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 3, + 1 + ], + "json": { + "objName": "Monkey2", + "sounds": [ + { + "soundName": "chee chee", + "soundID": -1, + "md5": "25f4826cdd61e0a1c623ec2324c16ca0.wav", + "sampleCount": 34560, + "rate": 22050, + "format": "" + } + ], + "costumes": [ + { + "costumeName": "monkey2-a", + "baseLayerID": -1, + "baseLayerMD5": "6e4de762dbd52cd2b6356694a9668211.svg", + "bitmapResolution": 1, + "rotationCenterX": 68, + "rotationCenterY": 99 }, { - "costumeName": "cassy-c", + "costumeName": "monkey2-b", "baseLayerID": -1, - "baseLayerMD5": "662752d56bb77544f3e79ee8c16b3f2d.png", - "rotationCenterX": 70, - "rotationCenterY": 58 + "baseLayerMD5": "7662a3a0f4c6fa21fdf2de33bd80fe5f.svg", + "bitmapResolution": 1, + "rotationCenterX": 68, + "rotationCenterY": 99 }, { - "costumeName": "cassy-d", + "costumeName": "monkey2-c", "baseLayerID": -1, - "baseLayerMD5": "24e9dac390ae4e5b0c17e7d922eb033b.png", - "rotationCenterX": 72, - "rotationCenterY": 100 + "baseLayerMD5": "db8eb50b948047181922310bb94511fb.svg", + "bitmapResolution": 1, + "rotationCenterX": 68, + "rotationCenterY": 99 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, + "scratchX": -61, + "scratchY": 24, + "scale": 0.75, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 58, "visible": true, "spriteInfo": {} } }, { - "name": "Cassy Dance", - "md5": "6cb3686db1fa658b6541cc9fa3ccfcc7.png", + "name": "Nano", + "md5": "02c5433118f508038484bbc5b111e187.svg", "type": "sprite", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ], + "tags": [], "info": [ 0, 4, 1 ], "json": { - "objName": "Cassy Dance", + "objName": "Nano", "sounds": [ { "soundName": "pop", @@ -3056,66 +2459,62 @@ ], "costumes": [ { - "costumeName": "cassy dance-a", + "costumeName": "nano-a", "baseLayerID": -1, - "baseLayerMD5": "6cb3686db1fa658b6541cc9fa3ccfcc7.png", - "bitmapResolution": 2, - "rotationCenterX": 104, - "rotationCenterY": 192 + "baseLayerMD5": "02c5433118f508038484bbc5b111e187.svg", + "bitmapResolution": 1, + "rotationCenterX": 61, + "rotationCenterY": 60 }, { - "costumeName": "cassy dance-b", + "costumeName": "nano-b", "baseLayerID": -1, - "baseLayerMD5": "086dc4312d3bf4595d6b3fd4b1021b35.png", - "bitmapResolution": 2, - "rotationCenterX": 140, - "rotationCenterY": 192 + "baseLayerMD5": "10d6d9130618cd092ae02158cde2e113.svg", + "bitmapResolution": 1, + "rotationCenterX": 61, + "rotationCenterY": 60 }, { - "costumeName": "cassy dance-c", + "costumeName": "nano-c", "baseLayerID": -1, - "baseLayerMD5": "dffbfb382641655dbd698559ed49fd99.png", - "bitmapResolution": 2, - "rotationCenterX": 74, - "rotationCenterY": 188 + "baseLayerMD5": "85e762d45bc626ca2edb3472c7cfaa32.svg", + "bitmapResolution": 1, + "rotationCenterX": 61, + "rotationCenterY": 60 }, { - "costumeName": "cassy dance-d", + "costumeName": "nano-d", "baseLayerID": -1, - "baseLayerMD5": "d0e98431c4744f684a13e8331d838203.png", - "bitmapResolution": 2, - "rotationCenterX": 94, - "rotationCenterY": 180 + "baseLayerMD5": "b10925346da8080443f27e7dfaeff6f7.svg", + "bitmapResolution": 1, + "rotationCenterX": 61, + "rotationCenterY": 60 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -18, + "scratchY": 28, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 59, "visible": true, "spriteInfo": {} } }, { - "name": "Cat1", - "md5": "600a5c94fd2056dc0c88e70d9a6eff6b.svg", + "name": "Octopus", + "md5": "bb68d2e29d8572ef9de06f8033e668d9.svg", "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, 2, 1 ], "json": { - "objName": "Cat1", + "objName": "Octopus", "sounds": [ { "soundName": "meow", @@ -3128,157 +2527,142 @@ ], "costumes": [ { - "costumeName": "cat1-a", + "costumeName": "octopus-a", "baseLayerID": -1, - "baseLayerMD5": "600a5c94fd2056dc0c88e70d9a6eff6b.svg", + "baseLayerMD5": "bb68d2e29d8572ef9de06f8033e668d9.svg", "bitmapResolution": 1, - "rotationCenterX": 47, - "rotationCenterY": 50 + "rotationCenterX": 75, + "rotationCenterY": 75 }, { - "costumeName": "cat1-b", + "costumeName": "octopus-b", "baseLayerID": -1, - "baseLayerMD5": "4a613186f024c7ae8ab52b39eb083508.svg", + "baseLayerMD5": "b52bd3bc12553bb31b1395516c3cec4d.svg", "bitmapResolution": 1, - "rotationCenterX": 47, - "rotationCenterY": 55 + "rotationCenterX": 75, + "rotationCenterY": 75 } ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "currentCostumeIndex": 1, + "scratchX": 51, + "scratchY": 10, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 60, "visible": true, "spriteInfo": {} } }, { - "name": "Cat1 Flying", - "md5": "60050369a3b7c7ea3131943d1e1f2013.svg", + "name": "Parrot", + "md5": "098570b8e1aa85b32f9b4eb07bea3af2.svg", "type": "sprite", - "tags": [ - "animals", - "drawing", - "flying", - "vector" - ], + "tags": [], "info": [ 0, 2, 1 ], "json": { - "objName": "Cat1 Flying", + "objName": "Parrot", "sounds": [ { - "soundName": "pop", + "soundName": "bird", "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, + "md5": "18bd4b634a3f992a16b30344c7d810e0.wav", + "sampleCount": 3840, "rate": 11025, "format": "" } ], "costumes": [ { - "costumeName": "cat1 flying-a", + "costumeName": "parrot-a", "baseLayerID": -1, - "baseLayerMD5": "60050369a3b7c7ea3131943d1e1f2013.svg", + "baseLayerMD5": "098570b8e1aa85b32f9b4eb07bea3af2.svg", "bitmapResolution": 1, - "rotationCenterX": 67, - "rotationCenterY": 48 + "rotationCenterX": 86, + "rotationCenterY": 106 }, { - "costumeName": "cat1 flying-b", + "costumeName": "parrot-b", "baseLayerID": -1, - "baseLayerMD5": "fd665fc1fff732c2880b2493360cde43.svg", + "baseLayerMD5": "721255a0733c9d8d2ba518ff09b3b7cb.svg", "bitmapResolution": 1, - "rotationCenterX": 42, - "rotationCenterY": 44 + "rotationCenterX": 49, + "rotationCenterY": 31 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": 77, + "scratchY": 23, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 61, "visible": true, "spriteInfo": {} } }, { - "name": "Cat2", - "md5": "06ca0720be501ad99bce01a87b0ec246.svg", + "name": "Penguin1", + "md5": "c17d9e4bdb59c574e0c34aa70af516da.svg", "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, 1, 1 ], "json": { - "objName": "Cat2", + "objName": "Penguin1", "sounds": [ { - "soundName": "meow2", + "soundName": "pop", "soundID": -1, - "md5": "cf51a0c4088942d95bcc20af13202710.wav", - "sampleCount": 6512, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, "rate": 11025, "format": "" } ], "costumes": [ { - "costumeName": "cat2", + "costumeName": "penguin1", "baseLayerID": -1, - "baseLayerMD5": "06ca0720be501ad99bce01a87b0ec246.svg", + "baseLayerMD5": "c17d9e4bdb59c574e0c34aa70af516da.svg", "bitmapResolution": 1, - "rotationCenterX": 87, - "rotationCenterY": 39 + "rotationCenterX": 54, + "rotationCenterY": 61 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -58, + "scratchY": -19, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 35, "visible": true, "spriteInfo": {} } }, { - "name": "Catherine Dance", - "md5": "7f7684029e9726376aaaae1158439f3e.png", + "name": "Pico", + "md5": "0579fe60bb3717c49dfd7743caa84ada.svg", "type": "sprite", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ], + "tags": [], "info": [ 0, 4, 1 ], "json": { - "objName": "Catherine Dance", + "objName": "Pico", "sounds": [ { "soundName": "pop", @@ -3291,68 +2675,62 @@ ], "costumes": [ { - "costumeName": "catherine-a", + "costumeName": "pico-a", "baseLayerID": -1, - "baseLayerMD5": "7f7684029e9726376aaaae1158439f3e.png", - "bitmapResolution": 2, - "rotationCenterX": 84, - "rotationCenterY": 123 + "baseLayerMD5": "0579fe60bb3717c49dfd7743caa84ada.svg", + "bitmapResolution": 1, + "rotationCenterX": 55, + "rotationCenterY": 66 }, { - "costumeName": "catherine-b", + "costumeName": "pico-b", "baseLayerID": -1, - "baseLayerMD5": "79052da8d59a6a16a0f6d09cd94237ae.png", - "bitmapResolution": 2, - "rotationCenterX": 179, - "rotationCenterY": 133 + "baseLayerMD5": "26c688d7544757225ff51cd2fb1519b5.svg", + "bitmapResolution": 1, + "rotationCenterX": 55, + "rotationCenterY": 66 }, { - "costumeName": "catherine-c", + "costumeName": "pico-c", "baseLayerID": -1, - "baseLayerMD5": "6e34f695da1e18d53e6c050d95ba0e4a.png", - "bitmapResolution": 2, - "rotationCenterX": 103, - "rotationCenterY": 28 + "baseLayerMD5": "adf61e2090f8060e1e8b2b0604d03751.svg", + "bitmapResolution": 1, + "rotationCenterX": 55, + "rotationCenterY": 66 }, { - "costumeName": "catherine-d", + "costumeName": "pico-d", "baseLayerID": -1, - "baseLayerMD5": "feff7824a6fd6747391012dcfe9ac4f0.png", - "bitmapResolution": 2, - "rotationCenterX": 121, - "rotationCenterY": 113 + "baseLayerMD5": "594704bf12e3c4d9e83bb91661ad709a.svg", + "bitmapResolution": 1, + "rotationCenterX": 55, + "rotationCenterY": 66 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": 80, + "scratchY": -26, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 67, "visible": true, "spriteInfo": {} } }, { - "name": "Champ99", - "md5": "b940c99d8e677ac5773cb4d592b16734.png", + "name": "Rainbow", + "md5": "680a806bd87a28c8b25b5f9b6347f022.svg", "type": "sprite", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ], + "tags": [], "info": [ 0, - 7, + 1, 1 ], "json": { - "objName": "Champ99", + "objName": "Rainbow", "sounds": [ { "soundName": "pop", @@ -3365,369 +2743,146 @@ ], "costumes": [ { - "costumeName": "champ99-a", - "baseLayerID": -1, - "baseLayerMD5": "b940c99d8e677ac5773cb4d592b16734.png", - "bitmapResolution": 2, - "rotationCenterX": 248, - "rotationCenterY": 306 - }, - { - "costumeName": "champ99-b", - "baseLayerID": -1, - "baseLayerMD5": "2ebc7632bc9e665d9eeea93190fad7ad.png", - "bitmapResolution": 2, - "rotationCenterX": 164, - "rotationCenterY": 290 - }, - { - "costumeName": "champ99-c", - "baseLayerID": -1, - "baseLayerMD5": "bfcff80b0044c644c555ba24f2484106.png", - "bitmapResolution": 2, - "rotationCenterX": 152, - "rotationCenterY": 270 - }, - { - "costumeName": "champ99-d", - "baseLayerID": -1, - "baseLayerMD5": "34de53e52a768d60a96e3ae0c030dfc5.png", - "bitmapResolution": 2, - "rotationCenterX": 188, - "rotationCenterY": 260 - }, - { - "costumeName": "champ99-e", - "baseLayerID": -1, - "baseLayerMD5": "0cb685bf8584df9caf124da929ab3453.png", - "bitmapResolution": 2, - "rotationCenterX": 190, - "rotationCenterY": 248 - }, - { - "costumeName": "champ99-f", - "baseLayerID": -1, - "baseLayerMD5": "516d30b29aed8145718db421f4737953.png", - "bitmapResolution": 2, - "rotationCenterX": 114, - "rotationCenterY": 250 - }, - { - "costumeName": "champ99-g", + "costumeName": "rainbow", "baseLayerID": -1, - "baseLayerMD5": "49e0edcb319527d936981f06b4111d53.png", - "bitmapResolution": 2, - "rotationCenterX": 132, - "rotationCenterY": 258 + "baseLayerMD5": "680a806bd87a28c8b25b5f9b6347f022.svg", + "bitmapResolution": 1, + "rotationCenterX": 72, + "rotationCenterY": 36 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -91, + "scratchY": 11, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 36, "visible": true, "spriteInfo": {} } }, { - "name": "Cheesy-Puffs", - "md5": "4c99a77ba72abaf6c961e8684f8a8a9f.png", + "name": "Saxophone", + "md5": "a09b114b0652006ac66def94548073a9.svg", "type": "sprite", - "tags": [ - "things", - "photo", - "bitmap" - ], + "tags": [], "info": [ 0, - 1, - 1 + 2, + 8 ], "json": { - "objName": "Cheesy-Puffs", + "objName": "Saxophone", "sounds": [ { - "soundName": "pop", + "soundName": "C sax", "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "md5": "4d2c939d6953b5f241a27a62cf72de64.wav", + "sampleCount": 9491, + "rate": 22050, "format": "" - } - ], - "costumes": [ - { - "costumeName": "cheesy-puffs", - "baseLayerID": -1, - "baseLayerMD5": "4c99a77ba72abaf6c961e8684f8a8a9f.png", - "bitmapResolution": 2, - "rotationCenterX": 87, - "rotationCenterY": 72 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Cloud", - "md5": "d8c950449f91ae3c358ee4ea2e733ff8.svg", - "type": "sprite", - "tags": [ - "flying", - "city", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Cloud", - "sounds": [ + }, { - "soundName": "ripples", + "soundName": "D sax", "soundID": -1, - "md5": "4da8a805673c288965e1e5535c3f7f2b.wav", - "sampleCount": 10144, - "rate": 11025, + "md5": "39f41954a73c0e15d842061e1a4c5e1d.wav", + "sampleCount": 9555, + "rate": 22050, "format": "" - } - ], - "costumes": [ - { - "costumeName": "cloud", - "baseLayerID": -1, - "baseLayerMD5": "d8c950449f91ae3c358ee4ea2e733ff8.svg", - "bitmapResolution": 1, - "rotationCenterX": 71, - "rotationCenterY": 45 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 0.9, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Clouds", - "md5": "653d4b0a71db924465d746a38f794669.svg", - "type": "sprite", - "tags": [ - "flying", - "city", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 4, - 1 - ], - "json": { - "objName": "Clouds", - "sounds": [ + }, { - "soundName": "pop", + "soundName": "E sax", "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, + "md5": "3568b7dfe173fab6877a9ff1dcbcf1aa.wav", + "sampleCount": 7489, + "rate": 22050, "format": "" - } - ], - "costumes": [ + }, { - "costumeName": "cloud-a", - "baseLayerID": -1, - "baseLayerMD5": "653d4b0a71db924465d746a38f794669.svg", - "bitmapResolution": 1, - "rotationCenterX": 76, - "rotationCenterY": 19 + "soundName": "F sax", + "soundID": -1, + "md5": "2ae3083817bcd595e26ea2884b6684d5.wav", + "sampleCount": 7361, + "rate": 22050, + "format": "adpcm" }, { - "costumeName": "cloud-b", - "baseLayerID": -1, - "baseLayerMD5": "36b67da1152c9fd9256c7a8bbeb7e983.svg", - "bitmapResolution": 1, - "rotationCenterX": 101, - "rotationCenterY": 20 + "soundName": "G sax", + "soundID": -1, + "md5": "cefba5de46adfe5702485e0934bb1e13.wav", + "sampleCount": 7349, + "rate": 22050, + "format": "adpcm" }, { - "costumeName": "cloud-c", - "baseLayerID": -1, - "baseLayerMD5": "dd16487aa31e931b349481d8969327ae.svg", - "bitmapResolution": 1, - "rotationCenterX": 97, - "rotationCenterY": 9 + "soundName": "A sax", + "soundID": -1, + "md5": "420991e0d6d99292c6d736963842536a.wav", + "sampleCount": 6472, + "rate": 22050, + "format": "" }, { - "costumeName": "cloud-d", - "baseLayerID": -1, - "baseLayerMD5": "8a7ef4a06a241be5065c47b5178f0df5.svg", - "bitmapResolution": 1, - "rotationCenterX": 87, - "rotationCenterY": 21 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "CM Hip-Hop", - "md5": "db291ec7e061ecd4d797875e3aec0a09.png", - "type": "sprite", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ], - "info": [ - 0, - 8, - 1 - ], - "json": { - "objName": "CM Hip-Hop", - "sounds": [ + "soundName": "B sax", + "soundID": -1, + "md5": "653ebe92d491b49ad5d8101d629f567b.wav", + "sampleCount": 9555, + "rate": 22050, + "format": "" + }, { - "soundName": "dance snare beat", + "soundName": "C2 sax", "soundID": -1, - "md5": "562587bdb75e3a8124cdaa46ba0f648b.wav", - "sampleCount": 176401, + "md5": "ea8d34b18c3d8fe328cea201666458bf.wav", + "sampleCount": 7349, "rate": 22050, "format": "adpcm" } ], "costumes": [ { - "costumeName": "cm top stand", - "baseLayerID": -1, - "baseLayerMD5": "db291ec7e061ecd4d797875e3aec0a09.png", - "bitmapResolution": 2, - "rotationCenterX": 66, - "rotationCenterY": 226 - }, - { - "costumeName": "cm top R leg", - "baseLayerID": -1, - "baseLayerMD5": "b5cfa26a969dc001fb38d29c5ef8f1bf.png", - "bitmapResolution": 2, - "rotationCenterX": 90, - "rotationCenterY": 240 - }, - { - "costumeName": "cm top L leg", - "baseLayerID": -1, - "baseLayerMD5": "9b3224263e7c828c54326d9b4f22a74b.png", - "bitmapResolution": 2, - "rotationCenterX": 116, - "rotationCenterY": 238 - }, - { - "costumeName": "cm top ready", - "baseLayerID": -1, - "baseLayerMD5": "ab97d9c6e3c0efe27bfd9e44ac3af497.png", - "bitmapResolution": 2, - "rotationCenterX": 84, - "rotationCenterY": 180 - }, - { - "costumeName": "cm top L cross", - "baseLayerID": -1, - "baseLayerMD5": "3b0538ba8b6fcc0f938013b912e34305.png", - "bitmapResolution": 2, - "rotationCenterX": 122, - "rotationCenterY": 162 - }, - { - "costumeName": "cm top R cross", - "baseLayerID": -1, - "baseLayerMD5": "00716f8ab864ae479db3017146d28c64.png", - "bitmapResolution": 2, - "rotationCenterX": 156, - "rotationCenterY": 164 - }, - { - "costumeName": "cm pop L arm", + "costumeName": "saxophone-a", "baseLayerID": -1, - "baseLayerMD5": "ce0928c8dbc625661b44c3503debae7e.png", - "bitmapResolution": 2, - "rotationCenterX": 136, - "rotationCenterY": 243 + "baseLayerMD5": "a09b114b0652006ac66def94548073a9.svg", + "bitmapResolution": 1, + "rotationCenterX": 69, + "rotationCenterY": 80 }, { - "costumeName": "cm pop R arm", + "costumeName": "saxophone-b", "baseLayerID": -1, - "baseLayerMD5": "e5555af183c643c7006632b26d851a32.png", - "bitmapResolution": 2, - "rotationCenterX": 79, - "rotationCenterY": 229 + "baseLayerMD5": "366c42cc65497f5007c9377a2d4d854b.svg", + "bitmapResolution": 1, + "rotationCenterX": 69, + "rotationCenterY": 80 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -51, + "scratchY": 23, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 62, "visible": true, "spriteInfo": {} } }, { - "name": "Convertible1", - "md5": "099953d710d842e592084765c17bda82.png", + "name": "Shark", + "md5": "7c0a907eae79462f69f8e2af8e7df828.svg", "type": "sprite", - "tags": [ - "transportation", - "city", - "drawing", - "bitmap" - ], + "tags": [], "info": [ 0, - 1, + 3, 1 ], "json": { - "objName": "Convertible1", + "objName": "Shark", "sounds": [ { "soundName": "pop", @@ -3740,42 +2895,54 @@ ], "costumes": [ { - "costumeName": "convertible1", + "costumeName": "shark-a ", + "baseLayerID": -1, + "baseLayerMD5": "7c0a907eae79462f69f8e2af8e7df828.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 + }, + { + "costumeName": "shark-b ", "baseLayerID": -1, - "baseLayerMD5": "099953d710d842e592084765c17bda82.png", - "rotationCenterX": 110, - "rotationCenterY": 27 + "baseLayerMD5": "cff9ae87a93294693a0650b38a7a33d2.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 + }, + { + "costumeName": "shark-c ", + "baseLayerID": -1, + "baseLayerMD5": "afeae3f998598424f7c50918507f6ce6.svg", + "bitmapResolution": 1, + "rotationCenterX": 77, + "rotationCenterY": 37 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": 65, + "scratchY": 34, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 63, "visible": true, "spriteInfo": {} } }, { - "name": "Convertible2", - "md5": "2091f1f3fc578189bced6b257f353995.png", + "name": "Snowman", + "md5": "56c71c31c17b9bc66a2aab0342cf94b2.svg", "type": "sprite", - "tags": [ - "transportation", - "city", - "drawing", - "bitmap" - ], + "tags": [], "info": [ 0, 1, 1 ], "json": { - "objName": "Convertible2", + "objName": "Snowman", "sounds": [ { "soundName": "pop", @@ -3788,30162 +2955,326 @@ ], "costumes": [ { - "costumeName": "convertible2", - "baseLayerID": -1, - "baseLayerMD5": "2091f1f3fc578189bced6b257f353995.png", - "rotationCenterX": 90, - "rotationCenterY": 22 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Convertible3", - "md5": "d48524491165f7b29017a5ab29f6b570.svg", - "type": "sprite", - "tags": [ - "transportation", - "city", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Convertible3", - "sounds": [ - { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "convertible3", + "costumeName": "snowman", "baseLayerID": -1, - "baseLayerMD5": "d48524491165f7b29017a5ab29f6b570.svg", + "baseLayerMD5": "56c71c31c17b9bc66a2aab0342cf94b2.svg", "bitmapResolution": 1, "rotationCenterX": 75, "rotationCenterY": 75 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -86, + "scratchY": 45, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 37, "visible": true, "spriteInfo": {} } }, { - "name": "Cowbell", - "md5": "3751e704567f95a75b0c9778ae4dc05f.svg", + "name": "Speaker", + "md5": "44dc3a2ec161999545914d1f77332d76.svg", "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, 1, - 2 + 7 ], "json": { - "objName": "Cowbell", - "sounds": [ + "objName": "Speaker", + "variables": [ { - "soundName": "small cowbell", - "soundID": -1, - "md5": "e29154f53f56f96f8a3292bdcddcec54.wav", - "sampleCount": 9718, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "large cowbell", - "soundID": -1, - "md5": "006316650ffc673dc02d36aa55881327.wav", - "sampleCount": 20856, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "cowbell", - "baseLayerID": -1, - "baseLayerMD5": "3751e704567f95a75b0c9778ae4dc05f.svg", - "bitmapResolution": 1, - "rotationCenterX": 29, - "rotationCenterY": 30 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Crab", - "md5": "08c149fbbc493200e7729d2e7482f948.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "underwater", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Crab", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "crab-a", - "baseLayerID": -1, - "baseLayerMD5": "08c149fbbc493200e7729d2e7482f948.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "crab-b", - "baseLayerID": -1, - "baseLayerMD5": "2ff73ab595fadbf771f4b80160767f88.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Creature1", - "md5": "42df94456fea022bf2a8816aca6e7f34.svg", - "type": "sprite", - "tags": [ - "fantasy", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "Creature1", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "creature1-a", - "baseLayerID": -1, - "baseLayerMD5": "42df94456fea022bf2a8816aca6e7f34.svg", - "bitmapResolution": 1, - "rotationCenterX": 54, - "rotationCenterY": 80 - }, - { - "costumeName": "creature1-b", - "baseLayerID": -1, - "baseLayerMD5": "764c5b4407e9be59615d7bda300a4be8.svg", - "bitmapResolution": 1, - "rotationCenterX": 60, - "rotationCenterY": 78 - }, - { - "costumeName": "creature1-c", - "baseLayerID": -1, - "baseLayerMD5": "f58c37191085080c2573e0ea0cb4dd91.svg", - "bitmapResolution": 1, - "rotationCenterX": 63, - "rotationCenterY": 164 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Cymbal", - "md5": "1222ec32b0326521f5397c57515e5f1e.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 5 - ], - "json": { - "objName": "Cymbal", - "sounds": [ - { - "soundName": "crash cymbal", - "soundID": -1, - "md5": "f2c47a46f614f467a7ac802ed9ec3d8e.wav", - "sampleCount": 25220, - "rate": 22050, - "format": "" - }, - { - "soundName": "hihat cymbal", - "soundID": -1, - "md5": "2d01f60d0f20ab39facbf707899c6b2a.wav", - "sampleCount": 2752, - "rate": 22050, - "format": "" - }, - { - "soundName": "splash cymbal", - "soundID": -1, - "md5": "9d63ed5be96c43b06492e8b4a9cea8d8.wav", - "sampleCount": 9600, - "rate": 22050, - "format": "" - }, - { - "soundName": "roll cymbal", - "soundID": -1, - "md5": "da8355d753cd2a5ddd19cb2bb41c1547.wav", - "sampleCount": 26432, - "rate": 22050, - "format": "" - }, - { - "soundName": "bell cymbal", - "soundID": -1, - "md5": "efddec047de95492f775a1b5b2e8d19e.wav", - "sampleCount": 19328, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "cymbal-a", - "baseLayerID": -1, - "baseLayerMD5": "1222ec32b0326521f5397c57515e5f1e.svg", - "bitmapResolution": 1, - "rotationCenterX": 34, - "rotationCenterY": 60 - }, - { - "costumeName": "cymbal-b", - "baseLayerID": -1, - "baseLayerMD5": "36e399a41facfbf02ca4725e635f5bce.svg", - "bitmapResolution": 1, - "rotationCenterX": 37, - "rotationCenterY": 73 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "D-Money Hip-Hop", - "md5": "ac79d709a81d6cfd9ec4fc4b9b28ccd0.svg", - "type": "sprite", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ], - "info": [ - 0, - 13, - 1 - ], - "json": { - "objName": "D-Money Hip-Hop", - "sounds": [ - { - "soundName": "dance celebrate", - "soundID": -1, - "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav", - "sampleCount": 176401, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "dm stance", - "baseLayerID": -1, - "baseLayerMD5": "ac79d709a81d6cfd9ec4fc4b9b28ccd0.svg", - "bitmapResolution": 1, - "rotationCenterX": 55, - "rotationCenterY": 119 - }, - { - "costumeName": "dm top stand", - "baseLayerID": -1, - "baseLayerMD5": "cbf035d39d0a0bb070d2eb998cebd60d.png", - "bitmapResolution": 2, - "rotationCenterX": 82, - "rotationCenterY": 244 - }, - { - "costumeName": "dm top R leg", - "baseLayerID": -1, - "baseLayerMD5": "fcb8c2b6cf9b7e6ce9df521b2486deb3.png", - "bitmapResolution": 2, - "rotationCenterX": 218, - "rotationCenterY": 232 - }, - { - "costumeName": "dm top L leg", - "baseLayerID": -1, - "baseLayerMD5": "fd8bb9665fe078d2d95dbc35bccf4046.png", - "bitmapResolution": 2, - "rotationCenterX": 230, - "rotationCenterY": 240 - }, - { - "costumeName": "dm freeze", - "baseLayerID": -1, - "baseLayerMD5": "31e687f186b19ea120cd5cfc9dea2a3f.png", - "bitmapResolution": 2, - "rotationCenterX": 220, - "rotationCenterY": 234 - }, - { - "costumeName": "dm pop front", - "baseLayerID": -1, - "baseLayerMD5": "0b2fb609d6d10decfdd5a1c3b58369b4.png", - "bitmapResolution": 2, - "rotationCenterX": 92, - "rotationCenterY": 234 - }, - { - "costumeName": "dm pop down", - "baseLayerID": -1, - "baseLayerMD5": "3b65ce3551f9c111794f7f1fb8f325be.png", - "bitmapResolution": 2, - "rotationCenterX": 64, - "rotationCenterY": 74 - }, - { - "costumeName": "dm pop left", - "baseLayerID": -1, - "baseLayerMD5": "f636510e8ef231d7c0e72a572ce91c99.png", - "bitmapResolution": 2, - "rotationCenterX": 204, - "rotationCenterY": 250 - }, - { - "costumeName": "dm pop right", - "baseLayerID": -1, - "baseLayerMD5": "36b32430e45e071071052ef33c637f48.png", - "bitmapResolution": 2, - "rotationCenterX": 78, - "rotationCenterY": 238 - }, - { - "costumeName": "dm pop L arm", - "baseLayerID": -1, - "baseLayerMD5": "426e1520efc34fef45be0596fd5f7120.png", - "bitmapResolution": 2, - "rotationCenterX": 90, - "rotationCenterY": 238 + "name": "scale degree", + "value": 1, + "isPersistent": false }, { - "costumeName": "dm pop stand", - "baseLayerID": -1, - "baseLayerMD5": "370cc57b40f1f1d6e52d6330b73d207f.png", - "bitmapResolution": 2, - "rotationCenterX": 100, - "rotationCenterY": 244 + "name": "octave", + "value": 0, + "isPersistent": false }, { - "costumeName": "dm pop R arm", - "baseLayerID": -1, - "baseLayerMD5": "56fe91d2cf3ecb9d1b94006aee9eff79.png", - "bitmapResolution": 2, - "rotationCenterX": 80, - "rotationCenterY": 240 + "name": "note number", + "value": 62, + "isPersistent": false }, { - "costumeName": "dm top R leg2", - "baseLayerID": -1, - "baseLayerMD5": "fcb8c2b6cf9b7e6ce9df521b2486deb3.png", - "bitmapResolution": 2, - "rotationCenterX": 218, - "rotationCenterY": 232 + "name": "loop number", + "value": 1, + "isPersistent": false } ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Dan", - "md5": "1baa5b126e0e14d6070a997c0deefab5.png", - "type": "sprite", - "tags": [ - "people", - "city", - "photo", - "bitmap" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Dan", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "dan-a", - "baseLayerID": -1, - "baseLayerMD5": "1baa5b126e0e14d6070a997c0deefab5.png", - "rotationCenterX": 36, - "rotationCenterY": 100 - }, - { - "costumeName": "dan-b", - "baseLayerID": -1, - "baseLayerMD5": "74be10ac815fd090cb42b92801002bb1.png", - "rotationCenterX": 47, - "rotationCenterY": 100 - } - ], - "currentCostumeIndex": 1, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Dani", - "md5": "36478fadce5ab3fd58042a9bfdb40427.svg", - "type": "sprite", - "tags": [ - "dress-up", - "people", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "Dani", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "dani-a", - "baseLayerID": -1, - "baseLayerMD5": "36478fadce5ab3fd58042a9bfdb40427.svg", - "bitmapResolution": 1, - "rotationCenterX": 49, - "rotationCenterY": 115 - }, - { - "costumeName": "dani-b", - "baseLayerID": -1, - "baseLayerMD5": "87c128294c65ac6a15ded9d72f2e60e7.svg", - "bitmapResolution": 1, - "rotationCenterX": 82, - "rotationCenterY": 115 - }, - { - "costumeName": "dani-c", - "baseLayerID": -1, - "baseLayerMD5": "8d581b54d7e57f779166fdb7aa88be2d.svg", - "bitmapResolution": 1, - "rotationCenterX": 49, - "rotationCenterY": 113 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Dee", - "md5": "4c3dc261428b5f4e6539e780aa493d17.svg", - "type": "sprite", - "tags": [ - "people", - "city", - "drawing", - "vector" - ], - "info": [ - 0, - 5, - 1 - ], - "json": { - "objName": "Dee", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "dee-a", - "baseLayerID": -1, - "baseLayerMD5": "4c3dc261428b5f4e6539e780aa493d17.svg", - "bitmapResolution": 1, - "rotationCenterX": 52, - "rotationCenterY": 99 - }, - { - "costumeName": "dee-b", - "baseLayerID": -1, - "baseLayerMD5": "a349e2493df576f6de326be6c5d6faff.svg", - "bitmapResolution": 1, - "rotationCenterX": 33, - "rotationCenterY": 99 - }, - { - "costumeName": "dee-c", - "baseLayerID": -1, - "baseLayerMD5": "55b7d7bccf533dcc624c86c7f5bca713.svg", - "bitmapResolution": 1, - "rotationCenterX": 36, - "rotationCenterY": 102 - }, - { - "costumeName": "dee-d", - "baseLayerID": -1, - "baseLayerMD5": "2b13e3542b27d7e34b1b0409dff364e1.svg", - "bitmapResolution": 1, - "rotationCenterX": 33, - "rotationCenterY": 99 - }, - { - "costumeName": "dee-e", - "baseLayerID": -1, - "baseLayerMD5": "bf5483fc3a0eb283419626bd9083fb4b.svg", - "bitmapResolution": 1, - "rotationCenterX": 32, - "rotationCenterY": 99 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Devin", - "md5": "7b5e6802b3cae8d833bdbfa335cdd816.svg", - "type": "sprite", - "tags": [ - "people", - "city", - "drawing", - "vector" - ], - "info": [ - 0, - 4, - 1 - ], - "json": { - "objName": "Devin", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "devin-a", - "baseLayerID": -1, - "baseLayerMD5": "7b5e6802b3cae8d833bdbfa335cdd816.svg", - "bitmapResolution": 1, - "rotationCenterX": 39, - "rotationCenterY": 95 - }, - { - "costumeName": "devin-b", - "baseLayerID": -1, - "baseLayerMD5": "ca740a7b77826f3258c14826d20a7d08.svg", - "bitmapResolution": 1, - "rotationCenterX": 40, - "rotationCenterY": 96 - }, - { - "costumeName": "devin-c", - "baseLayerID": -1, - "baseLayerMD5": "c9a2d504bc16587717289a3b76c772d5.svg", - "bitmapResolution": 1, - "rotationCenterX": 32, - "rotationCenterY": 95 - }, - { - "costumeName": "devin-d", - "baseLayerID": -1, - "baseLayerMD5": "0874037661ea4291a5468b6a05b66665.svg", - "bitmapResolution": 1, - "rotationCenterX": 41, - "rotationCenterY": 95 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Dinosaur1", - "md5": "76173aeeb992558179a16632dc37c32e.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector" - ], - "info": [ - 0, - 7, - 1 - ], - "json": { - "objName": "Dinoaur1", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "dinosaur1-a", - "baseLayerID": -1, - "baseLayerMD5": "76173aeeb992558179a16632dc37c32e.svg", - "rotationCenterX": 75, - "rotationCenterY": 84 - }, - { - "costumeName": "dinosaur1-b", - "baseLayerID": -1, - "baseLayerMD5": "f8b813d18536ad33ff7c08851fa9bdc9.svg", - "rotationCenterX": 116, - "rotationCenterY": 79 - }, - { - "costumeName": "dinosaur1-c", - "baseLayerID": -1, - "baseLayerMD5": "c62387957783294b49f34cbdf7e826cd.svg", - "rotationCenterX": 65, - "rotationCenterY": 89 - }, - { - "costumeName": "dinosaur1-d", - "baseLayerID": -1, - "baseLayerMD5": "ae64aec419147eacb84542322074e919.svg", - "rotationCenterX": 45, - "rotationCenterY": 87 - }, - { - "costumeName": "dinosaur1-e", - "baseLayerID": -1, - "baseLayerMD5": "cef391a438a097e83a8f484d819ef723.svg", - "rotationCenterX": 82, - "rotationCenterY": 84 - }, - { - "costumeName": "dinosaur1-f", - "baseLayerID": -1, - "baseLayerMD5": "ad3c8fa79bb8db02ef64e648220dbc58.svg", - "rotationCenterX": 69, - "rotationCenterY": 76 - }, - { - "costumeName": "dinosaur1-g", - "baseLayerID": -1, - "baseLayerMD5": "ca1d4633b61decc3ff734d3032928e20.svg", - "rotationCenterX": 68, - "rotationCenterY": 72 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Dinosaur2", - "md5": "4ab5e5d5382fa49d06ab706692f1a4a8.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Dinosaur2", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "dinosaur2-a", - "baseLayerID": -1, - "baseLayerMD5": "4ab5e5d5382fa49d06ab706692f1a4a8.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "dinosaur2-b", - "baseLayerID": -1, - "baseLayerMD5": "cf4271c61192b9b40ca1f4cedb276b4c.svg", - "bitmapResolution": 1, - "rotationCenterX": 67, - "rotationCenterY": 67 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Dinosaur3", - "md5": "0a81c9793556deaa3b08a3ec4afc38e0.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Dinosaur3", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "dinosaur3", - "baseLayerID": -1, - "baseLayerMD5": "0a81c9793556deaa3b08a3ec4afc38e0.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Dinosaur4", - "md5": "4ee69e1b27147fd818144d611c138263.png", - "type": "sprite", - "tags": [ - "animals" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Dinosaur4", - "sounds": [ - { - "soundName": "alien creak1", - "soundID": -1, - "md5": "0377a7476136e5e8c780c64a4828922d.wav", - "sampleCount": 8045, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "Dinosaur4-16", - "baseLayerID": -1, - "baseLayerMD5": "4e330592c1f1b80a4b182cc00cf8d6bf.png", - "bitmapResolution": 2, - "rotationCenterX": 80, - "rotationCenterY": 126 - }, - { - "costumeName": "Dinosaur4-15", - "baseLayerID": -1, - "baseLayerMD5": "7a68a03190a519ecc4c3e1e6a6f32f41.png", - "bitmapResolution": 2, - "rotationCenterX": 86, - "rotationCenterY": 122 - }, - { - "costumeName": "Dinosaur4-14", - "baseLayerID": -1, - "baseLayerMD5": "17427d759cac720f1575a36d624d10cc.png", - "bitmapResolution": 2, - "rotationCenterX": 80, - "rotationCenterY": 126 - }, - { - "costumeName": "Dinosaur4-13", - "baseLayerID": -1, - "baseLayerMD5": "6563f3acffd6827bbdc86358599c6815.png", - "bitmapResolution": 2, - "rotationCenterX": 92, - "rotationCenterY": 130 - }, - { - "costumeName": "Dinosaur4-12", - "baseLayerID": -1, - "baseLayerMD5": "a2aca11ef43fde45cc3431402b25ba9e.png", - "bitmapResolution": 2, - "rotationCenterX": 94, - "rotationCenterY": 134 - }, - { - "costumeName": "Dinosaur4-11", - "baseLayerID": -1, - "baseLayerMD5": "79d431943530899519080b2b8ffe8f9f.png", - "bitmapResolution": 2, - "rotationCenterX": 88, - "rotationCenterY": 134 - }, - { - "costumeName": "Dinosaur4-10", - "baseLayerID": -1, - "baseLayerMD5": "67104cc6c05f895a5c108c2a920ff8d1.png", - "bitmapResolution": 2, - "rotationCenterX": 84, - "rotationCenterY": 130 - }, - { - "costumeName": "Dinosaur4-9", - "baseLayerID": -1, - "baseLayerMD5": "39736b1f4fb42cf59463a1bfdcba2b5d.png", - "bitmapResolution": 2, - "rotationCenterX": 82, - "rotationCenterY": 134 - }, - { - "costumeName": "Dinosaur4-8", - "baseLayerID": -1, - "baseLayerMD5": "16308e806c3a594832337aeac7cf52e0.png", - "bitmapResolution": 2, - "rotationCenterX": 80, - "rotationCenterY": 126 - }, - { - "costumeName": "Dinosaur4-7", - "baseLayerID": -1, - "baseLayerMD5": "ecd4cfd287a4f150d45411df5722362b.png", - "bitmapResolution": 2, - "rotationCenterX": 86, - "rotationCenterY": 122 - }, - { - "costumeName": "Dinosaur4-6", - "baseLayerID": -1, - "baseLayerMD5": "214be4e1341a9a49cfcc11c45c14e0e3.png", - "bitmapResolution": 2, - "rotationCenterX": 80, - "rotationCenterY": 126 - }, - { - "costumeName": "Dinosaur4-5", - "baseLayerID": -1, - "baseLayerMD5": "b00cf2e17ff81b5d42bb0d269362e845.png", - "bitmapResolution": 2, - "rotationCenterX": 92, - "rotationCenterY": 130 - }, - { - "costumeName": "Dinosaur4-4", - "baseLayerID": -1, - "baseLayerMD5": "3a25736b45392dcf740f91331aa13961.png", - "bitmapResolution": 2, - "rotationCenterX": 96, - "rotationCenterY": 134 - }, - { - "costumeName": "Dinosaur4-3", - "baseLayerID": -1, - "baseLayerMD5": "33276549c55db74a56090148fe1e8efa.png", - "bitmapResolution": 2, - "rotationCenterX": 86, - "rotationCenterY": 134 - }, - { - "costumeName": "Dinosaur4-2", - "baseLayerID": -1, - "baseLayerMD5": "5b71a9c255135caa2e7c34ce072480aa.png", - "bitmapResolution": 2, - "rotationCenterX": 86, - "rotationCenterY": 130 - }, - { - "costumeName": "Dinosaur4-1", - "baseLayerID": -1, - "baseLayerMD5": "4ee69e1b27147fd818144d611c138263.png", - "bitmapResolution": 2, - "rotationCenterX": 82, - "rotationCenterY": 134 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Diver1", - "md5": "b172ff51ae8dd45f9c79926651754507.svg", - "type": "sprite", - "tags": [ - "people", - "underwater", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Diver1", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "diver1", - "baseLayerID": -1, - "baseLayerMD5": "b172ff51ae8dd45f9c79926651754507.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Diver2", - "md5": "3e1acefe86705c3a579e861bf5f75008.svg", - "type": "sprite", - "tags": [ - "people", - "underwater", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Diver2", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "diver2", - "baseLayerID": -1, - "baseLayerMD5": "3e1acefe86705c3a579e861bf5f75008.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Dog1", - "md5": "f5e058086389fecd4d67e15bcbafa971.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "walking", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Dog1", - "sounds": [ - { - "soundName": "dog1", - "soundID": -1, - "md5": "b15adefc3c12f758b6dc6a045362532f.wav", - "sampleCount": 3672, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "dog1-a", - "baseLayerID": -1, - "baseLayerMD5": "f5e058086389fecd4d67e15bcbafa971.svg", - "bitmapResolution": 1, - "rotationCenterX": 83, - "rotationCenterY": 80 - }, - { - "costumeName": "dog1-b", - "baseLayerID": -1, - "baseLayerMD5": "7e3544c0c4eb555db39a2eec879c9a0b.svg", - "bitmapResolution": 1, - "rotationCenterX": 83, - "rotationCenterY": 80 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Dog2", - "md5": "509841f93113d83521142fa44716f4aa.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "walking", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "Dog2", - "sounds": [ - { - "soundName": "dog1", - "soundID": -1, - "md5": "b15adefc3c12f758b6dc6a045362532f.wav", - "sampleCount": 3672, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "dog2-a", - "baseLayerID": -1, - "baseLayerMD5": "509841f93113d83521142fa44716f4aa.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "dog2-b", - "baseLayerID": -1, - "baseLayerMD5": "4cedd2437812a316a8886c7a42a4db24.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "dog2-c", - "baseLayerID": -1, - "baseLayerMD5": "70aad58f8a6702718bf2d6391c170390.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 0.75, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Dog Puppy", - "md5": "fd6c2d1d10a163bc5b7458f7275750f0.png", - "type": "sprite", - "tags": [ - "animals", - "photo", - "bitmap" - ], - "info": [ - 0, - 4, - 1 - ], - "json": { - "objName": "Dog Puppy", - "sounds": [ - { - "soundName": "dog2", - "soundID": -1, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "dog puppy right", - "baseLayerID": -1, - "baseLayerMD5": "fd6c2d1d10a163bc5b7458f7275750f0.png", - "bitmapResolution": 2, - "rotationCenterX": 107, - "rotationCenterY": 103 - }, - { - "costumeName": "dog puppy sit", - "baseLayerID": -1, - "baseLayerMD5": "00b1589467f939b9c61f666bca2d25d1.png", - "bitmapResolution": 2, - "rotationCenterX": 87, - "rotationCenterY": 112 - }, - { - "costumeName": "dog puppy side", - "baseLayerID": -1, - "baseLayerMD5": "63c3d6718943ecbf48f94b3b131ae8a4.png", - "bitmapResolution": 2, - "rotationCenterX": 104, - "rotationCenterY": 114 - }, - { - "costumeName": "dog puppy back", - "baseLayerID": -1, - "baseLayerMD5": "88559ad0334a8a51aca31035068682f6.png", - "bitmapResolution": 2, - "rotationCenterX": 234, - "rotationCenterY": 94 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Donut", - "md5": "284b582cfa8770b3758ffd9ba717f35e.svg", - "type": "sprite", - "tags": [ - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Donut", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "donut", - "baseLayerID": -1, - "baseLayerMD5": "284b582cfa8770b3758ffd9ba717f35e.svg", - "bitmapResolution": 1, - "rotationCenterX": 73, - "rotationCenterY": 15 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Dove1", - "md5": "1b2b2c1521ab49de8cece690537659bb.svg", - "type": "sprite", - "tags": [ - "animals", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Dove1", - "sounds": [ - { - "soundName": "bird", - "soundID": -1, - "md5": "18bd4b634a3f992a16b30344c7d810e0.wav", - "sampleCount": 3840, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "dove1-a", - "baseLayerID": -1, - "baseLayerMD5": "1b2b2c1521ab49de8cece690537659bb.svg", - "bitmapResolution": 1, - "rotationCenterX": 86, - "rotationCenterY": 59 - }, - { - "costumeName": "dove1-b", - "baseLayerID": -1, - "baseLayerMD5": "8715ffc0ef86ee39484018c9cab41f65.svg", - "bitmapResolution": 1, - "rotationCenterX": 88, - "rotationCenterY": 57 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Dove2", - "md5": "31cb275057943be3427536d42f2aa980.svg", - "type": "sprite", - "tags": [ - "animals", - "holiday", - "flying", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Dove2", - "sounds": [ - { - "soundName": "bird", - "soundID": -1, - "md5": "18bd4b634a3f992a16b30344c7d810e0.wav", - "sampleCount": 3840, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "dove2-a", - "baseLayerID": -1, - "baseLayerMD5": "31cb275057943be3427536d42f2aa980.svg", - "bitmapResolution": 1, - "rotationCenterX": 99, - "rotationCenterY": 83 - }, - { - "costumeName": "dove2-b", - "baseLayerID": -1, - "baseLayerMD5": "703a23347bb4ac1af9ce1e17ee50b417.svg", - "bitmapResolution": 1, - "rotationCenterX": 100, - "rotationCenterY": 82 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Dragon", - "md5": "fae7a8a3a6b9403fc6261755611ff4f7.svg", - "type": "sprite", - "tags": [ - "fantasy", - "drawing", - "flying", - "castle", - "vector" - ], - "info": [ - 0, - 2, - 0 - ], - "json": { - "objName": "Dragon", - "costumes": [ - { - "costumeName": "dragon1-a", - "baseLayerID": -1, - "baseLayerMD5": "fae7a8a3a6b9403fc6261755611ff4f7.svg", - "bitmapResolution": 1, - "rotationCenterX": 65, - "rotationCenterY": 60 - }, - { - "costumeName": "dragon1-b", - "baseLayerID": -1, - "baseLayerMD5": "89d3b63d7408794771feb375e1e96796.svg", - "bitmapResolution": 1, - "rotationCenterX": 84, - "rotationCenterY": 56 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {}, - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ] - } - }, - { - "name": "Drum-Bass", - "md5": "ae31cc4120463718f9451b430b5330d7.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 3 - ], - "json": { - "objName": "Drum-Bass", - "sounds": [ - { - "soundName": "drum bass1", - "soundID": -1, - "md5": "48328c874353617451e4c7902cc82817.wav", - "sampleCount": 6528, - "rate": 22050, - "format": "" - }, - { - "soundName": "drum bass2", - "soundID": -1, - "md5": "711a1270d1cf2e5de9b145ee539213e4.wav", - "sampleCount": 3791, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "drum bass3", - "soundID": -1, - "md5": "c21704337b16359ea631b5f8eb48f765.wav", - "sampleCount": 8576, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "drum bass-a", - "baseLayerID": -1, - "baseLayerMD5": "ae31cc4120463718f9451b430b5330d7.svg", - "bitmapResolution": 1, - "rotationCenterX": 36, - "rotationCenterY": 46 - }, - { - "costumeName": "drum bass-b", - "baseLayerID": -1, - "baseLayerMD5": "1bef0bf656a1ec94bfbfa4da850c36c7.svg", - "bitmapResolution": 1, - "rotationCenterX": 36, - "rotationCenterY": 46 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Drum-Conga", - "md5": "3db25ad814a41659eba60e48cac3b6ea.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 4 - ], - "json": { - "objName": "Drum-Conga", - "sounds": [ - { - "soundName": "high conga", - "soundID": -1, - "md5": "16144544de90e98a92a265d4fc3241ea.wav", - "sampleCount": 8192, - "rate": 22050, - "format": "" - }, - { - "soundName": "low conga", - "soundID": -1, - "md5": "0b6f94487cd8a1cf0bb77e15966656c3.wav", - "sampleCount": 8384, - "rate": 22050, - "format": "" - }, - { - "soundName": "muted conga", - "soundID": -1, - "md5": "1d4abbe3c9bfe198a88badb10762de75.wav", - "sampleCount": 4544, - "rate": 22050, - "format": "" - }, - { - "soundName": "tap conga", - "soundID": -1, - "md5": "fd9a67157f57f9cc6fe3cdce38a6d4a8.wav", - "sampleCount": 6880, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "drums conga-a", - "baseLayerID": -1, - "baseLayerMD5": "3db25ad814a41659eba60e48cac3b6ea.svg", - "bitmapResolution": 1, - "rotationCenterX": 51, - "rotationCenterY": 51 - }, - { - "costumeName": "drums conga-b", - "baseLayerID": -1, - "baseLayerMD5": "46c39c4a56dcee096c4153c60f8c3031.svg", - "bitmapResolution": 1, - "rotationCenterX": 52, - "rotationCenterY": 79 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Drum-Snare", - "md5": "6a5a56f6ab9ab380436b2183722e6e78.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 3 - ], - "json": { - "objName": "Drum-Snare", - "sounds": [ - { - "soundName": "tap snare", - "soundID": -1, - "md5": "d55b3954d72c6275917f375e49b502f3.wav", - "sampleCount": 3296, - "rate": 22050, - "format": "" - }, - { - "soundName": "sidestick snare", - "soundID": -1, - "md5": "f6868ee5cf626fc4ef3ca1119dc95592.wav", - "sampleCount": 2336, - "rate": 22050, - "format": "" - }, - { - "soundName": "flam snare", - "soundID": -1, - "md5": "3b6cce9f8c56c0537ca61eee3945cd1d.wav", - "sampleCount": 4416, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "drum snare-a", - "baseLayerID": -1, - "baseLayerMD5": "6a5a56f6ab9ab380436b2183722e6e78.svg", - "bitmapResolution": 1, - "rotationCenterX": 51, - "rotationCenterY": 37 - }, - { - "costumeName": "drum snare-b", - "baseLayerID": -1, - "baseLayerMD5": "415bd2cfc30976247ccfdadc3d27ebc4.svg", - "bitmapResolution": 1, - "rotationCenterX": 57, - "rotationCenterY": 59 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Drum-Tabla", - "md5": "8e8ddaa25be4a8726b5e83bdcc0feb76.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 4 - ], - "json": { - "objName": "Drum-Tabla", - "sounds": [ - { - "soundName": "hi na tabla", - "soundID": -1, - "md5": "35b42d98c43404a5b1b52fb232a62bd7.wav", - "sampleCount": 4096, - "rate": 22050, - "format": "" - }, - { - "soundName": "hi tun tabla", - "soundID": -1, - "md5": "da734693dfa6a9a7eccdc7f9a0ca9840.wav", - "sampleCount": 18656, - "rate": 22050, - "format": "" - }, - { - "soundName": "lo gliss tabla", - "soundID": -1, - "md5": "d7cd24689737569c93e7ea7344ba6b0e.wav", - "sampleCount": 7008, - "rate": 22050, - "format": "" - }, - { - "soundName": "lo geh tabla", - "soundID": -1, - "md5": "9205359ab69d042ed3da8a160a651690.wav", - "sampleCount": 30784, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "tabla-a", - "baseLayerID": -1, - "baseLayerMD5": "8e8ddaa25be4a8726b5e83bdcc0feb76.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 45 - }, - { - "costumeName": "tabla-b", - "baseLayerID": -1, - "baseLayerMD5": "9b45fa0f6fbbf765d24fc5696df85888.svg", - "bitmapResolution": 1, - "rotationCenterX": 78, - "rotationCenterY": 48 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Drum1", - "md5": "281ed57b2cdcbc7212d8146496e591bd.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 2 - ], - "json": { - "objName": "Drum1", - "sounds": [ - { - "soundName": "high tom", - "soundID": -1, - "md5": "d623f99b3c8d33932eb2c6c9cfd817c5.wav", - "sampleCount": 12320, - "rate": 22050, - "format": "" - }, - { - "soundName": "low tom", - "soundID": -1, - "md5": "1569bbbd8952b0575e5a5cb5aefb50ba.wav", - "sampleCount": 20000, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "drum1-a", - "baseLayerID": -1, - "baseLayerMD5": "281ed57b2cdcbc7212d8146496e591bd.svg", - "bitmapResolution": 1, - "rotationCenterX": 49, - "rotationCenterY": 44 - }, - { - "costumeName": "drum1-b", - "baseLayerID": -1, - "baseLayerMD5": "81da94e924ac37ed4c7303845aa2b07e.svg", - "bitmapResolution": 1, - "rotationCenterX": 60, - "rotationCenterY": 61 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Drum2", - "md5": "572bd926ac9af1f7a2da456792359149.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 2 - ], - "json": { - "objName": "Drum2", - "sounds": [ - { - "soundName": "high tom", - "soundID": -1, - "md5": "d623f99b3c8d33932eb2c6c9cfd817c5.wav", - "sampleCount": 12320, - "rate": 22050, - "format": "" - }, - { - "soundName": "low tom", - "soundID": -1, - "md5": "1569bbbd8952b0575e5a5cb5aefb50ba.wav", - "sampleCount": 20000, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "drum2-a", - "baseLayerID": -1, - "baseLayerMD5": "572bd926ac9af1f7a2da456792359149.svg", - "bitmapResolution": 1, - "rotationCenterX": 47, - "rotationCenterY": 39 - }, - { - "costumeName": "drum2-b", - "baseLayerID": -1, - "baseLayerMD5": "2d93b5fc93a7122c2fd480b499a25772.svg", - "bitmapResolution": 1, - "rotationCenterX": 47, - "rotationCenterY": 54 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Duck", - "md5": "352b564c5e39afabd708eede45a176cd.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Duck", - "sounds": [ - { - "soundName": "duck", - "soundID": -1, - "md5": "af5b039e1b05e0ccb12944f648a8884e.wav", - "sampleCount": 5792, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "duck", - "baseLayerID": -1, - "baseLayerMD5": "352b564c5e39afabd708eede45a176cd.svg", - "bitmapResolution": 1, - "rotationCenterX": 61, - "rotationCenterY": 59 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Earth", - "md5": "11610ca0459a75413e06a84f50e65fc3.svg", - "type": "sprite", - "tags": [ - "things", - "space", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Earth", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "earth", - "baseLayerID": -1, - "baseLayerMD5": "11610ca0459a75413e06a84f50e65fc3.svg", - "rotationCenterX": 72, - "rotationCenterY": 72 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Elephant", - "md5": "374104e1af22c576cd223147dece332b.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "nature", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Elephant", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "elephant-a ", - "baseLayerID": -1, - "baseLayerMD5": "374104e1af22c576cd223147dece332b.svg", - "bitmapResolution": 1, - "rotationCenterX": 107, - "rotationCenterY": 33 - }, - { - "costumeName": "elephant-b ", - "baseLayerID": -1, - "baseLayerMD5": "3a7bb9b81904f8069c4b5a44e34bd4e4.svg", - "bitmapResolution": 1, - "rotationCenterX": 95, - "rotationCenterY": 40 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Fire hydrant", - "md5": "5542c53bb0ba87b39eba6ff743b8115c.png", - "type": "sprite", - "tags": [ - "things", - "photo", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Fire hydrant", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "fire hydrant", - "baseLayerID": -1, - "baseLayerMD5": "5542c53bb0ba87b39eba6ff743b8115c.png", - "rotationCenterX": 40, - "rotationCenterY": 83 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Fish1", - "md5": "3e73248ae394de7e3178d0ec8a6120ef.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "underwater", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Fish1", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "fish1", - "baseLayerID": -1, - "baseLayerMD5": "3e73248ae394de7e3178d0ec8a6120ef.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Fish2", - "md5": "9bdf2036e0f76fe6979df1fff6aa1e7b.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "underwater", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Fish2", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "fish2", - "baseLayerID": -1, - "baseLayerMD5": "9bdf2036e0f76fe6979df1fff6aa1e7b.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Fish3", - "md5": "c90be4d7a30a4fb025675e7502e24e4f.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "underwater", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Fish3", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "fish3", - "baseLayerID": -1, - "baseLayerMD5": "c90be4d7a30a4fb025675e7502e24e4f.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Flower Shape", - "md5": "7001070f20f9702c1f2fa29ddea25007.svg", - "type": "sprite", - "tags": [ - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Flower Shape", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "flower shape", - "baseLayerID": -1, - "baseLayerMD5": "7001070f20f9702c1f2fa29ddea25007.svg", - "rotationCenterX": 39, - "rotationCenterY": 41 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Football", - "md5": "422b34b6e5a2fdb8d0ac00aca91ec714.png", - "type": "sprite", - "tags": [ - "people", - "sports", - "photo", - "bitmap" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Football", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "football running", - "baseLayerID": -1, - "baseLayerMD5": "422b34b6e5a2fdb8d0ac00aca91ec714.png", - "rotationCenterX": 47, - "rotationCenterY": 100 - }, - { - "costumeName": "football standing", - "baseLayerID": -1, - "baseLayerMD5": "1f57154842f68aa55577edc90a6f2b32.png", - "rotationCenterX": 37, - "rotationCenterY": 100 - } - ], - "currentCostumeIndex": 1, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Fortune Cookie", - "md5": "d47f0be24acf78130af2e03572a3f9d3.png", - "type": "sprite", - "tags": [ - "things", - "photo", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Fortune Cookie", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "fortunecookie", - "baseLayerID": -1, - "baseLayerMD5": "d47f0be24acf78130af2e03572a3f9d3.png", - "rotationCenterX": 30, - "rotationCenterY": 31 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Fox", - "md5": "f7aa4da20e0f803b3423d3107fb87910.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Fox", - "sounds": [ - { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "fox", - "baseLayerID": -1, - "baseLayerMD5": "f7aa4da20e0f803b3423d3107fb87910.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Frog", - "md5": "392f9f6e006c44339aead2cd357da607.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Frog", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "frog", - "baseLayerID": -1, - "baseLayerMD5": "392f9f6e006c44339aead2cd357da607.svg", - "rotationCenterX": 48, - "rotationCenterY": 30 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Fruit Platter", - "md5": "c6e2f673debcff91de8e3749ddf674b9.png", - "type": "sprite", - "tags": [ - "things", - "photo", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Fruit Platter", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "fruit_platter", - "baseLayerID": -1, - "baseLayerMD5": "c6e2f673debcff91de8e3749ddf674b9.png", - "rotationCenterX": 75, - "rotationCenterY": 40 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Fruit Salad", - "md5": "45bf02998a19f1ca40c7e1dba59936e2.svg", - "type": "sprite", - "tags": [ - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Fruit Salad", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "fruitsalad", - "baseLayerID": -1, - "baseLayerMD5": "45bf02998a19f1ca40c7e1dba59936e2.svg", - "rotationCenterX": 30, - "rotationCenterY": 22 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Ghost1", - "md5": "0803b1692831d9b65c7322aa75fa41eb.svg", - "type": "sprite", - "tags": [ - "fantasy", - "drawing", - "castle", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Ghost1", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "ghost1 ", - "baseLayerID": -1, - "baseLayerMD5": "0803b1692831d9b65c7322aa75fa41eb.svg", - "rotationCenterX": 60, - "rotationCenterY": 63 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Ghost2", - "md5": "49595991bcae69090f3556702cd6e57e.svg", - "type": "sprite", - "tags": [ - "fantasy", - "drawing", - "castle", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Ghost2", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "ghost2-a", - "baseLayerID": -1, - "baseLayerMD5": "49595991bcae69090f3556702cd6e57e.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "ghost2-b", - "baseLayerID": -1, - "baseLayerMD5": "51ee43cd867bab6ad4e184b92a185c7d.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Ghoul", - "md5": "794d40bd5375ca76587f569e0852cceb.svg", - "type": "sprite", - "tags": [ - "fantasy", - "drawing", - "castle", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Ghoul", - "sounds": [ - { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "ghoul-a", - "baseLayerID": -1, - "baseLayerMD5": "794d40bd5375ca76587f569e0852cceb.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "ghoul-b", - "baseLayerID": -1, - "baseLayerMD5": "fd8267d4ae47430b3999533726adf2fc.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 1, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Gift", - "md5": "b6e09f809efda963e052abe8aaf58ec8.svg", - "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 0 - ], - "json": { - "objName": "Gift", - "costumes": [ - { - "costumeName": "gift-a", - "baseLayerID": -1, - "baseLayerMD5": "b6e09f809efda963e052abe8aaf58ec8.svg", - "bitmapResolution": 1, - "rotationCenterX": 33, - "rotationCenterY": 25 - }, - { - "costumeName": "gift-b", - "baseLayerID": -1, - "baseLayerMD5": "29d112e7f03aa037d62df607315d1093.svg", - "bitmapResolution": 1, - "rotationCenterX": 33, - "rotationCenterY": 26 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {}, - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ] - } - }, - { - "name": "Giga", - "md5": "265276adce4c6b58ecdd0ef7dc904ff9.svg", - "type": "sprite", - "tags": [ - "fantasy", - "space", - "drawing", - "vector" - ], - "info": [ - 0, - 4, - 1 - ], - "json": { - "objName": "Giga", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "giga-a", - "baseLayerID": -1, - "baseLayerMD5": "265276adce4c6b58ecdd0ef7dc904ff9.svg", - "bitmapResolution": 1, - "rotationCenterX": 72, - "rotationCenterY": 96 - }, - { - "costumeName": "giga-b", - "baseLayerID": -1, - "baseLayerMD5": "8a0253ec2b7fe12a4929b6725e8f706d.svg", - "bitmapResolution": 1, - "rotationCenterX": 72, - "rotationCenterY": 96 - }, - { - "costumeName": "giga-c", - "baseLayerID": -1, - "baseLayerMD5": "9f484082eb1f2d4123649362031475f0.svg", - "bitmapResolution": 1, - "rotationCenterX": 73, - "rotationCenterY": 96 - }, - { - "costumeName": "giga-d", - "baseLayerID": -1, - "baseLayerMD5": "29fd86794eb63c2e2dffcb2477a35acd.svg", - "bitmapResolution": 1, - "rotationCenterX": 73, - "rotationCenterY": 96 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Giga walking", - "md5": "7140a0742e286c7c5234980d6d01ba65.svg", - "type": "sprite", - "tags": [ - "fantasy", - "space", - "drawing", - "walking", - "vector" - ], - "info": [ - 0, - 4, - 1 - ], - "json": { - "objName": "Giga walking", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "Giga walk1", - "baseLayerID": -1, - "baseLayerMD5": "7140a0742e286c7c5234980d6d01ba65.svg", - "rotationCenterX": 70, - "rotationCenterY": 107 - }, - { - "costumeName": "Giga walk2", - "baseLayerID": -1, - "baseLayerMD5": "2930163a1a7c144296e76f2eacb478fc.svg", - "rotationCenterX": 71, - "rotationCenterY": 107 - }, - { - "costumeName": "Giga walk3", - "baseLayerID": -1, - "baseLayerMD5": "4d1eec4521358bc7939ff4522d1c0f02.svg", - "rotationCenterX": 71, - "rotationCenterY": 107 - }, - { - "costumeName": "Giga walk4", - "baseLayerID": -1, - "baseLayerMD5": "1e49bc9e576c5bcf5450c8f7305d5ec3.svg", - "rotationCenterX": 73, - "rotationCenterY": 110 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Glass Water", - "md5": "7d2a7c0d2423490b706816f1c2aff7b0.svg", - "type": "sprite", - "tags": [ - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Glass Water", - "sounds": [ - { - "soundName": "water drop", - "soundID": -1, - "md5": "aa488de9e2c871e9d4faecd246ed737a.wav", - "sampleCount": 8136, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "glass water-a", - "baseLayerID": -1, - "baseLayerMD5": "7d2a7c0d2423490b706816f1c2aff7b0.svg", - "bitmapResolution": 1, - "rotationCenterX": 39, - "rotationCenterY": 48 - }, - { - "costumeName": "glass water-b", - "baseLayerID": -1, - "baseLayerMD5": "a90c0864ebc86f4649d5861eb53c6c2b.svg", - "bitmapResolution": 1, - "rotationCenterX": 39, - "rotationCenterY": 48 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 0.6, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Glasses", - "md5": "dd57556f3f82467268aa3771d6e47b9f.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Glasses", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "glasses", - "baseLayerID": -1, - "baseLayerMD5": "dd57556f3f82467268aa3771d6e47b9f.svg", - "bitmapResolution": 1, - "rotationCenterX": 16, - "rotationCenterY": 9 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": true, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Gobo", - "md5": "a9e463823bbb3348204deefb6db8a063.svg", - "type": "sprite", - "tags": [ - "fantasy", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "Gobo", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "gobo-a", - "baseLayerID": -1, - "baseLayerMD5": "a9e463823bbb3348204deefb6db8a063.svg", - "rotationCenterX": 47, - "rotationCenterY": 55 - }, - { - "costumeName": "gobo-b", - "baseLayerID": -1, - "baseLayerMD5": "c42c5ee74a2d98b2c01c44610249a580.svg", - "rotationCenterX": 47, - "rotationCenterY": 55 - }, - { - "costumeName": "gobo-c", - "baseLayerID": -1, - "baseLayerMD5": "f6fbd8d126ca80ab133b34acbfa4613b.svg", - "rotationCenterX": 47, - "rotationCenterY": 55 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Green Flag", - "md5": "d49c4b42376c493a776dfe2bf1dd23b2.svg", - "type": "sprite", - "tags": [ - "things", - "vector", - "drawing" - ], - "info": [ - 0, - 1, - 0 - ], - "json": { - "objName": "Green Flag", - "costumes": [ - { - "costumeName": "green flag", - "baseLayerID": -1, - "baseLayerMD5": "d49c4b42376c493a776dfe2bf1dd23b2.svg", - "bitmapResolution": 1, - "rotationCenterX": 70, - "rotationCenterY": 30 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {}, - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ] - } - }, - { - "name": "Guitar", - "md5": "4765cdbfc4750db3a6735c4bee0b0623.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 8 - ], - "json": { - "objName": "Guitar", - "sounds": [ - { - "soundName": "C guitar", - "soundID": -1, - "md5": "22baa07795a9a524614075cdea543793.wav", - "sampleCount": 44864, - "rate": 22050, - "format": "" - }, - { - "soundName": "D guitar", - "soundID": -1, - "md5": "2dbcfae6a55738f94bbb40aa5fcbf7ce.wav", - "sampleCount": 41120, - "rate": 22050, - "format": "" - }, - { - "soundName": "E guitar", - "soundID": -1, - "md5": "4b5d1da83e59bf35578324573c991666.wav", - "sampleCount": 38400, - "rate": 22050, - "format": "" - }, - { - "soundName": "F guitar", - "soundID": -1, - "md5": "b51d086aeb1921ec405561df52ecbc50.wav", - "sampleCount": 36416, - "rate": 22050, - "format": "" - }, - { - "soundName": "G guitar", - "soundID": -1, - "md5": "98a835713ecea2f3ef9f4f442d52ad20.wav", - "sampleCount": 33600, - "rate": 22050, - "format": "" - }, - { - "soundName": "A guitar", - "soundID": -1, - "md5": "ee753e87d212d4b2fb650ca660f1e839.wav", - "sampleCount": 31872, - "rate": 22050, - "format": "" - }, - { - "soundName": "B guitar", - "soundID": -1, - "md5": "2ae2d67de62df8ca54d638b4ad2466c3.wav", - "sampleCount": 29504, - "rate": 22050, - "format": "" - }, - { - "soundName": "C2 guitar", - "soundID": -1, - "md5": "c8d2851bd99d8e0ce6c1f05e4acc7f34.wav", - "sampleCount": 27712, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "guitar", - "baseLayerID": -1, - "baseLayerMD5": "4765cdbfc4750db3a6735c4bee0b0623.svg", - "bitmapResolution": 1, - "rotationCenterX": 37, - "rotationCenterY": 98 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Guitar-Bass", - "md5": "94ef7a92c31e29cef4e77f17677614b0.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 8 - ], - "json": { - "objName": "Guitar-Bass", - "sounds": [ - { - "soundName": "C elec bass", - "soundID": -1, - "md5": "69eee3d038ea0f1c34ec9156a789236d.wav", - "sampleCount": 5216, - "rate": 22050, - "format": "" - }, - { - "soundName": "D elec bass", - "soundID": -1, - "md5": "67a6d1aa68233a2fa641aee88c7f051f.wav", - "sampleCount": 5568, - "rate": 22050, - "format": "" - }, - { - "soundName": "E elec bass", - "soundID": -1, - "md5": "0704b8ceabe54f1dcedda8c98f1119fd.wav", - "sampleCount": 5691, - "rate": 22050, - "format": "" - }, - { - "soundName": "F elec bass", - "soundID": -1, - "md5": "45eedb4ce62a9cbbd2207824b94a4641.wav", - "sampleCount": 5312, - "rate": 22050, - "format": "" - }, - { - "soundName": "G elec bass", - "soundID": -1, - "md5": "97b187d72219b994a6ef6a5a6b09605c.wav", - "sampleCount": 5568, - "rate": 22050, - "format": "" - }, - { - "soundName": "A elec bass", - "soundID": -1, - "md5": "5cb46ddd903fc2c9976ff881df9273c9.wav", - "sampleCount": 5920, - "rate": 22050, - "format": "" - }, - { - "soundName": "B elec bass", - "soundID": -1, - "md5": "5a0701d0a914223b5288300ac94e90e4.wav", - "sampleCount": 6208, - "rate": 22050, - "format": "" - }, - { - "soundName": "C2 elec bass", - "soundID": -1, - "md5": "56fc995b8860e713c5948ecd1c2ae572.wav", - "sampleCount": 5792, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "guitar bass", - "baseLayerID": -1, - "baseLayerMD5": "94ef7a92c31e29cef4e77f17677614b0.svg", - "bitmapResolution": 1, - "rotationCenterX": 53, - "rotationCenterY": 145 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Guitar-Electric", - "md5": "41a612c6877ad9f2f034e9d560290696.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 8 - ], - "json": { - "objName": "Guitar-Electric", - "sounds": [ - { - "soundName": "C elec guitar", - "soundID": -1, - "md5": "0d340de02e14bebaf8dfa0e43eb3f1f9.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "D elec guitar", - "soundID": -1, - "md5": "1b5de9866801eb2f9d4f57c7c3b473f5.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "E elec guitar", - "soundID": -1, - "md5": "2e6a6ae3e0f72bf78c74def8130f459a.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "F elec guitar", - "soundID": -1, - "md5": "5eb00f15f21f734986aa45156d44478d.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "G elec guitar", - "soundID": -1, - "md5": "cd0d0e7dad415b2ffa2ba7a61860eaf8.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "A elec guitar", - "soundID": -1, - "md5": "fa5f7fea601e9368dd68449d9a54c995.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "B elec guitar", - "soundID": -1, - "md5": "81f142d0b00189703d7fe9b1f13f6f87.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "C2 elec guitar", - "soundID": -1, - "md5": "3a8ed3129f22cba5b0810bc030d16b5f.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "guitar electric", - "baseLayerID": -1, - "baseLayerMD5": "41a612c6877ad9f2f034e9d560290696.svg", - "bitmapResolution": 1, - "rotationCenterX": 37, - "rotationCenterY": 114 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Hannah", - "md5": "b983d99560313e38b4b3cd36cbd5f0d1.png", - "type": "sprite", - "tags": [ - "people", - "city", - "drawing", - "bitmap", - "sports" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "Hannah", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "hannah-a", - "baseLayerID": -1, - "baseLayerMD5": "b983d99560313e38b4b3cd36cbd5f0d1.png", - "bitmapResolution": 2, - "rotationCenterX": 138, - "rotationCenterY": 126 - }, - { - "costumeName": "hannah-b", - "baseLayerID": -1, - "baseLayerMD5": "d0c3b4b24fbf1152de3ebb68f6b875ae.png", - "bitmapResolution": 2, - "rotationCenterX": 48, - "rotationCenterY": 160 - }, - { - "costumeName": "hannah-c", - "baseLayerID": -1, - "baseLayerMD5": "5fdce07935156bbcf943793fa84e826c.png", - "bitmapResolution": 2, - "rotationCenterX": 170, - "rotationCenterY": 130 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Hat", - "md5": "bd95cd2f079b54ce5890e1346887be5b.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Hat", - "sounds": [ - { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "Hat", - "baseLayerID": -1, - "baseLayerMD5": "bd95cd2f079b54ce5890e1346887be5b.svg", - "bitmapResolution": 1, - "rotationCenterX": 52, - "rotationCenterY": 60 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": true, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Hat Beanie", - "md5": "e42b6188d5fd7fe8eb1ef26e4959bfa3.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Hat Beanie", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "hat beanie", - "baseLayerID": -1, - "baseLayerMD5": "e42b6188d5fd7fe8eb1ef26e4959bfa3.svg", - "bitmapResolution": 1, - "rotationCenterX": 28, - "rotationCenterY": 19 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": true, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Hat Party1", - "md5": "fbe6a58a3a2410225160d6363a87d2c6.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Hat Party1", - "sounds": [ - { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "partyhat1", - "baseLayerID": -1, - "baseLayerMD5": "fbe6a58a3a2410225160d6363a87d2c6.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Hat Party2", - "md5": "e8407ff71e21a834075cae0c0316f91a.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Hat Party2", - "sounds": [ - { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "hat party2-a", - "baseLayerID": -1, - "baseLayerMD5": "e8407ff71e21a834075cae0c0316f91a.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Hat Winter", - "md5": "40aced9001013415ddfb30e06f40a9e8.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 2 - ], - "json": { - "objName": "Hat Winter", - "sounds": [ - { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, - "format": "" - }, - { - "soundName": "xylo3", - "soundID": -1, - "md5": "3395cade6d7c0cc9ce73a8c12f40319b.wav", - "sampleCount": 209502, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "hat winter", - "baseLayerID": -1, - "baseLayerMD5": "40aced9001013415ddfb30e06f40a9e8.svg", - "bitmapResolution": 1, - "rotationCenterX": 26, - "rotationCenterY": 101 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 0.9, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Hat Wizard", - "md5": "fe9f268489ad433f4f50e60fa082c964.svg", - "type": "sprite", - "tags": [ - "dress-up", - "fantasy", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Hat Wizard", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "hat wizard", - "baseLayerID": -1, - "baseLayerMD5": "fe9f268489ad433f4f50e60fa082c964.svg", - "bitmapResolution": 1, - "rotationCenterX": 76, - "rotationCenterY": 69 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Headband", - "md5": "f241cf314fbc045b7c087091430f7820.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Headband", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "headband", - "baseLayerID": -1, - "baseLayerMD5": "f241cf314fbc045b7c087091430f7820.svg", - "bitmapResolution": 1, - "rotationCenterX": 53, - "rotationCenterY": 43 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": true, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Heart", - "md5": "dfc0bd91ebc30e004bdc6ae307602958.svg", - "type": "sprite", - "tags": [ - "things", - "flying", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Heart", - "sounds": [ - { - "soundName": "tom drum", - "soundID": -1, - "md5": "ca350a536d60bb8ed50f24677d65eed8.wav", - "sampleCount": 33920, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "heart red", - "baseLayerID": -1, - "baseLayerMD5": "dfc0bd91ebc30e004bdc6ae307602958.svg", - "bitmapResolution": 1, - "rotationCenterX": 65, - "rotationCenterY": 56 - }, - { - "costumeName": "heart purple", - "baseLayerID": -1, - "baseLayerMD5": "dd66cc42681b8d168ef07549de7118e6.svg", - "bitmapResolution": 1, - "rotationCenterX": 66, - "rotationCenterY": 62 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 0.55, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Heart Candy", - "md5": "fc0269e91f83873642510df756d65f39.svg", - "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 4, - 1 - ], - "json": { - "objName": "Heart Candy", - "sounds": [ - { - "soundName": "tom drum", - "soundID": -1, - "md5": "ca350a536d60bb8ed50f24677d65eed8.wav", - "sampleCount": 33920, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "heart love it", - "baseLayerID": -1, - "baseLayerMD5": "fc0269e91f83873642510df756d65f39.svg", - "bitmapResolution": 1, - "rotationCenterX": 58, - "rotationCenterY": 61 - }, - { - "costumeName": "heart code", - "baseLayerID": -1, - "baseLayerMD5": "6f1c987f63516959a9e6101b8514a652.svg", - "bitmapResolution": 1, - "rotationCenterX": 58, - "rotationCenterY": 61 - }, - { - "costumeName": "heart sweet", - "baseLayerID": -1, - "baseLayerMD5": "f4f865cdb6cee2a0abbb874b3a34e387.svg", - "bitmapResolution": 1, - "rotationCenterX": 58, - "rotationCenterY": 61 - }, - { - "costumeName": "heart smile", - "baseLayerID": -1, - "baseLayerMD5": "4fd8032425fb84971a0fe8a86db20b30.svg", - "bitmapResolution": 1, - "rotationCenterX": 58, - "rotationCenterY": 61 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 0.55, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Heart Face", - "md5": "8d954db6a4db92e04d356b561a394a1b.svg", - "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Heart Face", - "sounds": [ - { - "soundName": "tom drum", - "soundID": -1, - "md5": "ca350a536d60bb8ed50f24677d65eed8.wav", - "sampleCount": 33920, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "heart face", - "baseLayerID": -1, - "baseLayerMD5": "8d954db6a4db92e04d356b561a394a1b.svg", - "bitmapResolution": 1, - "rotationCenterX": 59, - "rotationCenterY": 52 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 0.55, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Heart Scratch", - "md5": "3f5e27703b439152671ab04e448a24d2.svg", - "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Heart Scratch", - "sounds": [ - { - "soundName": "dance snare beat", - "soundID": -1, - "md5": "562587bdb75e3a8124cdaa46ba0f648b.wav", - "sampleCount": 176401, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "heart scratch", - "baseLayerID": -1, - "baseLayerMD5": "3f5e27703b439152671ab04e448a24d2.svg", - "bitmapResolution": 1, - "rotationCenterX": 81, - "rotationCenterY": 77 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 0.55, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Helicopter", - "md5": "8847e2d3383906dbabbf7ffa98945a7b.png", - "type": "sprite", - "tags": [ - "transportation", - "flying", - "city", - "drawing", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Helicopter", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "helicopter", - "baseLayerID": -1, - "baseLayerMD5": "8847e2d3383906dbabbf7ffa98945a7b.png", - "rotationCenterX": 90, - "rotationCenterY": 64 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Hippo1", - "md5": "9cb49fbf9ab54f2005e4e118818c7612.svg", - "type": "sprite", - "tags": [ - "animals", - "flying", - "fantasy", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Hippo1", - "sounds": [ - { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "hippo1-a", - "baseLayerID": -1, - "baseLayerMD5": "9cb49fbf9ab54f2005e4e118818c7612.svg", - "bitmapResolution": 1, - "rotationCenterX": 69, - "rotationCenterY": 65 - }, - { - "costumeName": "hippo1-b", - "baseLayerID": -1, - "baseLayerMD5": "a50f7f7fca3d8746276dfd77fa75b37e.svg", - "bitmapResolution": 1, - "rotationCenterX": 69, - "rotationCenterY": 68 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Holly", - "md5": "9d95ba1d0dab47d08a02070d2a425fc6.svg", - "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Holly", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "holly1", - "baseLayerID": -1, - "baseLayerMD5": "9d95ba1d0dab47d08a02070d2a425fc6.svg", - "bitmapResolution": 1, - "rotationCenterX": 29, - "rotationCenterY": 44 - }, - { - "costumeName": "holly2", - "baseLayerID": -1, - "baseLayerMD5": "f71d195c7899eb3e049b44ead01c8440.svg", - "bitmapResolution": 1, - "rotationCenterX": 27, - "rotationCenterY": 42 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Home Button", - "md5": "fd2b7b9db46f7785645e70f82d11bd26.svg", - "type": "sprite", - "tags": [ - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Home Button", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "home button", - "baseLayerID": -1, - "baseLayerMD5": "fd2b7b9db46f7785645e70f82d11bd26.svg", - "rotationCenterX": 72, - "rotationCenterY": 72 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Horse1", - "md5": "559fd25c12857570144ff7f39cc6e6f0.svg", - "type": "sprite", - "tags": [ - "animals", - "transportation", - "vector", - "drawing" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Horse1", - "sounds": [ - { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "horse1-a", - "baseLayerID": -1, - "baseLayerMD5": "559fd25c12857570144ff7f39cc6e6f0.svg", - "bitmapResolution": 1, - "rotationCenterX": 119, - "rotationCenterY": 83 - }, - { - "costumeName": "horse1-b", - "baseLayerID": -1, - "baseLayerMD5": "bec9ef3748e921abe1dd6f39a410ce09.svg", - "bitmapResolution": 1, - "rotationCenterX": 103, - "rotationCenterY": 97 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Jaime", - "md5": "3ddc912edef87ae29121f57294fa0cb5.png", - "type": "sprite", - "tags": [ - "people", - "city", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Jaime", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "jaime-a", - "baseLayerID": -1, - "baseLayerMD5": "3ddc912edef87ae29121f57294fa0cb5.png", - "bitmapResolution": 2, - "rotationCenterX": 76, - "rotationCenterY": 154 - }, - { - "costumeName": "jaime-b", - "baseLayerID": -1, - "baseLayerMD5": "5a683f4536abca0f83a77bc341df4c9a.png", - "bitmapResolution": 2, - "rotationCenterX": 68, - "rotationCenterY": 154 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Jaime Walking", - "md5": "d6cc9814f7a6640e4c2b1a4276987dc5.png", - "type": "sprite", - "tags": [ - "people", - "city", - "walking", - "drawing", - "vector" - ], - "info": [ - 0, - 5, - 1 - ], - "json": { - "objName": "Jaime Walking", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "jaime walking-a", - "baseLayerID": -1, - "baseLayerMD5": "d6cc9814f7a6640e4c2b1a4276987dc5.png", - "bitmapResolution": 2, - "rotationCenterX": 106, - "rotationCenterY": 172 - }, - { - "costumeName": "jaime walking-b", - "baseLayerID": -1, - "baseLayerMD5": "7fb579a98d6db257f1b16109d3c4609a.png", - "bitmapResolution": 2, - "rotationCenterX": 52, - "rotationCenterY": 176 - }, - { - "costumeName": "jaime walking-c", - "baseLayerID": -1, - "baseLayerMD5": "5883bdefba451aaeac8d77c798d41eb0.png", - "bitmapResolution": 2, - "rotationCenterX": 88, - "rotationCenterY": 170 - }, - { - "costumeName": "jaime walking-d", - "baseLayerID": -1, - "baseLayerMD5": "4b9d2162e30dbb924840575ed35fddb0.png", - "bitmapResolution": 2, - "rotationCenterX": 46, - "rotationCenterY": 174 - }, - { - "costumeName": "jaime walking-e", - "baseLayerID": -1, - "baseLayerMD5": "63e56d28cc3e3d9b735e1f1d51248cc0.png", - "bitmapResolution": 2, - "rotationCenterX": 84, - "rotationCenterY": 172 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Jay", - "md5": "cf32a87b2c9d7c2553f5a1ed17966504.gif", - "type": "sprite", - "tags": [ - "people", - "city", - "photo", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Jay", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "jay", - "baseLayerID": -1, - "baseLayerMD5": "cf32a87b2c9d7c2553f5a1ed17966504.gif", - "rotationCenterX": 70, - "rotationCenterY": 100 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Jeans", - "md5": "87eadfd1b1f31e1dae7099190178a1ef.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Jeans", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "jeans-a", - "baseLayerID": -1, - "baseLayerMD5": "87eadfd1b1f31e1dae7099190178a1ef.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 25 - }, - { - "costumeName": "jeans-b", - "baseLayerID": -1, - "baseLayerMD5": "cf56fc47e658a2450f70c18dd1da3c38.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 25 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": true, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Jodi", - "md5": "a8ae8b69caa6a837f49aa950055ef29a.gif", - "type": "sprite", - "tags": [ - "people", - "sports", - "photo", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Jodi", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "jodi", - "baseLayerID": -1, - "baseLayerMD5": "a8ae8b69caa6a837f49aa950055ef29a.gif", - "rotationCenterX": 54, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Jouvi Hip-Hop", - "md5": "cb4bf65491eaa9e8aeb1c1fdfe37e84a.png", - "type": "sprite", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ], - "info": [ - 0, - 13, - 1 - ], - "json": { - "objName": "Jouvi Hip-Hop", - "sounds": [ - { - "soundName": "dance celebrate2", - "soundID": -1, - "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav", - "sampleCount": 176401, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "jo stance", - "baseLayerID": -1, - "baseLayerMD5": "cb4bf65491eaa9e8aeb1c1fdfe37e84a.png", - "bitmapResolution": 2, - "rotationCenterX": 94, - "rotationCenterY": 240 - }, - { - "costumeName": "jo top stand", - "baseLayerID": -1, - "baseLayerMD5": "a91fe6e180b524d27688aa0cd82cd629.png", - "bitmapResolution": 2, - "rotationCenterX": 68, - "rotationCenterY": 260 - }, - { - "costumeName": "jo top R leg", - "baseLayerID": -1, - "baseLayerMD5": "de64c526a57355af5fd6ff28f27b67ea.png", - "bitmapResolution": 2, - "rotationCenterX": 218, - "rotationCenterY": 262 - }, - { - "costumeName": "jo top L leg", - "baseLayerID": -1, - "baseLayerMD5": "987a667cd7984d9e5429c26b8a4cab2d.png", - "bitmapResolution": 2, - "rotationCenterX": 208, - "rotationCenterY": 268 - }, - { - "costumeName": "jo top R cross", - "baseLayerID": -1, - "baseLayerMD5": "ddbd8751df020cc32231ecb4e7b5388d.png", - "bitmapResolution": 2, - "rotationCenterX": 144, - "rotationCenterY": 270 - }, - { - "costumeName": "jo top L cross", - "baseLayerID": -1, - "baseLayerMD5": "33660046a3d37fa762f4a634ee3df75d.png", - "bitmapResolution": 2, - "rotationCenterX": 84, - "rotationCenterY": 268 - }, - { - "costumeName": "jo pop front", - "baseLayerID": -1, - "baseLayerMD5": "0503f4d712bc3184cf1b5f830d0df993.png", - "bitmapResolution": 2, - "rotationCenterX": 70, - "rotationCenterY": 228 - }, - { - "costumeName": "jo pop down", - "baseLayerID": -1, - "baseLayerMD5": "95a0f1bb3d8055a283aecc6bcb6303c9.png", - "bitmapResolution": 2, - "rotationCenterX": 68, - "rotationCenterY": 74 - }, - { - "costumeName": "jo pop left", - "baseLayerID": -1, - "baseLayerMD5": "98e8c2f9869f9356204ed19e43ae01cc.png", - "bitmapResolution": 2, - "rotationCenterX": 196, - "rotationCenterY": 226 - }, - { - "costumeName": "jo pop right", - "baseLayerID": -1, - "baseLayerMD5": "7bf1600ee75facb510c2922f899fb97c.png", - "bitmapResolution": 2, - "rotationCenterX": 66, - "rotationCenterY": 242 - }, - { - "costumeName": "jo pop L arm", - "baseLayerID": -1, - "baseLayerMD5": "2a907e6edf8a101addb2c27d0568896a.png", - "bitmapResolution": 2, - "rotationCenterX": 108, - "rotationCenterY": 258 - }, - { - "costumeName": "jo pop stand", - "baseLayerID": -1, - "baseLayerMD5": "361d1884737ef734f6a39fd66fc269ec.png", - "bitmapResolution": 2, - "rotationCenterX": 78, - "rotationCenterY": 262 - }, - { - "costumeName": "jo pop R arm", - "baseLayerID": -1, - "baseLayerMD5": "e633eb002deb20108bb5100d4b3a8fc5.png", - "bitmapResolution": 2, - "rotationCenterX": 108, - "rotationCenterY": 260 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Kai", - "md5": "6e007fde15e49c66ee7996561f80b452.png", - "type": "sprite", - "tags": [ - "people", - "city", - "drawing", - "bitmap" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Kai", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "kai-a", - "baseLayerID": -1, - "baseLayerMD5": "6e007fde15e49c66ee7996561f80b452.png", - "bitmapResolution": 2, - "rotationCenterX": 68, - "rotationCenterY": 160 - }, - { - "costumeName": "kai-b", - "baseLayerID": -1, - "baseLayerMD5": "c1e1149f6d7e308e3e4eba14ccc8a751.png", - "bitmapResolution": 2, - "rotationCenterX": 82, - "rotationCenterY": 158 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Key", - "md5": "159e379d786a2614ff8c48c83f515aea.svg", - "type": "sprite", - "tags": [ - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Key", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "key", - "baseLayerID": -1, - "baseLayerMD5": "159e379d786a2614ff8c48c83f515aea.svg", - "rotationCenterX": 42, - "rotationCenterY": 27 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Khalid Dance", - "md5": "d0018780c7458f002b6fec6d1fea3570.png", - "type": "sprite", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ], - "info": [ - 0, - 4, - 1 - ], - "json": { - "objName": "Khalid Dance", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "khalid-a", - "baseLayerID": -1, - "baseLayerMD5": "d0018780c7458f002b6fec6d1fea3570.png", - "bitmapResolution": 2, - "rotationCenterX": 79, - "rotationCenterY": 101 - }, - { - "costumeName": "Khalid-b", - "baseLayerID": -1, - "baseLayerMD5": "88023269142bfc3ecab5b13cc8cbddb9.png", - "bitmapResolution": 2, - "rotationCenterX": 69, - "rotationCenterY": 103 - }, - { - "costumeName": "khalid-c", - "baseLayerID": -1, - "baseLayerMD5": "30dbce950a2d2dddc0ea53d1462d116b.png", - "bitmapResolution": 2, - "rotationCenterX": 69, - "rotationCenterY": 109 - }, - { - "costumeName": "khalid-d", - "baseLayerID": -1, - "baseLayerMD5": "e189aec22f4cb57a90f75457615fbbd8.png", - "bitmapResolution": 2, - "rotationCenterX": 66, - "rotationCenterY": 63 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Knight", - "md5": "390d3a77dfdf336db81bec74205cda85.svg", - "type": "sprite", - "tags": [ - "fantasy", - "drawing", - "castle", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Knight", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "knight", - "baseLayerID": -1, - "baseLayerMD5": "390d3a77dfdf336db81bec74205cda85.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Ladybug1", - "md5": "5c8117a34a8ff6cd79203ccea60b8cd0.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Ladybug1", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "ladybug2", - "baseLayerID": -1, - "baseLayerMD5": "5c8117a34a8ff6cd79203ccea60b8cd0.svg", - "rotationCenterX": 41, - "rotationCenterY": 43 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Ladybug2", - "md5": "a3fc18ba980c9f351eb1584d192fbe4b.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Ladybug2", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "ladybug2-a", - "baseLayerID": -1, - "baseLayerMD5": "a3fc18ba980c9f351eb1584d192fbe4b.svg", - "rotationCenterX": 49, - "rotationCenterY": 28 - }, - { - "costumeName": "ladybug2-b", - "baseLayerID": -1, - "baseLayerMD5": "6258c4f66ba26e43a88bbddf96c74566.svg", - "rotationCenterX": 49, - "rotationCenterY": 28 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Lamp", - "md5": "4885678710301cda511018ad7e420c9c.png", - "type": "sprite", - "tags": [ - "things", - "photo", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Lamp", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "lamp", - "baseLayerID": -1, - "baseLayerMD5": "4885678710301cda511018ad7e420c9c.png", - "rotationCenterX": 25, - "rotationCenterY": 41 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Laptop", - "md5": "3fcb9293316374619d8ab17b0b68f548.svg", - "type": "sprite", - "tags": [ - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Laptop", - "sounds": [ - { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "laptop", - "baseLayerID": -1, - "baseLayerMD5": "3fcb9293316374619d8ab17b0b68f548.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "LB Hip-Hop", - "md5": "61b464a77536f75490d8891fb877819a.png", - "type": "sprite", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ], - "info": [ - 0, - 13, - 1 - ], - "json": { - "objName": "LB Hip-Hop", - "sounds": [ - { - "soundName": "dance celebrate", - "soundID": -1, - "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav", - "sampleCount": 176401, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "lb stance", - "baseLayerID": -1, - "baseLayerMD5": "61b464a77536f75490d8891fb877819a.png", - "bitmapResolution": 2, - "rotationCenterX": 54, - "rotationCenterY": 244 - }, - { - "costumeName": "lb top stand", - "baseLayerID": -1, - "baseLayerMD5": "dfe3628ddf46a67dcc21c63be65a8e40.png", - "bitmapResolution": 2, - "rotationCenterX": 70, - "rotationCenterY": 248 - }, - { - "costumeName": "lb top R leg", - "baseLayerID": -1, - "baseLayerMD5": "e824768a109691b5a3c577d3506ed70c.png", - "bitmapResolution": 2, - "rotationCenterX": 244, - "rotationCenterY": 250 - }, - { - "costumeName": "lb top L leg", - "baseLayerID": -1, - "baseLayerMD5": "350472368e2310efe6fa734b79f0ff41.png", - "bitmapResolution": 2, - "rotationCenterX": 234, - "rotationCenterY": 286 - }, - { - "costumeName": "lb top L cross", - "baseLayerID": -1, - "baseLayerMD5": "5a151c4d4e2e2f870d9096d5fce6ed48.png", - "bitmapResolution": 2, - "rotationCenterX": 148, - "rotationCenterY": 258 - }, - { - "costumeName": "lb top R cross", - "baseLayerID": -1, - "baseLayerMD5": "99acf468000c6fcbaf344e4531725efc.png", - "bitmapResolution": 2, - "rotationCenterX": 174, - "rotationCenterY": 256 - }, - { - "costumeName": "lb pop front", - "baseLayerID": -1, - "baseLayerMD5": "e34a166807a3ffbf8d147b12aa49dd19.png", - "bitmapResolution": 2, - "rotationCenterX": 66, - "rotationCenterY": 272 - }, - { - "costumeName": "lb pop down", - "baseLayerID": -1, - "baseLayerMD5": "8e41de92cb932a6898782a39a0d7d300.png", - "bitmapResolution": 2, - "rotationCenterX": 56, - "rotationCenterY": 90 - }, - { - "costumeName": "lb pop left", - "baseLayerID": -1, - "baseLayerMD5": "ff1b96d1047d4be459a4614ce7c7c94c.png", - "bitmapResolution": 2, - "rotationCenterX": 198, - "rotationCenterY": 266 - }, - { - "costumeName": "lb pop right", - "baseLayerID": -1, - "baseLayerMD5": "d6d5534c628ac5d5fe3cbf1b76b71252.png", - "bitmapResolution": 2, - "rotationCenterX": 76, - "rotationCenterY": 264 - }, - { - "costumeName": "lb pop L arm", - "baseLayerID": -1, - "baseLayerMD5": "c1fd31607619b8c98a286a650f248511.png", - "bitmapResolution": 2, - "rotationCenterX": 100, - "rotationCenterY": 262 - }, - { - "costumeName": "lb pop stand", - "baseLayerID": -1, - "baseLayerMD5": "51fe5962fe4d2af7f6fad7abaa692069.png", - "bitmapResolution": 2, - "rotationCenterX": 66, - "rotationCenterY": 268 - }, - { - "costumeName": "lb pop R arm", - "baseLayerID": -1, - "baseLayerMD5": "aa57575fde5ff8b13041e3a7b1499fe0.png", - "bitmapResolution": 2, - "rotationCenterX": 78, - "rotationCenterY": 258 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Lightning", - "md5": "4780c8bd552deaa7c1bc89e6e365c3d7.svg", - "type": "sprite", - "tags": [ - "things", - "castle", - "nature", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Lightning", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "lightning", - "baseLayerID": -1, - "baseLayerMD5": "4780c8bd552deaa7c1bc89e6e365c3d7.svg", - "rotationCenterX": 21, - "rotationCenterY": 83 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Lion", - "md5": "3b8c07aa7168de43c37c970726a7a7e6.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Lion", - "sounds": [ - { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "lion-a", - "baseLayerID": -1, - "baseLayerMD5": "3b8c07aa7168de43c37c970726a7a7e6.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "lion-b", - "baseLayerID": -1, - "baseLayerMD5": "ccda272ceba318cad983c44a371f936b.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 1, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Lionness", - "md5": "9e34575a2ce8b4abc82bab97f9d9c863.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Lionness", - "sounds": [ - { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "lioness", - "baseLayerID": -1, - "baseLayerMD5": "9e34575a2ce8b4abc82bab97f9d9c863.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Lornz OdetoCode", - "md5": "bf911c597995031014bbf32a8eb9d997.png", - "type": "sprite", - "tags": [ - "people", - "dance", - "photo", - "bitmap" - ], - "info": [ - 1, - 8, - 1 - ], - "json": { - "objName": "Lornz OdetoCode", - "scripts": [ - [ - 10, - 10, - [ - [ - "whenKeyPressed", - "space" - ], - [ - "nextCostume" - ] - ] - ] - ], - "sounds": [ - { - "soundName": "odesong-b", - "soundID": -1, - "md5": "2c41921491b1da2bfa1ebcaba34265ca.wav", - "sampleCount": 212553, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "lorenz01", - "baseLayerID": -1, - "baseLayerMD5": "bf911c597995031014bbf32a8eb9d997.png", - "bitmapResolution": 2, - "rotationCenterX": 71, - "rotationCenterY": 252 - }, - { - "costumeName": "lorenz02", - "baseLayerID": -1, - "baseLayerMD5": "a1fb3946afc4c064503656d5d8ed0def.png", - "bitmapResolution": 2, - "rotationCenterX": 120, - "rotationCenterY": 252 - }, - { - "costumeName": "lorenz03", - "baseLayerID": -1, - "baseLayerMD5": "1da2ed229f84c1e6d1693bce3bf2d27f.png", - "bitmapResolution": 2, - "rotationCenterX": 125, - "rotationCenterY": 252 - }, - { - "costumeName": "lorenz04", - "baseLayerID": -1, - "baseLayerMD5": "6b798489bdf2c48337ccb2d31fc64c5f.png", - "bitmapResolution": 2, - "rotationCenterX": 124, - "rotationCenterY": 109 - }, - { - "costumeName": "lorenz05", - "baseLayerID": -1, - "baseLayerMD5": "dc4e7a7e84f20802d4c1b12423738f62.png", - "bitmapResolution": 2, - "rotationCenterX": 141, - "rotationCenterY": 252 - }, - { - "costumeName": "lorenz06", - "baseLayerID": -1, - "baseLayerMD5": "92db5fdd19b29f32890926d808e764af.png", - "bitmapResolution": 2, - "rotationCenterX": 132, - "rotationCenterY": 250 - }, - { - "costumeName": "lorenz07", - "baseLayerID": -1, - "baseLayerMD5": "6b65c2e80daf820d0f277af4f7352cbc.png", - "bitmapResolution": 2, - "rotationCenterX": 121, - "rotationCenterY": 252 - }, - { - "costumeName": "lorenz07b", - "baseLayerID": -1, - "baseLayerMD5": "97ef7f1f07248305725f74a0cc127eba.png", - "bitmapResolution": 2, - "rotationCenterX": 115, - "rotationCenterY": 252 - } - ], - "currentCostumeIndex": 7, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Magic Carpet", - "md5": "66b74069378c828cb21d2dbe2227a31a.png", - "type": "sprite", - "tags": [ - "transportation", - " fantasy", - "flying", - "castle", - "drawing", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Magic Carpet", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "magiccarpet", - "baseLayerID": -1, - "baseLayerMD5": "66b74069378c828cb21d2dbe2227a31a.png", - "rotationCenterX": 90, - "rotationCenterY": 31 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Magic Wand", - "md5": "bec6934b731e65ae36195030ce5ef478.svg", - "type": "sprite", - "tags": [ - "things", - "castle", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Magic Wand", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "magicwand", - "baseLayerID": -1, - "baseLayerMD5": "bec6934b731e65ae36195030ce5ef478.svg", - "rotationCenterX": 41, - "rotationCenterY": 18 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Maya", - "md5": "8b7ff2f1190825367112c2c076e34af3.png", - "type": "sprite", - "tags": [ - "people", - "city", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Maya", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "maya", - "baseLayerID": -1, - "baseLayerMD5": "8b7ff2f1190825367112c2c076e34af3.png", - "bitmapResolution": 2, - "rotationCenterX": 72, - "rotationCenterY": 138 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Marble Building", - "md5": "53608adfaea6e927dc11b53f604e2a1e.png", - "type": "sprite", - "tags": [ - "things", - "photo", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Marble Building", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "marble-building", - "baseLayerID": -1, - "baseLayerMD5": "53608adfaea6e927dc11b53f604e2a1e.png", - "rotationCenterX": 50, - "rotationCenterY": 68 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Microphone", - "md5": "8cfb8e05a2826ddc714b2a7a90e065bc.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 10 - ], - "json": { - "objName": "Microphone", - "sounds": [ - { - "soundName": "bass beatbox", - "soundID": -1, - "md5": "28153621d293c86da0b246d314458faf.wav", - "sampleCount": 6720, - "rate": 22050, - "format": "" - }, - { - "soundName": "hi beatbox", - "soundID": -1, - "md5": "5a07847bf246c227204728b05a3fc8f3.wav", - "sampleCount": 5856, - "rate": 22050, - "format": "" - }, - { - "soundName": "snare beatbox", - "soundID": -1, - "md5": "c642c4c00135d890998f351faec55498.wav", - "sampleCount": 5630, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "scratching beatbox", - "soundID": -1, - "md5": "859249563a7b1fc0f6e92e36d1db81c7.wav", - "sampleCount": 11552, - "rate": 22050, - "format": "" - }, - { - "soundName": "crash beatbox", - "soundID": -1, - "md5": "725e29369e9138a43f11e0e5eb3eb562.wav", - "sampleCount": 26883, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub beatbox", - "soundID": -1, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hihat beatbox", - "soundID": -1, - "md5": "0c77025e2e874f05cd3c7d850874d56d.wav", - "sampleCount": 4274, - "rate": 22050, - "format": "" - }, - { - "soundName": "rim beatbox", - "soundID": -1, - "md5": "7ede1382b578d8fc32850b48d082d914.wav", - "sampleCount": 4960, - "rate": 22050, - "format": "" - }, - { - "soundName": "clap beatbox", - "soundID": -1, - "md5": "abc70bb390f8e55f22f32265500d814a.wav", - "sampleCount": 4224, - "rate": 22050, - "format": "" - }, - { - "soundName": "wah beatbox", - "soundID": -1, - "md5": "9021b7bb06f2399f18e2db4fb87095dc.wav", - "sampleCount": 6624, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "microphone", - "baseLayerID": -1, - "baseLayerMD5": "8cfb8e05a2826ddc714b2a7a90e065bc.svg", - "bitmapResolution": 1, - "rotationCenterX": 27, - "rotationCenterY": 31 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Microphone Stand", - "md5": "4d41cdbf7887d12c3e9f242775b5ad7f.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 10 - ], - "json": { - "objName": "Microphone Stand", - "sounds": [ - { - "soundName": "bass beatbox", - "soundID": -1, - "md5": "28153621d293c86da0b246d314458faf.wav", - "sampleCount": 6720, - "rate": 22050, - "format": "" - }, - { - "soundName": "hi beatbox", - "soundID": -1, - "md5": "5a07847bf246c227204728b05a3fc8f3.wav", - "sampleCount": 5856, - "rate": 22050, - "format": "" - }, - { - "soundName": "snare beatbox", - "soundID": -1, - "md5": "726fea2968a387ef566c03d163f17668.wav", - "sampleCount": 6102, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "scratching beatbox", - "soundID": -1, - "md5": "859249563a7b1fc0f6e92e36d1db81c7.wav", - "sampleCount": 11552, - "rate": 22050, - "format": "" - }, - { - "soundName": "crash beatbox", - "soundID": -1, - "md5": "725e29369e9138a43f11e0e5eb3eb562.wav", - "sampleCount": 26883, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub beatbox", - "soundID": -1, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hihat beatbox", - "soundID": -1, - "md5": "0c77025e2e874f05cd3c7d850874d56d.wav", - "sampleCount": 4274, - "rate": 22050, - "format": "" - }, - { - "soundName": "rim beatbox", - "soundID": -1, - "md5": "7ede1382b578d8fc32850b48d082d914.wav", - "sampleCount": 4960, - "rate": 22050, - "format": "" - }, - { - "soundName": "clap beatbox", - "soundID": -1, - "md5": "abc70bb390f8e55f22f32265500d814a.wav", - "sampleCount": 4224, - "rate": 22050, - "format": "" - }, - { - "soundName": "wah beatbox", - "soundID": -1, - "md5": "9021b7bb06f2399f18e2db4fb87095dc.wav", - "sampleCount": 6624, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "microphonestand", - "baseLayerID": -1, - "baseLayerMD5": "4d41cdbf7887d12c3e9f242775b5ad7f.svg", - "bitmapResolution": 1, - "rotationCenterX": 57, - "rotationCenterY": 55 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Monkey1", - "md5": "45255daee4d368efe8e219cd5f7d622e.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Monkey1", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "monkey1-a", - "baseLayerID": -1, - "baseLayerMD5": "45255daee4d368efe8e219cd5f7d622e.svg", - "bitmapResolution": 1, - "rotationCenterX": 44, - "rotationCenterY": 45 - }, - { - "costumeName": "monkey1-b", - "baseLayerID": -1, - "baseLayerMD5": "1effbd6591f95a4495a821160fb2f847.svg", - "bitmapResolution": 1, - "rotationCenterX": 51, - "rotationCenterY": 46 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Monkey2", - "md5": "c08daa21c9f21e2106273876d31f2557.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "Monkey2", - "sounds": [ - { - "soundName": "chee chee", - "soundID": -1, - "md5": "25f4826cdd61e0a1c623ec2324c16ca0.wav", - "sampleCount": 34560, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "monkey2-a", - "baseLayerID": -1, - "baseLayerMD5": "c08daa21c9f21e2106273876d31f2557.svg", - "bitmapResolution": 1, - "rotationCenterX": 68, - "rotationCenterY": 99 - }, - { - "costumeName": "monkey2-b", - "baseLayerID": -1, - "baseLayerMD5": "53481469168a0922a96491cb8b449630.svg", - "bitmapResolution": 1, - "rotationCenterX": 68, - "rotationCenterY": 99 - }, - { - "costumeName": "monkey2-c", - "baseLayerID": -1, - "baseLayerMD5": "8bd2ad2fe45a912a74d3a41126028dc8.svg", - "bitmapResolution": 1, - "rotationCenterX": 68, - "rotationCenterY": 99 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 0.75, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Mori", - "md5": "350a86adb24247003cc7e047bdba3c1d.png", - "type": "sprite", - "tags": [ - "people", - "city", - "drawing", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Mori", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "mori", - "baseLayerID": -1, - "baseLayerMD5": "350a86adb24247003cc7e047bdba3c1d.png", - "bitmapResolution": 2, - "rotationCenterX": 42, - "rotationCenterY": 160 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Mouse1", - "md5": "a87bfdaa45bb3c72a2f9525dc5039431.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Mouse1", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "mouse1-a", - "baseLayerID": -1, - "baseLayerMD5": "a87bfdaa45bb3c72a2f9525dc5039431.svg", - "bitmapResolution": 1, - "rotationCenterX": 50, - "rotationCenterY": 27 - }, - { - "costumeName": "mouse1-b", - "baseLayerID": -1, - "baseLayerMD5": "6ed2bd9c2809c4beb356c1f19d2d089d.svg", - "bitmapResolution": 1, - "rotationCenterX": 65, - "rotationCenterY": 21 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Muffin", - "md5": "365083e1b1b3faae1d39e2bac0ccf130.svg", - "type": "sprite", - "tags": [ - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Muffin", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "muffin-a", - "baseLayerID": -1, - "baseLayerMD5": "365083e1b1b3faae1d39e2bac0ccf130.svg", - "bitmapResolution": 1, - "rotationCenterX": 85, - "rotationCenterY": 48 - }, - { - "costumeName": "muffin-b", - "baseLayerID": -1, - "baseLayerMD5": "7c60215b53fe0abc82e34d68fa33e3b4.svg", - "bitmapResolution": 1, - "rotationCenterX": 85, - "rotationCenterY": 48 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Nano", - "md5": "dabcd5cda06875843eb24ea54df50b0f.svg", - "type": "sprite", - "tags": [ - "fantasy", - "space", - "drawing", - "vector" - ], - "info": [ - 0, - 4, - 1 - ], - "json": { - "objName": "Nano", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "nano-a", - "baseLayerID": -1, - "baseLayerMD5": "dabcd5cda06875843eb24ea54df50b0f.svg", - "rotationCenterX": 61, - "rotationCenterY": 60 - }, - { - "costumeName": "nano-b", - "baseLayerID": -1, - "baseLayerMD5": "148aee134f042a16273f633633be9e0f.svg", - "rotationCenterX": 61, - "rotationCenterY": 60 - }, - { - "costumeName": "nano-c", - "baseLayerID": -1, - "baseLayerMD5": "94381dbc90a975710dc68aa76a7f244f.svg", - "rotationCenterX": 61, - "rotationCenterY": 60 - }, - { - "costumeName": "nano-d", - "baseLayerID": -1, - "baseLayerMD5": "b0b0bacf204623377a23ad3d0c05cfc6.svg", - "rotationCenterX": 61, - "rotationCenterY": 60 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Neigh Pony", - "md5": "ada9b015f41c2c821fb4e9df8037f386.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Neigh Pony", - "sounds": [ - { - "soundName": "horse", - "soundID": -1, - "md5": "45ffcf97ee2edca0199ff5aa71a5b72e.wav", - "sampleCount": 14464, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "neigh pony", - "baseLayerID": -1, - "baseLayerMD5": "ada9b015f41c2c821fb4e9df8037f386.svg", - "bitmapResolution": 1, - "rotationCenterX": 74, - "rotationCenterY": 78 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Octopus", - "md5": "2f942e5655aabed4a9dd9725a7deb242.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector", - "underwater" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Octopus", - "sounds": [ - { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "octopus-a", - "baseLayerID": -1, - "baseLayerMD5": "2f942e5655aabed4a9dd9725a7deb242.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "octopus-b", - "baseLayerID": -1, - "baseLayerMD5": "40af92c183ed199d78037e7ced718ee4.svg", - "bitmapResolution": 1, - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 1, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Orange", - "md5": "be6818718c8c71b4e5adb571f94988a6.svg", - "type": "sprite", - "tags": [ - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Orange", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "orange", - "baseLayerID": -1, - "baseLayerMD5": "be6818718c8c71b4e5adb571f94988a6.svg", - "bitmapResolution": 1, - "rotationCenterX": 19, - "rotationCenterY": 18 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Orange2", - "md5": "ceb98f80b8f4c8018fc7db600f765c9e.svg", - "type": "sprite", - "tags": [ - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "Orange2", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "orange2-a", - "baseLayerID": -1, - "baseLayerMD5": "ceb98f80b8f4c8018fc7db600f765c9e.svg", - "bitmapResolution": 1, - "rotationCenterX": 49, - "rotationCenterY": 24 - }, - { - "costumeName": "orange2-b", - "baseLayerID": -1, - "baseLayerMD5": "0950b7903dc3492399ccbfd8b0468d54.svg", - "bitmapResolution": 1, - "rotationCenterX": 49, - "rotationCenterY": 27 - }, - { - "costumeName": "orange2-c", - "baseLayerID": -1, - "baseLayerMD5": "89645fba4f8c6fab7dda0e87277542a5.svg", - "bitmapResolution": 1, - "rotationCenterX": 49, - "rotationCenterY": 33 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Paddle", - "md5": "0aa17f956a9f355abfda343cc5219b3b.svg", - "type": "sprite", - "tags": [ - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 0 - ], - "json": { - "objName": "Paddle", - "costumes": [ - { - "costumeName": "paddle", - "baseLayerID": -1, - "baseLayerMD5": "0aa17f956a9f355abfda343cc5219b3b.svg", - "bitmapResolution": 1, - "rotationCenterX": 39, - "rotationCenterY": 8 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 0.85000000000001, - "direction": -90, - "rotationStyle": "none", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {}, - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ] - } - }, - { - "name": "Palmtree", - "md5": "6d9c18c296edc8a01e4c611b573b5723.gif", - "type": "sprite", - "tags": [ - "things", - "nature", - "photo", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Palmtree", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "palmtree", - "baseLayerID": -1, - "baseLayerMD5": "6d9c18c296edc8a01e4c611b573b5723.gif", - "rotationCenterX": 58, - "rotationCenterY": 100 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Parrot", - "md5": "fc6be35bc67a5f2944b381b7990006c8.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "flying", - "nature", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Parrot", - "sounds": [ - { - "soundName": "bird", - "soundID": -1, - "md5": "18bd4b634a3f992a16b30344c7d810e0.wav", - "sampleCount": 3840, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "parrot-a", - "baseLayerID": -1, - "baseLayerMD5": "fc6be35bc67a5f2944b381b7990006c8.svg", - "bitmapResolution": 1, - "rotationCenterX": 86, - "rotationCenterY": 106 - }, - { - "costumeName": "parrot-b", - "baseLayerID": -1, - "baseLayerMD5": "82209c20cd633a7f4d64b838a347da36.svg", - "bitmapResolution": 1, - "rotationCenterX": 49, - "rotationCenterY": 31 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Parrot2", - "md5": "ca9e5a17351782f06eb5ab0bc6fd8a68.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "flying", - "nature", - "vector" - ], - "info": [ - 0, - 2, - 2 - ], - "json": { - "objName": "Parrot2", - "sounds": [ - { - "soundName": "squawk", - "soundID": -1, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "bird", - "soundID": -1, - "md5": "18bd4b634a3f992a16b30344c7d810e0.wav", - "sampleCount": 3840, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "parrot2-a", - "baseLayerID": -1, - "baseLayerMD5": "ca9e5a17351782f06eb5ab0bc6fd8a68.svg", - "bitmapResolution": 1, - "rotationCenterX": 106, - "rotationCenterY": 66 - }, - { - "costumeName": "parrot2-b", - "baseLayerID": -1, - "baseLayerMD5": "808f91dca2d4bb95471242e8d0a214c5.svg", - "bitmapResolution": 1, - "rotationCenterX": 83, - "rotationCenterY": 13 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Paul", - "md5": "4092b43b067ef01ce76a395637fe020a.gif", - "type": "sprite", - "tags": [ - "people", - "city", - "photo", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Paul", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "paul", - "baseLayerID": -1, - "baseLayerMD5": "4092b43b067ef01ce76a395637fe020a.gif", - "rotationCenterX": 41, - "rotationCenterY": 100 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Pencil", - "md5": "18dfa6688d130d16299176b93d9a333b.svg", - "type": "sprite", - "tags": [ - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Pencil", - "sounds": [ - { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "pencil-a", - "baseLayerID": -1, - "baseLayerMD5": "18dfa6688d130d16299176b93d9a333b.svg", - "bitmapResolution": 1, - "rotationCenterX": 49, - "rotationCenterY": 54 - }, - { - "costumeName": "pencil-b", - "baseLayerID": -1, - "baseLayerMD5": "21ee9e97ab2077f4f00016b8716c1415.svg", - "bitmapResolution": 1, - "rotationCenterX": 48, - "rotationCenterY": 68 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Penguin1", - "md5": "66c2f4631b5c8c88b8204094b067cac7.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Penguin1", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "penguin1", - "baseLayerID": -1, - "baseLayerMD5": "66c2f4631b5c8c88b8204094b067cac7.svg", - "rotationCenterX": 54, - "rotationCenterY": 61 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Penguin1 Talk", - "md5": "b4b2fe512e164b2a59c0575af2450c4d.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Penguin1 Talk", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "penguin1 talk-a", - "baseLayerID": -1, - "baseLayerMD5": "b4b2fe512e164b2a59c0575af2450c4d.svg", - "rotationCenterX": 48, - "rotationCenterY": 62 - }, - { - "costumeName": "penguin1 talk-b", - "baseLayerID": -1, - "baseLayerMD5": "43f06be8b94480e8895288513ba5b0b8.svg", - "rotationCenterX": 48, - "rotationCenterY": 61 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Penguin2", - "md5": "450e0ef0467e0529fd518ab57b6209de.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Penguin2", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "penguin2", - "baseLayerID": -1, - "baseLayerMD5": "450e0ef0467e0529fd518ab57b6209de.svg", - "rotationCenterX": 49, - "rotationCenterY": 79 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Penguin2 Talk", - "md5": "67583237f7e46a1201b92a5d086a1d6c.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Penguin2 Talk", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "penguin2 talk-a", - "baseLayerID": -1, - "baseLayerMD5": "67583237f7e46a1201b92a5d086a1d6c.svg", - "rotationCenterX": 45, - "rotationCenterY": 79 - }, - { - "costumeName": "penguin2 talk-b", - "baseLayerID": -1, - "baseLayerMD5": "b40abe69d20d4eaff367edff7b230614.svg", - "rotationCenterX": 50, - "rotationCenterY": 78 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Penguin3", - "md5": "b4c95362fff78b7cf1987030397e0a48.svg", - "type": "sprite", - "tags": [ - "animals", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "Penguin3", - "scripts": [ - [ - 142, - 432, - [ - [ - "setSizeTo:", - 100 - ] - ] - ] - ], - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "penguin3-a", - "baseLayerID": -1, - "baseLayerMD5": "b4c95362fff78b7cf1987030397e0a48.svg", - "bitmapResolution": 1, - "rotationCenterX": 59, - "rotationCenterY": 98 - }, - { - "costumeName": "penguin3-b", - "baseLayerID": -1, - "baseLayerMD5": "822512ec55329e95fc89cc34d3ac1a5b.svg", - "bitmapResolution": 1, - "rotationCenterX": 57, - "rotationCenterY": 97 - }, - { - "costumeName": "penguin3-c", - "baseLayerID": -1, - "baseLayerMD5": "5163bcbec95673d27950c036c090c0aa.svg", - "bitmapResolution": 1, - "rotationCenterX": 64, - "rotationCenterY": 98 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Piano", - "md5": "a5b6327e4fa12a1a476c0cc9053bafc6.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 8 - ], - "json": { - "objName": "Piano", - "sounds": [ - { - "soundName": "C piano", - "soundID": -1, - "md5": "d27ed8d953fe8f03c00f4d733d31d2cc.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "D piano", - "soundID": -1, - "md5": "51381ac422605ee8c7d64cfcbfd75efc.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "E piano", - "soundID": -1, - "md5": "c818fdfaf8a0efcb562e24e794700a57.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "F piano", - "soundID": -1, - "md5": "cdab3cce84f74ecf53e3941c6a003b5e.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "G piano", - "soundID": -1, - "md5": "42bb2ed28e7023e111b33220e1594a6f.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "A piano", - "soundID": -1, - "md5": "0727959edb2ea0525feed9b0c816991c.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "B piano", - "soundID": -1, - "md5": "86826c6022a46370ed1afae69f1ab1b9.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "C2 piano", - "soundID": -1, - "md5": "75d7d2c9b5d40dd4e1cb268111abf1a2.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "piano", - "baseLayerID": -1, - "baseLayerMD5": "a5b6327e4fa12a1a476c0cc9053bafc6.svg", - "bitmapResolution": 1, - "rotationCenterX": 142, - "rotationCenterY": 88 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Piano-Electric", - "md5": "e7604ca50cd042195efc54ff3fdcfb01.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 4, - 8 - ], - "json": { - "objName": "Piano-Electric", - "sounds": [ - { - "soundName": "C elec piano", - "soundID": -1, - "md5": "8366ee963cc57ad24a8a35a26f722c2b.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "D elec piano", - "soundID": -1, - "md5": "835f136ca8d346a17b4d4baf8405be37.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "E elec piano", - "soundID": -1, - "md5": "ab3c198f8e36efff14f0a5bad35fa3cd.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "F elec piano", - "soundID": -1, - "md5": "dc5e368fc0d0dad1da609bfc3e29aa15.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "G elec piano", - "soundID": -1, - "md5": "39525f6545d62a95d05153f92d63301a.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "A elec piano", - "soundID": -1, - "md5": "0cfa8e84d6a5cd63afa31d541625a9ef.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "B elec piano", - "soundID": -1, - "md5": "9cc77167419f228503dd57fddaa5b2a6.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - }, - { - "soundName": "C2 elec piano", - "soundID": -1, - "md5": "366c7edbd4dd5cca68bf62902999bd66.wav", - "sampleCount": 44100, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "keyboard-a", - "baseLayerID": -1, - "baseLayerMD5": "e7604ca50cd042195efc54ff3fdcfb01.svg", - "bitmapResolution": 1, - "rotationCenterX": 88, - "rotationCenterY": 24 - }, - { - "costumeName": "keyboard-b", - "baseLayerID": -1, - "baseLayerMD5": "679c004ce29c8a9cee140fa1f30e62b8.svg", - "bitmapResolution": 1, - "rotationCenterX": 89, - "rotationCenterY": 24 - }, - { - "costumeName": "keyboard-c", - "baseLayerID": -1, - "baseLayerMD5": "3d280e12a075a4d1e6c54bf8285abd37.svg", - "bitmapResolution": 1, - "rotationCenterX": 89, - "rotationCenterY": 24 - }, - { - "costumeName": "keyboard-d", - "baseLayerID": -1, - "baseLayerMD5": "001a532f8e781e032dd5424c9e633cd8.svg", - "bitmapResolution": 1, - "rotationCenterX": 89, - "rotationCenterY": 24 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Pico", - "md5": "65db60619ac367971660ca2fca516379.svg", - "type": "sprite", - "tags": [ - "fantasy", - "space", - "drawing", - "vector" - ], - "info": [ - 0, - 4, - 1 - ], - "json": { - "objName": "Pico", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "pico-a", - "baseLayerID": -1, - "baseLayerMD5": "65db60619ac367971660ca2fca516379.svg", - "rotationCenterX": 55, - "rotationCenterY": 66 - }, - { - "costumeName": "pico-b", - "baseLayerID": -1, - "baseLayerMD5": "b75f5dcc200e4d9e4b627f2a44e1ff63.svg", - "rotationCenterX": 55, - "rotationCenterY": 66 - }, - { - "costumeName": "pico-c", - "baseLayerID": -1, - "baseLayerMD5": "fa2e75ecbf2b7398b5404754290f63e8.svg", - "rotationCenterX": 55, - "rotationCenterY": 66 - }, - { - "costumeName": "pico-d", - "baseLayerID": -1, - "baseLayerMD5": "393a83c8c33d5ce94d1ac1363e841557.svg", - "rotationCenterX": 55, - "rotationCenterY": 66 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Pico walking", - "md5": "0a521446027aa84b07322e4cd893a797.svg", - "type": "sprite", - "tags": [ - "fantasy", - "space", - "drawing", - "walking", - "vector" - ], - "info": [ - 0, - 4, - 1 - ], - "json": { - "objName": "Pico walking", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "Pico walk1", - "baseLayerID": -1, - "baseLayerMD5": "0a521446027aa84b07322e4cd893a797.svg", - "rotationCenterX": 54, - "rotationCenterY": 71 - }, - { - "costumeName": "Pico walk2", - "baseLayerID": -1, - "baseLayerMD5": "1e498f3fffecc61ea5ff689ac9c2481f.svg", - "rotationCenterX": 54, - "rotationCenterY": 71 - }, - { - "costumeName": "Pico walk3", - "baseLayerID": -1, - "baseLayerMD5": "618d2af0e1b69318ff430cb13e63d9ba.svg", - "rotationCenterX": 54, - "rotationCenterY": 70 - }, - { - "costumeName": "Pico walk4", - "baseLayerID": -1, - "baseLayerMD5": "1c9978c1d5c5ddbe6e79c4ae7a3f25f8.svg", - "rotationCenterX": 54, - "rotationCenterY": 70 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Planet2", - "md5": "5e271e95665e90be47a6ef315d65aa0b.svg", - "type": "sprite", - "tags": [ - "things", - "space", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Planet2", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "planet2", - "baseLayerID": -1, - "baseLayerMD5": "5e271e95665e90be47a6ef315d65aa0b.svg", - "rotationCenterX": 72, - "rotationCenterY": 72 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Prince", - "md5": "d68eade061c5aedb9bd64e1ddfe84f6c.svg", - "type": "sprite", - "tags": [ - "people", - "fantasy", - "castle", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Prince", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "prince", - "baseLayerID": -1, - "baseLayerMD5": "d68eade061c5aedb9bd64e1ddfe84f6c.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Princess", - "md5": "4950196d5e49da3c706ebc9fe14be1c7.svg", - "type": "sprite", - "tags": [ - "people", - "fantasy", - "castle", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Princess", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "princess", - "baseLayerID": -1, - "baseLayerMD5": "4950196d5e49da3c706ebc9fe14be1c7.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Rainbow", - "md5": "aa284fb76bc965294306dfd264edfad2.svg", - "type": "sprite", - "tags": [ - "things", - "flying", - "city", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Rainbow", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "rainbow", - "baseLayerID": -1, - "baseLayerMD5": "aa284fb76bc965294306dfd264edfad2.svg", - "bitmapResolution": 1, - "rotationCenterX": 72, - "rotationCenterY": 36 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Referee", - "md5": "b510bc924622795216154727e18dd38e.gif", - "type": "sprite", - "tags": [ - "people", - "sports", - "photo", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Referee", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "referee", - "baseLayerID": -1, - "baseLayerMD5": "b510bc924622795216154727e18dd38e.gif", - "rotationCenterX": 41, - "rotationCenterY": 100 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Reindeer", - "md5": "4d5301597ef9b1679e4c06938892b918.svg", - "type": "sprite", - "tags": [ - "fantasy", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Reindeer", - "sounds": [ - { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "reindeer", - "baseLayerID": -1, - "baseLayerMD5": "4d5301597ef9b1679e4c06938892b918.svg", - "bitmapResolution": 1, - "rotationCenterX": 39, - "rotationCenterY": 70 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Robot1", - "md5": "ea7e44d0e301b60ba22319dfb501073a.svg", - "type": "sprite", - "tags": [ - "fantasy", - "drawing", - "space", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Robot1", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "robot1", - "baseLayerID": -1, - "baseLayerMD5": "ea7e44d0e301b60ba22319dfb501073a.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Rocks", - "md5": "049e5b00b9b3e389bca862ee408c00d3.svg", - "type": "sprite", - "tags": [ - "things", - "nature", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Rocks", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "rocks", - "baseLayerID": -1, - "baseLayerMD5": "049e5b00b9b3e389bca862ee408c00d3.svg", - "bitmapResolution": 1, - "rotationCenterX": 59, - "rotationCenterY": 15 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Rory", - "md5": "7cca95c0a56646dd65771247ea288612.png", - "type": "sprite", - "tags": [ - "people", - "city", - "drawing", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Rory", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "rory", - "baseLayerID": -1, - "baseLayerMD5": "7cca95c0a56646dd65771247ea288612.png", - "bitmapResolution": 2, - "rotationCenterX": 82, - "rotationCenterY": 160 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Ruby", - "md5": "c30210e8f719c3a4d2c7cc6917a39300.png", - "type": "sprite", - "tags": [ - "people", - "city", - "drawing", - "bitmap" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Ruby", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "ruby-a", - "baseLayerID": -1, - "baseLayerMD5": "c30210e8f719c3a4d2c7cc6917a39300.png", - "bitmapResolution": 2, - "rotationCenterX": 54, - "rotationCenterY": 172 - }, - { - "costumeName": "ruby-b", - "baseLayerID": -1, - "baseLayerMD5": "fc15fdbcc535473f6140cab28197f3be.png", - "bitmapResolution": 2, - "rotationCenterX": 76, - "rotationCenterY": 142 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Sailboat", - "md5": "8f8d0ea2f0ab5ca533f33f0da1eecfa6.png", - "type": "sprite", - "tags": [ - "transportation", - "photo", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Sailboat", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "sail-boat", - "baseLayerID": -1, - "baseLayerMD5": "8f8d0ea2f0ab5ca533f33f0da1eecfa6.png", - "rotationCenterX": 112, - "rotationCenterY": 91 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Sam", - "md5": "1d33952fec0abe4ef6adee9fd065d3a8.gif", - "type": "sprite", - "tags": [ - "people", - "city", - "photo", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Sam", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "sam", - "baseLayerID": -1, - "baseLayerMD5": "1d33952fec0abe4ef6adee9fd065d3a8.gif", - "rotationCenterX": 58, - "rotationCenterY": 90 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Saxophone", - "md5": "cebf064d1670cd4225b8a237ae28219b.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 8 - ], - "json": { - "objName": "Saxophone", - "sounds": [ - { - "soundName": "C sax", - "soundID": -1, - "md5": "4d2c939d6953b5f241a27a62cf72de64.wav", - "sampleCount": 9491, - "rate": 22050, - "format": "" - }, - { - "soundName": "D sax", - "soundID": -1, - "md5": "39f41954a73c0e15d842061e1a4c5e1d.wav", - "sampleCount": 9555, - "rate": 22050, - "format": "" - }, - { - "soundName": "E sax", - "soundID": -1, - "md5": "3568b7dfe173fab6877a9ff1dcbcf1aa.wav", - "sampleCount": 7489, - "rate": 22050, - "format": "" - }, - { - "soundName": "F sax", - "soundID": -1, - "md5": "2ae3083817bcd595e26ea2884b6684d5.wav", - "sampleCount": 7361, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "G sax", - "soundID": -1, - "md5": "cefba5de46adfe5702485e0934bb1e13.wav", - "sampleCount": 7349, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "A sax", - "soundID": -1, - "md5": "420991e0d6d99292c6d736963842536a.wav", - "sampleCount": 6472, - "rate": 22050, - "format": "" - }, - { - "soundName": "B sax", - "soundID": -1, - "md5": "653ebe92d491b49ad5d8101d629f567b.wav", - "sampleCount": 9555, - "rate": 22050, - "format": "" - }, - { - "soundName": "C2 sax", - "soundID": -1, - "md5": "ea8d34b18c3d8fe328cea201666458bf.wav", - "sampleCount": 7349, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "saxophone-a", - "baseLayerID": -1, - "baseLayerMD5": "cebf064d1670cd4225b8a237ae28219b.svg", - "bitmapResolution": 1, - "rotationCenterX": 69, - "rotationCenterY": 80 - }, - { - "costumeName": "saxophone-b", - "baseLayerID": -1, - "baseLayerMD5": "0de9d7beb4c752c4f73377c803b49a3a.svg", - "bitmapResolution": 1, - "rotationCenterX": 69, - "rotationCenterY": 80 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Scarf1", - "md5": "c55d2cfa06a834d2587bea5dbab3211e.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Scarf1", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "scarf1", - "baseLayerID": -1, - "baseLayerMD5": "c55d2cfa06a834d2587bea5dbab3211e.svg", - "bitmapResolution": 1, - "rotationCenterX": 54, - "rotationCenterY": 36 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 0.9, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Scarf2", - "md5": "90bc9cb4a8ce6f9523e4dd2e928e7b58.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Scarf2", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "scarf2", - "baseLayerID": -1, - "baseLayerMD5": "90bc9cb4a8ce6f9523e4dd2e928e7b58.svg", - "bitmapResolution": 1, - "rotationCenterX": 23, - "rotationCenterY": 16 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": true, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Scratch Logo", - "md5": "6c2a9839a24dca53e9b02a552ded6828.svg", - "type": "sprite", - "tags": [ - "things", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Scratch Logo", - "sounds": [ - { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "scratch logo", - "baseLayerID": -1, - "baseLayerMD5": "6c2a9839a24dca53e9b02a552ded6828.svg", - "bitmapResolution": 1, - "rotationCenterX": 85, - "rotationCenterY": 26 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Shark", - "md5": "437e51894eaeeb3a5d44f0d417948c27.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "underwater", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "Shark", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "shark-a ", - "baseLayerID": -1, - "baseLayerMD5": "437e51894eaeeb3a5d44f0d417948c27.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "shark-b ", - "baseLayerID": -1, - "baseLayerMD5": "d63acefaf97990252b935f6e377c3b6f.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "shark-c ", - "baseLayerID": -1, - "baseLayerMD5": "019d8f535145a38b370c977db99efb6b.svg", - "rotationCenterX": 77, - "rotationCenterY": 37 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Shirt", - "md5": "3f47f55039d35e4734576de652be8772.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Shirt", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "shirt-a", - "baseLayerID": -1, - "baseLayerMD5": "3f47f55039d35e4734576de652be8772.svg", - "bitmapResolution": 1, - "rotationCenterX": 39, - "rotationCenterY": 48 - }, - { - "costumeName": "shirt-b", - "baseLayerID": -1, - "baseLayerMD5": "2c886fdcca6fb847eec9f069e10682bb.svg", - "bitmapResolution": 1, - "rotationCenterX": 48, - "rotationCenterY": 48 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": true, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Shirt2", - "md5": "c224bb3cd22fd9e0c0c2f2be1f86395e.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Shirt2", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "shirt2-a", - "baseLayerID": -1, - "baseLayerMD5": "c224bb3cd22fd9e0c0c2f2be1f86395e.svg", - "bitmapResolution": 1, - "rotationCenterX": 39, - "rotationCenterY": 48 - }, - { - "costumeName": "shirt2-a2", - "baseLayerID": -1, - "baseLayerMD5": "b4d653691641c1f717cdf689f7e2821c.svg", - "bitmapResolution": 1, - "rotationCenterX": 39, - "rotationCenterY": 48 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": true, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Shirt Blouse", - "md5": "dd7efeb200d80f5183f2cb7b7efce038.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 0 - ], - "json": { - "objName": "Shirt Blouse", - "costumes": [ - { - "costumeName": "shirt blouse", - "baseLayerID": -1, - "baseLayerMD5": "dd7efeb200d80f5183f2cb7b7efce038.svg", - "bitmapResolution": 1, - "rotationCenterX": 35, - "rotationCenterY": 28 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": true, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {}, - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ] - } - }, - { - "name": "Shirt Collar", - "md5": "7e93627f104d76d7274e7d2ad782345d.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "Shirt Collar", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "shirt collar-a", - "baseLayerID": -1, - "baseLayerMD5": "7e93627f104d76d7274e7d2ad782345d.svg", - "bitmapResolution": 1, - "rotationCenterX": 30, - "rotationCenterY": 57 - }, - { - "costumeName": "shirt collar-b", - "baseLayerID": -1, - "baseLayerMD5": "885506a24bfe830c7150fdca1f019371.svg", - "bitmapResolution": 1, - "rotationCenterX": 30, - "rotationCenterY": 57 - }, - { - "costumeName": "shirt collar-c", - "baseLayerID": -1, - "baseLayerMD5": "1d1d2a0ea62e28586e8276970d3b89af.svg", - "bitmapResolution": 1, - "rotationCenterX": 30, - "rotationCenterY": 57 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": true, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Shirt-T", - "md5": "80253a3052afa8f321f0023c9e13420c.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 0 - ], - "json": { - "objName": "Shirt-T", - "costumes": [ - { - "costumeName": "shirt-t", - "baseLayerID": -1, - "baseLayerMD5": "80253a3052afa8f321f0023c9e13420c.svg", - "bitmapResolution": 1, - "rotationCenterX": 39, - "rotationCenterY": 28 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": true, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {}, - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ] - } - }, - { - "name": "Shoes1", - "md5": "3e322d6e9a487facb7149fa072720ada.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Shoes1", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "shoes1", - "baseLayerID": -1, - "baseLayerMD5": "3e322d6e9a487facb7149fa072720ada.svg", - "bitmapResolution": 1, - "rotationCenterX": 36, - "rotationCenterY": 23 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": true, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Shoes2", - "md5": "0c0a356705c2c8f6c5cc6caac032889f.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Shoes2", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "shoes2", - "baseLayerID": -1, - "baseLayerMD5": "0c0a356705c2c8f6c5cc6caac032889f.svg", - "bitmapResolution": 1, - "rotationCenterX": 40, - "rotationCenterY": 8 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": true, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Singer1", - "md5": "59730ba37234f59efeddec1bb0a4e314.svg", - "type": "sprite", - "tags": [ - "people", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Singer1", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "Singer1", - "baseLayerID": -1, - "baseLayerMD5": "59730ba37234f59efeddec1bb0a4e314.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Skates", - "md5": "3d2d42a03495c0ad7a973ba35e96be39.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Skates", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "skates", - "baseLayerID": -1, - "baseLayerMD5": "3d2d42a03495c0ad7a973ba35e96be39.svg", - "bitmapResolution": 1, - "rotationCenterX": 44, - "rotationCenterY": -21 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 0.9, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "SL Hip-Hop", - "md5": "2d2b577a12a51aa4448ad3e7e2a07079.png", - "type": "sprite", - "tags": [ - "people", - "dance", - "city", - "photo", - "bitmap" - ], - "info": [ - 0, - 8, - 1 - ], - "json": { - "objName": "SL Hip-Hop", - "sounds": [ - { - "soundName": "dance celebrate", - "soundID": -1, - "md5": "0edb8fb88af19e6e17d0f8cf64c1d136.wav", - "sampleCount": 176401, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "sl top stand", - "baseLayerID": -1, - "baseLayerMD5": "2d2b577a12a51aa4448ad3e7e2a07079.png", - "bitmapResolution": 2, - "rotationCenterX": 64, - "rotationCenterY": 233 - }, - { - "costumeName": "sl top R leg", - "baseLayerID": -1, - "baseLayerMD5": "ba01e9c4448285b7b8a63e98d89ac1d7.png", - "bitmapResolution": 2, - "rotationCenterX": 54, - "rotationCenterY": 230 - }, - { - "costumeName": "sl top L leg", - "baseLayerID": -1, - "baseLayerMD5": "b274db2a4fa913555dae028f327e7423.png", - "bitmapResolution": 2, - "rotationCenterX": 149, - "rotationCenterY": 245 - }, - { - "costumeName": "sl top ready", - "baseLayerID": -1, - "baseLayerMD5": "3df3afb72314807fc6c58075da124b84.png", - "bitmapResolution": 2, - "rotationCenterX": 74, - "rotationCenterY": 198 - }, - { - "costumeName": "sl top L cross", - "baseLayerID": -1, - "baseLayerMD5": "f26ea2f0d0baaa5aaed3cd96d7843206.png", - "bitmapResolution": 2, - "rotationCenterX": 50, - "rotationCenterY": 214 - }, - { - "costumeName": "sl top R cross", - "baseLayerID": -1, - "baseLayerMD5": "b46163522a53150fdb6a44461738e9ae.png", - "bitmapResolution": 2, - "rotationCenterX": 110, - "rotationCenterY": 200 - }, - { - "costumeName": "sl pop L arm", - "baseLayerID": -1, - "baseLayerMD5": "48fcc33505fbd3c65d1f7bfbb4745a13.png", - "bitmapResolution": 2, - "rotationCenterX": 145, - "rotationCenterY": 174 - }, - { - "costumeName": "sl pop R arm", - "baseLayerID": -1, - "baseLayerMD5": "ffae2eb189d6efc97efc91e93ed4d8bf.png", - "bitmapResolution": 2, - "rotationCenterX": 66, - "rotationCenterY": 237 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Snowflake", - "md5": "e6b25d5fd688b5448f7977282644354e.svg", - "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Snowflake", - "sounds": [ - { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "snowflake", - "baseLayerID": -1, - "baseLayerMD5": "e6b25d5fd688b5448f7977282644354e.svg", - "bitmapResolution": 1, - "rotationCenterX": 104, - "rotationCenterY": 103 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 0.65, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Snowman", - "md5": "3ec5fa2b864d84e07db4104c6fc531d7.svg", - "type": "sprite", - "tags": [ - "fantasy", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Snowman", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "snowman", - "baseLayerID": -1, - "baseLayerMD5": "3ec5fa2b864d84e07db4104c6fc531d7.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Soccer Ball", - "md5": "3adbf5f367c8e330ee01ac1df48c61a6.svg", - "type": "sprite", - "tags": [ - "things", - "sports", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Soccer Ball", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "soccer ball", - "baseLayerID": -1, - "baseLayerMD5": "3adbf5f367c8e330ee01ac1df48c61a6.svg", - "rotationCenterX": 32, - "rotationCenterY": 34 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Spaceship", - "md5": "a9517b5b6530b313e5c682c607865093.svg", - "type": "sprite", - "tags": [ - "transportation", - "space", - "fantasy", - "flying", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Spaceship", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "spaceship-a", - "baseLayerID": -1, - "baseLayerMD5": "a9517b5b6530b313e5c682c607865093.svg", - "bitmapResolution": 1, - "rotationCenterX": 59, - "rotationCenterY": 84 - }, - { - "costumeName": "spaceship-b", - "baseLayerID": -1, - "baseLayerMD5": "a4470323dee8c46402c5b0dc23b7715a.svg", - "bitmapResolution": 1, - "rotationCenterX": 62, - "rotationCenterY": 83 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Speaker", - "md5": "11f7d750831512a743aed3b301fb6158.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "dance", - "drawing", - "vector" - ], - "info": [ - 1, - 1, - 7 - ], - "json": { - "objName": "Speaker", - "variables": [ - { - "name": "scale degree", - "value": 1, - "isPersistent": false - }, - { - "name": "octave", - "value": 0, - "isPersistent": false - }, - { - "name": "note number", - "value": 62, - "isPersistent": false - }, - { - "name": "loop number", - "value": 1, - "isPersistent": false - } - ], - "scripts": [ - [ - 890, - 496, - [ - [ - "procDef", - "play major scale note %n for %n beats", - [ - "note", - "beats" - ], - [ - 1, - 1 - ], - false - ], - [ - "setVar:to:", - "scale degree", - [ - "%", - [ - "-", - [ - "getParam", - "note", - "r" - ], - 1 - ], - 7 - ] - ], - [ - "setVar:to:", - "octave", - [ - "computeFunction:of:", - "floor", - [ - "/", - [ - "-", - [ - "getParam", - "note", - "r" - ], - 1 - ], - 7 - ] - ] - ], - [ - "doIf", - [ - "=", - [ - "readVariable", - "scale degree" - ], - "0" - ], - [ - [ - "setVar:to:", - "note number", - 0 - ] - ] - ], - [ - "doIf", - [ - "=", - [ - "readVariable", - "scale degree" - ], - "1" - ], - [ - [ - "setVar:to:", - "note number", - "2" - ] - ] - ], - [ - "doIf", - [ - "=", - [ - "readVariable", - "scale degree" - ], - "2" - ], - [ - [ - "setVar:to:", - "note number", - "4" - ] - ] - ], - [ - "doIf", - [ - "=", - [ - "readVariable", - "scale degree" - ], - "3" - ], - [ - [ - "setVar:to:", - "note number", - "5" - ] - ] - ], - [ - "doIf", - [ - "=", - [ - "readVariable", - "scale degree" - ], - "4" - ], - [ - [ - "setVar:to:", - "note number", - "7" - ] - ] - ], - [ - "doIf", - [ - "=", - [ - "readVariable", - "scale degree" - ], - "5" - ], - [ - [ - "setVar:to:", - "note number", - "9" - ] - ] - ], - [ - "doIf", - [ - "=", - [ - "readVariable", - "scale degree" - ], - "6" - ], - [ - [ - "setVar:to:", - "note number", - "11" - ] - ] - ], - [ - "changeVar:by:", - "note number", - 60 - ], - [ - "changeVar:by:", - "note number", - [ - "*", - [ - "readVariable", - "octave" - ], - 12 - ] - ], - [ - "noteOn:duration:elapsed:from:", - [ - "readVariable", - "note number" - ], - [ - "getParam", - "beats", - "r" - ] - ] - ] - ] - ], - "sounds": [ - { - "soundName": "drive around", - "soundID": -1, - "md5": "a3a85fb8564b0266f50a9c091087b7aa.wav", - "sampleCount": 44096, - "rate": 22050, - "format": "" - }, - { - "soundName": "scratchy beat", - "soundID": -1, - "md5": "289dc558e076971e74dd1a0bd55719b1.wav", - "sampleCount": 44096, - "rate": 22050, - "format": "" - }, - { - "soundName": "drum jam", - "soundID": -1, - "md5": "8b5486ccc806e97e83049d25b071f7e4.wav", - "sampleCount": 44288, - "rate": 22050, - "format": "" - }, - { - "soundName": "cymbal echo", - "soundID": -1, - "md5": "bb243badd1201b2607bf2513df10cd97.wav", - "sampleCount": 44326, - "rate": 22050, - "format": "" - }, - { - "soundName": "drum satellite", - "soundID": -1, - "md5": "079067d7909f791b29f8be1c00fc2131.wav", - "sampleCount": 44096, - "rate": 22050, - "format": "" - }, - { - "soundName": "kick back", - "soundID": -1, - "md5": "9cd340d9d568b1479f731e69e103b3ce.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "drum funky", - "soundID": -1, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "speaker", - "baseLayerID": -1, - "baseLayerMD5": "11f7d750831512a743aed3b301fb6158.svg", - "bitmapResolution": 1, - "rotationCenterX": 53, - "rotationCenterY": 79 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Squirrel", - "md5": "7e24c99c1b853e52f8e7f9004416fa34.png", - "type": "sprite", - "tags": [ - "animals", - "bitmap", - "photo" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Squirrel", - "sounds": [ - { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "squirrel1", - "baseLayerID": -1, - "baseLayerMD5": "7e24c99c1b853e52f8e7f9004416fa34.png", - "bitmapResolution": 2, - "rotationCenterX": 158, - "rotationCenterY": 146 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Star1", - "md5": "cd10e729b4e222f1e469b206343cf4b4.svg", - "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Star1", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "star1", - "baseLayerID": -1, - "baseLayerMD5": "cd10e729b4e222f1e469b206343cf4b4.svg", - "bitmapResolution": 1, - "rotationCenterX": 21, - "rotationCenterY": 19 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 0.9, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Star2", - "md5": "4d3286deb1314a0956402bbf446f29af.svg", - "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Star2", - "sounds": [ - { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "star2", - "baseLayerID": -1, - "baseLayerMD5": "4d3286deb1314a0956402bbf446f29af.svg", - "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 27 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Star3", - "md5": "75ae725d4e1b0b83d33aff45b5b1476d.svg", - "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 0 - ], - "json": { - "objName": "Star3", - "costumes": [ - { - "costumeName": "star3-a", - "baseLayerID": -1, - "baseLayerMD5": "75ae725d4e1b0b83d33aff45b5b1476d.svg", - "bitmapResolution": 1, - "rotationCenterX": 54, - "rotationCenterY": 55 - }, - { - "costumeName": "star3-b", - "baseLayerID": -1, - "baseLayerMD5": "70fc35fd2b0430ea681d0c8244eaa59e.svg", - "bitmapResolution": 1, - "rotationCenterX": 33, - "rotationCenterY": 34 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {}, - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ] - } - }, - { - "name": "Starfish", - "md5": "c4276a5f591162d7b350cac161aa9abc.svg", - "type": "sprite", - "tags": [ - "animals", - "drawing", - "underwater", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Starfish", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "starfish-a", - "baseLayerID": -1, - "baseLayerMD5": "c4276a5f591162d7b350cac161aa9abc.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - }, - { - "costumeName": "starfish-b ", - "baseLayerID": -1, - "baseLayerMD5": "6dc100e566ef439ccbe9c0b5be1492d4.svg", - "rotationCenterX": 53, - "rotationCenterY": 60 - } - ], - "currentCostumeIndex": 1, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Stop", - "md5": "2f5a6535688b6742f2c9d0446405d88f.svg", - "type": "sprite", - "tags": [ - "things", - "vector", - "drawing" - ], - "info": [ - 0, - 1, - 0 - ], - "json": { - "objName": "Stop", - "costumes": [ - { - "costumeName": "stop", - "baseLayerID": -1, - "baseLayerMD5": "2f5a6535688b6742f2c9d0446405d88f.svg", - "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 25 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {}, - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ] - } - }, - { - "name": "Street Cleaner", - "md5": "e3699b3f2f7d67a9f48ea9b71fd3733a.png", - "type": "sprite", - "tags": [ - "transportation", - "city", - "photo", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Street Cleaner", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "street-cleaner-mit", - "baseLayerID": -1, - "baseLayerMD5": "e3699b3f2f7d67a9f48ea9b71fd3733a.png", - "rotationCenterX": 100, - "rotationCenterY": 59 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Sun", - "md5": "efaa211af34ad894707b563239f84aeb.svg", - "type": "sprite", - "tags": [ - "things", - "space", - "drawing", - "vector", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Sun", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "sun", - "baseLayerID": -1, - "baseLayerMD5": "efaa211af34ad894707b563239f84aeb.svg", - "rotationCenterX": 72, - "rotationCenterY": 72 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Sunglasses1", - "md5": "47a9400912ddb1b051a4b681d3845edb.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Sunglasses1", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "sunglasses1", - "baseLayerID": -1, - "baseLayerMD5": "47a9400912ddb1b051a4b681d3845edb.svg", - "rotationCenterX": 37, - "rotationCenterY": 14 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Sunglasses2", - "md5": "bc266026eeb0d1942c78df55f26bb3f6.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Sunglasses2", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "sunglasses2", - "baseLayerID": -1, - "baseLayerMD5": "bc266026eeb0d1942c78df55f26bb3f6.svg", - "rotationCenterX": 29, - "rotationCenterY": 10 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Taco", - "md5": "3845cf38b946941d5cb653a8d667259a.svg", - "type": "sprite", - "tags": [ - "things", - "flying", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Taco", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "taco-a", - "baseLayerID": -1, - "baseLayerMD5": "3845cf38b946941d5cb653a8d667259a.svg", - "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 15 - }, - { - "costumeName": "taco-b", - "baseLayerID": -1, - "baseLayerMD5": "a3999b2f60e65799fac4cc5a4b06c4c8.svg", - "bitmapResolution": 1, - "rotationCenterX": 56, - "rotationCenterY": 15 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Tennis Ball", - "md5": "38d3048bf7ec9f4ec3fd24dc38a03eea.png", - "type": "sprite", - "tags": [ - "things", - "sports", - "photo", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Tennis Ball", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "tennisball", - "baseLayerID": -1, - "baseLayerMD5": "38d3048bf7ec9f4ec3fd24dc38a03eea.png", - "rotationCenterX": 15, - "rotationCenterY": 15 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Tera", - "md5": "88ba313f6b2f5d1188e1b530f13f9619.svg", - "type": "sprite", - "tags": [ - "fantasy", - "space", - "drawing", - "vector" - ], - "info": [ - 0, - 4, - 1 - ], - "json": { - "objName": "Tera", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "tera-a", - "baseLayerID": -1, - "baseLayerMD5": "88ba313f6b2f5d1188e1b530f13f9619.svg", - "rotationCenterX": 49, - "rotationCenterY": 63 - }, - { - "costumeName": "tera-b", - "baseLayerID": -1, - "baseLayerMD5": "a55fb03bc32381fd8c33f428cf4c9485.svg", - "rotationCenterX": 49, - "rotationCenterY": 64 - }, - { - "costumeName": "tera-c", - "baseLayerID": -1, - "baseLayerMD5": "98d750d45640daa7be7c9b563df585c8.svg", - "rotationCenterX": 49, - "rotationCenterY": 63 - }, - { - "costumeName": "tera-d", - "baseLayerID": -1, - "baseLayerMD5": "12e4da814051d616aeaf4482bb85775e.svg", - "rotationCenterX": 49, - "rotationCenterY": 63 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Text", - "md5": "0a54c19714962c197532f68c56fde123.svg", - "type": "sprite", - "tags": [ - "letters", - "things", - "vector" - ], - "info": [ - 0, - 4, - 0 - ], - "json": { - "objName": "Text", - "costumes": [ - { - "costumeName": "text awesome", - "baseLayerID": -1, - "baseLayerMD5": "0a54c19714962c197532f68c56fde123.svg", - "bitmapResolution": 1, - "rotationCenterX": 109, - "rotationCenterY": 32 - }, - { - "costumeName": "text keep scratching", - "baseLayerID": -1, - "baseLayerMD5": "97c9e6ef78d4f1987fd8c6e5042963cb.svg", - "bitmapResolution": 1, - "rotationCenterX": 135, - "rotationCenterY": 24 - }, - { - "costumeName": "text valentine's day", - "baseLayerID": -1, - "baseLayerMD5": "9fde2e190a9d01c08737dff291bdd4a8.svg", - "bitmapResolution": 1, - "rotationCenterX": 172, - "rotationCenterY": 30 - }, - { - "costumeName": "text Halloween", - "baseLayerID": -1, - "baseLayerMD5": "0176a402a133f7b833da61b890e0d73e.svg", - "bitmapResolution": 1, - "rotationCenterX": 165, - "rotationCenterY": 34 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {}, - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ] - } - }, - { - "name": "Trampoline", - "md5": "20b16bcb61396df304cad5e8886ceb46.png", - "type": "sprite", - "tags": [ - "things", - "photo", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Trampoline", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "trampoline", - "baseLayerID": -1, - "baseLayerMD5": "20b16bcb61396df304cad5e8886ceb46.png", - "rotationCenterX": 100, - "rotationCenterY": 41 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Tree1", - "md5": "d6ef0fe56774ad16d42ad6f847342f88.svg", - "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Tree1", - "sounds": [ - { - "soundName": "tom drum", - "soundID": -1, - "md5": "5a8b8678d37a860dd6c08082d5cda3c2.wav", - "sampleCount": 35803, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "tree1", - "baseLayerID": -1, - "baseLayerMD5": "d6ef0fe56774ad16d42ad6f847342f88.svg", - "bitmapResolution": 1, - "rotationCenterX": 77, - "rotationCenterY": 126 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 0.95, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Tree2", - "md5": "3d5662e3e8f8cfa7e6fbf1add3aaf108.svg", - "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Tree2", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "tree2", - "baseLayerID": -1, - "baseLayerMD5": "3d5662e3e8f8cfa7e6fbf1add3aaf108.svg", - "bitmapResolution": 1, - "rotationCenterX": 82, - "rotationCenterY": 104 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 0.9, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Tree-lights", - "md5": "46ff0a392bcf76c27f7e1d6ffb148e61.svg", - "type": "sprite", - "tags": [ - "things", - "holiday", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Tree-lights", - "sounds": [ - { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "tree-lights-a", - "baseLayerID": -1, - "baseLayerMD5": "46ff0a392bcf76c27f7e1d6ffb148e61.svg", - "bitmapResolution": 1, - "rotationCenterX": 59, - "rotationCenterY": 77 - }, - { - "costumeName": "tree-lights-b", - "baseLayerID": -1, - "baseLayerMD5": "366c09c68d1ac15d61550ccd56a6faba.svg", - "bitmapResolution": 1, - "rotationCenterX": 58, - "rotationCenterY": 76 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1.3000000000000005, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Trees", - "md5": "e9a6e91d950d7f357b02c9fa3ff27693.svg", - "type": "sprite", - "tags": [ - "city", - "flying", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Trees", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "trees-a", - "baseLayerID": -1, - "baseLayerMD5": "e9a6e91d950d7f357b02c9fa3ff27693.svg", - "bitmapResolution": 1, - "rotationCenterX": 49, - "rotationCenterY": 94 - }, - { - "costumeName": "trees-b", - "baseLayerID": -1, - "baseLayerMD5": "0a3484645d3a2c1c618c2bd978f7977a.svg", - "bitmapResolution": 1, - "rotationCenterX": 36, - "rotationCenterY": 87 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Trombone", - "md5": "eb64decb33a8c672030ae0316ab1bf4f.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 8 - ], - "json": { - "objName": "Trombone", - "sounds": [ - { - "soundName": "C trombone", - "soundID": -1, - "md5": "821b23a489201a0f21f47ba8528ba47f.wav", - "sampleCount": 19053, - "rate": 22050, - "format": "" - }, - { - "soundName": "D trombone", - "soundID": -1, - "md5": "f3afca380ba74372d611d3f518c2f35b.wav", - "sampleCount": 17339, - "rate": 22050, - "format": "" - }, - { - "soundName": "E trombone", - "soundID": -1, - "md5": "c859fb0954acaa25c4b329df5fb76434.wav", - "sampleCount": 16699, - "rate": 22050, - "format": "" - }, - { - "soundName": "F trombone", - "soundID": -1, - "md5": "d6758470457aac2aa712717a676a5163.wav", - "sampleCount": 19373, - "rate": 22050, - "format": "" - }, - { - "soundName": "G trombone", - "soundID": -1, - "md5": "9436fd7a0eacb4a6067e7db14236dde1.wav", - "sampleCount": 17179, - "rate": 22050, - "format": "" - }, - { - "soundName": "A trombone", - "soundID": -1, - "md5": "863ccc8ba66e6dabbce2a1261c22be0f.wav", - "sampleCount": 17227, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "B trombone", - "soundID": -1, - "md5": "85b663229525b73d9f6647f78eb23e0a.wav", - "sampleCount": 15522, - "rate": 22050, - "format": "" - }, - { - "soundName": "C2 trombone", - "soundID": -1, - "md5": "68aec107bd3633b2ee40c532eedc3897.wav", - "sampleCount": 13904, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "trombone-a", - "baseLayerID": -1, - "baseLayerMD5": "eb64decb33a8c672030ae0316ab1bf4f.svg", - "bitmapResolution": 1, - "rotationCenterX": 73, - "rotationCenterY": 43 - }, - { - "costumeName": "trombone-b", - "baseLayerID": -1, - "baseLayerMD5": "a67ef40fc1e41ff6bcae79a19a8c4445.svg", - "bitmapResolution": 1, - "rotationCenterX": 73, - "rotationCenterY": 43 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Trumpet", - "md5": "693c53097cb2bdb61a908da013fb32ef.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 8 - ], - "json": { - "objName": "Trumpet", - "sounds": [ - { - "soundName": "C trumpet", - "soundID": -1, - "md5": "8970afcdc4e47bb54959a81fe27522bd.wav", - "sampleCount": 13118, - "rate": 22050, - "format": "" - }, - { - "soundName": "D trumpet", - "soundID": -1, - "md5": "0b1345b8fe2ba3076fedb4f3ae48748a.wav", - "sampleCount": 12702, - "rate": 22050, - "format": "" - }, - { - "soundName": "E trumpet", - "soundID": -1, - "md5": "494295a92314cadb220945a6711c568c.wav", - "sampleCount": 8680, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "F trumpet", - "soundID": -1, - "md5": "5fa3108b119ca266029b4caa340a7cd0.wav", - "sampleCount": 12766, - "rate": 22050, - "format": "" - }, - { - "soundName": "G trumpet", - "soundID": -1, - "md5": "e84afda25975f14b364118591538ccf4.wav", - "sampleCount": 14640, - "rate": 22050, - "format": "" - }, - { - "soundName": "A trumpet", - "soundID": -1, - "md5": "d2dd6b4372ca17411965dc92d52b2172.wav", - "sampleCount": 13911, - "rate": 22050, - "format": "" - }, - { - "soundName": "B trumpet", - "soundID": -1, - "md5": "cad2bc57729942ed9b605145fc9ea65d.wav", - "sampleCount": 14704, - "rate": 22050, - "format": "" - }, - { - "soundName": "C2 trumpet", - "soundID": -1, - "md5": "df08249ed5446cc5e10b7ac62faac89b.wav", - "sampleCount": 15849, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "trumpet-a", - "baseLayerID": -1, - "baseLayerMD5": "693c53097cb2bdb61a908da013fb32ef.svg", - "bitmapResolution": 1, - "rotationCenterX": 84, - "rotationCenterY": 25 - }, - { - "costumeName": "trumpet-a2", - "baseLayerID": -1, - "baseLayerMD5": "efbfcaf69d90880e3b3851045c59f984.svg", - "bitmapResolution": 1, - "rotationCenterX": 84, - "rotationCenterY": 25 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Ukulele", - "md5": "f4a535024ab2a2603a76b93c999ef4ae.svg", - "type": "sprite", - "tags": [ - "things", - "music", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 4 - ], - "json": { - "objName": "Ukulele", - "variables": [ - { - "name": "counter", - "value": 5, - "isPersistent": false - } - ], - "sounds": [ - { - "soundName": "C major ukulele", - "soundID": -1, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "F major ukulele", - "soundID": -1, - "md5": "cd0ab5d1b0120c6ed92a1654ccf81376.wav", - "sampleCount": 18235, - "rate": 22050, - "format": "" - }, - { - "soundName": "A minor ukulele", - "soundID": -1, - "md5": "69d25af0fd065da39c71439174efc589.wav", - "sampleCount": 18267, - "rate": 22050, - "format": "" - }, - { - "soundName": "G ukulele", - "soundID": -1, - "md5": "d20218f92ee606277658959005538e2d.wav", - "sampleCount": 18235, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "ukulele", - "baseLayerID": -1, - "baseLayerMD5": "f4a535024ab2a2603a76b93c999ef4ae.svg", - "bitmapResolution": 1, - "rotationCenterX": 30, - "rotationCenterY": 78 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Umbrella", - "md5": "2ae6d0c3a8cb500e63c11a95eee80fa7.png", - "type": "sprite", - "tags": [ - "things", - "photo", - "bitmap" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Umbrella", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "umbrella", - "baseLayerID": -1, - "baseLayerMD5": "2ae6d0c3a8cb500e63c11a95eee80fa7.png", - "rotationCenterX": 85, - "rotationCenterY": 62 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Unicorn", - "md5": "67f6d3da6c9640fdc67dcaac753626d6.svg", - "type": "sprite", - "tags": [ - "flying", - "fantasy", - "drawing", - "castle", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Unicorn", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "unicorn", - "baseLayerID": -1, - "baseLayerMD5": "67f6d3da6c9640fdc67dcaac753626d6.svg", - "rotationCenterX": 75, - "rotationCenterY": 75 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Vest", - "md5": "41a2c9d076659033198bfb02504691b8.svg", - "type": "sprite", - "tags": [ - "dress-up", - "things", - "drawing", - "vector" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Vest", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "vest-a", - "baseLayerID": -1, - "baseLayerMD5": "41a2c9d076659033198bfb02504691b8.svg", - "bitmapResolution": 1, - "rotationCenterX": 18, - "rotationCenterY": 62 - }, - { - "costumeName": "vest-b", - "baseLayerID": -1, - "baseLayerMD5": "a582b8a2c3e4aca3c5351caf2491be1f.svg", - "bitmapResolution": 1, - "rotationCenterX": 18, - "rotationCenterY": 62 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": true, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Wanda", - "md5": "17d7d2a69d49cd9bece9268c89a4716d.svg", - "type": "sprite", - "tags": [ - "people", - "city", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Wanda", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "wanda", - "baseLayerID": -1, - "baseLayerMD5": "17d7d2a69d49cd9bece9268c89a4716d.svg", - "bitmapResolution": 1, - "rotationCenterX": 49, - "rotationCenterY": 68 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Watermelon", - "md5": "e3b8c5fa4fa56b979af1ba9059af6d3a.svg", - "type": "sprite", - "tags": [ - "things", - "vector", - "drawing" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "Watermelon", - "sounds": [ - { - "soundName": "meow", - "soundID": -1, - "md5": "83c36d806dc92327b9e7049a565c6bff.wav", - "sampleCount": 18688, - "rate": 22050, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "watermelon-a", - "baseLayerID": -1, - "baseLayerMD5": "e3b8c5fa4fa56b979af1ba9059af6d3a.svg", - "bitmapResolution": 1, - "rotationCenterX": 40, - "rotationCenterY": 27 - }, - { - "costumeName": "watermelon-b", - "baseLayerID": -1, - "baseLayerMD5": "89ad628af409798a9dde7ed11840bdbe.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 27 - }, - { - "costumeName": "watermelon-c", - "baseLayerID": -1, - "baseLayerMD5": "aaa3384b125a0571d7cae91c8f992173.svg", - "bitmapResolution": 1, - "rotationCenterX": 21, - "rotationCenterY": 15 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Witch", - "md5": "69866edb1db502ab87379dbfb56b3740.svg", - "type": "sprite", - "tags": [ - "flying", - "people", - "fantasy", - "castle", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Witch", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "witch", - "baseLayerID": -1, - "baseLayerMD5": "69866edb1db502ab87379dbfb56b3740.svg", - "rotationCenterX": 74, - "rotationCenterY": 59 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Wizard", - "md5": "333f755ce8d28b0b79c51e7be745ac8e.svg", - "type": "sprite", - "tags": [ - "people", - "fantasy", - "castle", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Wizard", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "wizard", - "baseLayerID": -1, - "baseLayerMD5": "333f755ce8d28b0b79c51e7be745ac8e.svg", - "rotationCenterX": 76, - "rotationCenterY": 86 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Wizard1", - "md5": "e16ceb783e16d0625466986cdd6b91b4.svg", - "type": "sprite", - "tags": [ - "people", - "fantasy", - "castle", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Wizard1", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "wizard1", - "baseLayerID": -1, - "baseLayerMD5": "e16ceb783e16d0625466986cdd6b91b4.svg", - "bitmapResolution": 1, - "rotationCenterX": 134, - "rotationCenterY": 153 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Wizard2", - "md5": "ffe622e7679cd8bf5cc74dc45590b9f5.svg", - "type": "sprite", - "tags": [ - "people", - "fantasy", - "castle", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Wizard2", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "wizard2", - "baseLayerID": -1, - "baseLayerMD5": "ffe622e7679cd8bf5cc74dc45590b9f5.svg", - "bitmapResolution": 1, - "rotationCenterX": 69, - "rotationCenterY": 93 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Zara", - "md5": "ad7b145d46e933125bd9c928d784fcdc.png", - "type": "sprite", - "tags": [ - "people", - "city", - "drawing", - "bitmap" - ], - "info": [ - 0, - 2, - 1 - ], - "json": { - "objName": "Zara", - "sounds": [ - { - "soundName": "pop", - "soundID": -1, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - } - ], - "costumes": [ - { - "costumeName": "zara-a", - "baseLayerID": -1, - "baseLayerMD5": "ad7b145d46e933125bd9c928d784fcdc.png", - "bitmapResolution": 2, - "rotationCenterX": 50, - "rotationCenterY": 170 - }, - { - "costumeName": "zara-b", - "baseLayerID": -1, - "baseLayerMD5": "6fba793b512069a67096a82aa85a5c12.png", - "bitmapResolution": 2, - "rotationCenterX": 86, - "rotationCenterY": 168 - } - ], - "currentCostumeIndex": 1, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "A-block", - "md5": "4b8fecad5f8834b05d907ebcaa959477.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "A-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "a-block", - "baseLayerID": -1, - "baseLayerMD5": "4b8fecad5f8834b05d907ebcaa959477.svg", - "bitmapResolution": 1, - "rotationCenterX": 28, - "rotationCenterY": 38 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "B-block", - "md5": "63cff160693f4b250b1c47f3ac8d325b.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "B-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "b-block", - "baseLayerID": -1, - "baseLayerMD5": "63cff160693f4b250b1c47f3ac8d325b.svg", - "bitmapResolution": 1, - "rotationCenterX": 29, - "rotationCenterY": 42 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "C-block", - "md5": "47ee2e0ae55728ddc255b45918f575e6.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "C-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "c-block", - "baseLayerID": -1, - "baseLayerMD5": "47ee2e0ae55728ddc255b45918f575e6.svg", - "bitmapResolution": 1, - "rotationCenterX": 35, - "rotationCenterY": 43 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "D-block", - "md5": "060a20d70b98630a584913e1524e191b.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "D-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "d-block", - "baseLayerID": -1, - "baseLayerMD5": "060a20d70b98630a584913e1524e191b.svg", - "bitmapResolution": 1, - "rotationCenterX": 31, - "rotationCenterY": 41 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "E-block", - "md5": "44d0878224ddd43e14e025575d838a8f.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "E-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "e-block", - "baseLayerID": -1, - "baseLayerMD5": "44d0878224ddd43e14e025575d838a8f.svg", - "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 39 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "F-block", - "md5": "f7da50f5fede5755e6e7ca65b2780247.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "F-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "f-block", - "baseLayerID": -1, - "baseLayerMD5": "f7da50f5fede5755e6e7ca65b2780247.svg", - "bitmapResolution": 1, - "rotationCenterX": 23, - "rotationCenterY": 40 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "G-block", - "md5": "83c53681f69111882049537bdc0b594f.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "G-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "g-block", - "baseLayerID": -1, - "baseLayerMD5": "83c53681f69111882049537bdc0b594f.svg", - "bitmapResolution": 1, - "rotationCenterX": 28, - "rotationCenterY": 39 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "H-block", - "md5": "c71d7d5cd824eefce0d8bdba9e785ee9.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "H-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "h-block", - "baseLayerID": -1, - "baseLayerMD5": "c71d7d5cd824eefce0d8bdba9e785ee9.svg", - "bitmapResolution": 1, - "rotationCenterX": 27, - "rotationCenterY": 38 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "I-block", - "md5": "2dbffbe195853d8ffe5c35bd63dbcce4.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "I-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "i-block", - "baseLayerID": -1, - "baseLayerMD5": "2dbffbe195853d8ffe5c35bd63dbcce4.svg", - "bitmapResolution": 1, - "rotationCenterX": 19, - "rotationCenterY": 39 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "J-block", - "md5": "61f716676ace4bf5499d1d82228bcf9c.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "J-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "j-block", - "baseLayerID": -1, - "baseLayerMD5": "61f716676ace4bf5499d1d82228bcf9c.svg", - "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 41 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "K-block", - "md5": "c3e832f6e426c167adcc6e15bc50145f.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "K-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "k-block", - "baseLayerID": -1, - "baseLayerMD5": "c3e832f6e426c167adcc6e15bc50145f.svg", - "bitmapResolution": 1, - "rotationCenterX": 24, - "rotationCenterY": 40 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "L-block", - "md5": "a9d8baee9b77e267f2f92279944a3578.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "L-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "l-block", - "baseLayerID": -1, - "baseLayerMD5": "a9d8baee9b77e267f2f92279944a3578.svg", - "bitmapResolution": 1, - "rotationCenterX": 26, - "rotationCenterY": 40 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "M-block", - "md5": "d16a1d6aca3cc4356c9b1038e086f76b.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "M-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "m-block", - "baseLayerID": -1, - "baseLayerMD5": "d16a1d6aca3cc4356c9b1038e086f76b.svg", - "bitmapResolution": 1, - "rotationCenterX": 35, - "rotationCenterY": 37 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "N-block", - "md5": "4ad33b964744fa709a30797e1b09b234.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "N-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "n-block", - "baseLayerID": -1, - "baseLayerMD5": "4ad33b964744fa709a30797e1b09b234.svg", - "bitmapResolution": 1, - "rotationCenterX": 28, - "rotationCenterY": 37 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "O-block", - "md5": "60853a69301b03f54bf0901a41fd9288.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "O-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "o-block", - "baseLayerID": -1, - "baseLayerMD5": "60853a69301b03f54bf0901a41fd9288.svg", - "bitmapResolution": 1, - "rotationCenterX": 32, - "rotationCenterY": 40 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "P-block", - "md5": "498613b145b853564b1377995f1b05a3.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "P-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "p-block", - "baseLayerID": -1, - "baseLayerMD5": "498613b145b853564b1377995f1b05a3.svg", - "bitmapResolution": 1, - "rotationCenterX": 18, - "rotationCenterY": 33 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Q-block", - "md5": "1310ee089e917987a4962b33f509933a.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Q-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "q-block", - "baseLayerID": -1, - "baseLayerMD5": "1310ee089e917987a4962b33f509933a.svg", - "bitmapResolution": 1, - "rotationCenterX": 26, - "rotationCenterY": 33 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "R-block", - "md5": "54e7dd03538c0722f13c00428ed47d87.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "R-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "r-block", - "baseLayerID": -1, - "baseLayerMD5": "54e7dd03538c0722f13c00428ed47d87.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 33 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "S-block", - "md5": "19fb4aa2f9f0d95ef723cdcf5232cff4.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "S-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "s-block", - "baseLayerID": -1, - "baseLayerMD5": "19fb4aa2f9f0d95ef723cdcf5232cff4.svg", - "bitmapResolution": 1, - "rotationCenterX": 13, - "rotationCenterY": 30 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "T-block", - "md5": "62bdad7440437ded1b5a9869ee8a68be.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "T-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "t-block", - "baseLayerID": -1, - "baseLayerMD5": "62bdad7440437ded1b5a9869ee8a68be.svg", - "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 33 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "U-block", - "md5": "0d8135dbf322d3ad6ba54691e3488b2a.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "U-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "u-block", - "baseLayerID": -1, - "baseLayerMD5": "0d8135dbf322d3ad6ba54691e3488b2a.svg", - "bitmapResolution": 1, - "rotationCenterX": 28, - "rotationCenterY": 41 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "V-block", - "md5": "d8e66709beacb4558d5a6a14ffc92ad7.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "V-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "v-block", - "baseLayerID": -1, - "baseLayerMD5": "d8e66709beacb4558d5a6a14ffc92ad7.svg", - "bitmapResolution": 1, - "rotationCenterX": 35, - "rotationCenterY": 41 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "W-block", - "md5": "ec13d8fdfb97162f25f78b91edd4b49d.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "W-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "w-block", - "baseLayerID": -1, - "baseLayerMD5": "ec13d8fdfb97162f25f78b91edd4b49d.svg", - "bitmapResolution": 1, - "rotationCenterX": 47, - "rotationCenterY": 39 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "X-block", - "md5": "6ace784b15f886b714a9658af89bc016.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "X-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "x-block", - "baseLayerID": -1, - "baseLayerMD5": "6ace784b15f886b714a9658af89bc016.svg", - "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 32 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Y-block", - "md5": "d160d2c522b80196ea0cdaee2ca2705f.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Y-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "y-block", - "baseLayerID": -1, - "baseLayerMD5": "d160d2c522b80196ea0cdaee2ca2705f.svg", - "bitmapResolution": 1, - "rotationCenterX": 26, - "rotationCenterY": 33 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Z-block", - "md5": "d3ac60cf90b7af903fc24261ceaa82c0.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Z-block", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "z-block", - "baseLayerID": -1, - "baseLayerMD5": "d3ac60cf90b7af903fc24261ceaa82c0.svg", - "bitmapResolution": 1, - "rotationCenterX": 24, - "rotationCenterY": 38 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "A-Glow", - "md5": "7a3dc8a55849356e746b885bb249b34e.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "A-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "A-glow", - "baseLayerID": -1, - "baseLayerMD5": "7a3dc8a55849356e746b885bb249b34e.svg", - "bitmapResolution": 1, - "rotationCenterX": 36, - "rotationCenterY": 37 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "B-Glow", - "md5": "a6af3710bb0786176545e6204ea20f62.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "B-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "B-glow", - "baseLayerID": -1, - "baseLayerMD5": "a6af3710bb0786176545e6204ea20f62.svg", - "bitmapResolution": 1, - "rotationCenterX": 32, - "rotationCenterY": 35 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "C-Glow", - "md5": "5d5994f7fd5a294d6628191ee1a2290e.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "C-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "C-glow", - "baseLayerID": -1, - "baseLayerMD5": "5d5994f7fd5a294d6628191ee1a2290e.svg", - "bitmapResolution": 1, - "rotationCenterX": 27, - "rotationCenterY": 35 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "D-Glow", - "md5": "a0e58d65f56008004d727af065f52018.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "D-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "D-glow", - "baseLayerID": -1, - "baseLayerMD5": "a0e58d65f56008004d727af065f52018.svg", - "bitmapResolution": 1, - "rotationCenterX": 33, - "rotationCenterY": 35 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "E-Glow", - "md5": "6dcd628104feb6067c944cf3bb3cef15.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "E-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "E-glow", - "baseLayerID": -1, - "baseLayerMD5": "6dcd628104feb6067c944cf3bb3cef15.svg", - "bitmapResolution": 1, - "rotationCenterX": 34, - "rotationCenterY": 38 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "F-Glow", - "md5": "c910f48355293d79e2832f6ad27941c8.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "F-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "F-glow", - "baseLayerID": -1, - "baseLayerMD5": "c910f48355293d79e2832f6ad27941c8.svg", - "bitmapResolution": 1, - "rotationCenterX": 35, - "rotationCenterY": 41 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "G-Glow", - "md5": "5704fd4af8fcddb7127c246d3cd11e09.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "G-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "G-glow", - "baseLayerID": -1, - "baseLayerMD5": "5704fd4af8fcddb7127c246d3cd11e09.svg", - "bitmapResolution": 1, - "rotationCenterX": 32, - "rotationCenterY": 39 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "H-Glow", - "md5": "2a2fb1a7a7c932a4455e315d09bf1bc4.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "H-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "H-glow", - "baseLayerID": -1, - "baseLayerMD5": "2a2fb1a7a7c932a4455e315d09bf1bc4.svg", - "bitmapResolution": 1, - "rotationCenterX": 35, - "rotationCenterY": 46 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "I-Glow", - "md5": "d48035075078165bc52f7eac82a00efc.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "I-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "I-glow", - "baseLayerID": -1, - "baseLayerMD5": "d48035075078165bc52f7eac82a00efc.svg", - "bitmapResolution": 1, - "rotationCenterX": 21, - "rotationCenterY": 38 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "J-Glow", - "md5": "d382ed10afe31829b0b5e42a012343a9.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "J-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "J-glow", - "baseLayerID": -1, - "baseLayerMD5": "d382ed10afe31829b0b5e42a012343a9.svg", - "bitmapResolution": 1, - "rotationCenterX": 29, - "rotationCenterY": 39 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "K-Glow", - "md5": "bca611a8639f0726b4e1fcdfaf53934a.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "K-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "K-glow", - "baseLayerID": -1, - "baseLayerMD5": "bca611a8639f0726b4e1fcdfaf53934a.svg", - "bitmapResolution": 1, - "rotationCenterX": 38, - "rotationCenterY": 36 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "L-Glow", - "md5": "3fd306d0efd8f5f454aa7c363d52cdf3.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "L-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "L-glow", - "baseLayerID": -1, - "baseLayerMD5": "3fd306d0efd8f5f454aa7c363d52cdf3.svg", - "bitmapResolution": 1, - "rotationCenterX": 33, - "rotationCenterY": 35 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "M-Glow", - "md5": "ec4152e9bfd661ceedbd8b20e8d02a36.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "M-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "M-glow", - "baseLayerID": -1, - "baseLayerMD5": "ec4152e9bfd661ceedbd8b20e8d02a36.svg", - "bitmapResolution": 1, - "rotationCenterX": 42, - "rotationCenterY": 39 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "N-Glow", - "md5": "f70b7175e1bab4d266c03778cba936ea.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "N-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "N-glow", - "baseLayerID": -1, - "baseLayerMD5": "f70b7175e1bab4d266c03778cba936ea.svg", - "bitmapResolution": 1, - "rotationCenterX": 37, - "rotationCenterY": 39 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "O-Glow", - "md5": "0b0da4beb501e3fab43ea6cee4a270cc.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "O-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "O-glow", - "baseLayerID": -1, - "baseLayerMD5": "0b0da4beb501e3fab43ea6cee4a270cc.svg", - "bitmapResolution": 1, - "rotationCenterX": 29, - "rotationCenterY": 39 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "P-Glow", - "md5": "a9c1c00d5d5a14b9dc841a2f8ffce1b0.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "P-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "P-glow", - "baseLayerID": -1, - "baseLayerMD5": "a9c1c00d5d5a14b9dc841a2f8ffce1b0.svg", - "bitmapResolution": 1, - "rotationCenterX": 32, - "rotationCenterY": 39 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Q-Glow", - "md5": "a822d2a4d4df5b0eb42f1bcb8f5958a9.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Q-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "Q-glow", - "baseLayerID": -1, - "baseLayerMD5": "a822d2a4d4df5b0eb42f1bcb8f5958a9.svg", - "bitmapResolution": 1, - "rotationCenterX": 33, - "rotationCenterY": 43 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "R-Glow", - "md5": "566228a870f1170fd6d7087b1514e9a5.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "R-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "R-glow", - "baseLayerID": -1, - "baseLayerMD5": "566228a870f1170fd6d7087b1514e9a5.svg", - "bitmapResolution": 1, - "rotationCenterX": 35, - "rotationCenterY": 38 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "S-Glow", - "md5": "c3a18d91633f5c3feb6ab946d2912301.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "S-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "S-glow", - "baseLayerID": -1, - "baseLayerMD5": "c3a18d91633f5c3feb6ab946d2912301.svg", - "bitmapResolution": 1, - "rotationCenterX": 27, - "rotationCenterY": 40 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "T-Glow", - "md5": "7d9900de7d8734f7ad446d64b7260cb0.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "T-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "T-glow", - "baseLayerID": -1, - "baseLayerMD5": "7d9900de7d8734f7ad446d64b7260cb0.svg", - "bitmapResolution": 1, - "rotationCenterX": 35, - "rotationCenterY": 38 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "U-Glow", - "md5": "e573398e25936dd6034fcd4aabf5f5bf.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "U-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "U-glow", - "baseLayerID": -1, - "baseLayerMD5": "e573398e25936dd6034fcd4aabf5f5bf.svg", - "bitmapResolution": 1, - "rotationCenterX": 37, - "rotationCenterY": 37 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "V-Glow", - "md5": "a1c5ee4278b7d35913e13fbbab1b7f44.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "V-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "V-glow", - "baseLayerID": -1, - "baseLayerMD5": "a1c5ee4278b7d35913e13fbbab1b7f44.svg", - "bitmapResolution": 1, - "rotationCenterX": 35, - "rotationCenterY": 42 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "W-Glow", - "md5": "40f84faa7023e5f0f58b21635f417e99.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "W-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "W-glow", - "baseLayerID": -1, - "baseLayerMD5": "40f84faa7023e5f0f58b21635f417e99.svg", - "bitmapResolution": 1, - "rotationCenterX": 45, - "rotationCenterY": 41 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "X-Glow", - "md5": "17abb949ecec5ce6f9610811fe8a58da.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "X-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "X-glow", - "baseLayerID": -1, - "baseLayerMD5": "17abb949ecec5ce6f9610811fe8a58da.svg", - "bitmapResolution": 1, - "rotationCenterX": 40, - "rotationCenterY": 39 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Y-Glow", - "md5": "b6eaadb74af94b0b437b03c62b2a2817.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Y-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "Y-glow", - "baseLayerID": -1, - "baseLayerMD5": "b6eaadb74af94b0b437b03c62b2a2817.svg", - "bitmapResolution": 1, - "rotationCenterX": 38, - "rotationCenterY": 41 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Z-Glow", - "md5": "f1d4626aa487198dc6d6ac340932675f.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Z-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "Z-glow", - "baseLayerID": -1, - "baseLayerMD5": "f1d4626aa487198dc6d6ac340932675f.svg", - "bitmapResolution": 1, - "rotationCenterX": 30, - "rotationCenterY": 39 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "0-Glow", - "md5": "0b0da4beb501e3fab43ea6cee4a270cc.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "0-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "0-glow", - "baseLayerID": -1, - "baseLayerMD5": "0b0da4beb501e3fab43ea6cee4a270cc.svg", - "bitmapResolution": 1, - "rotationCenterX": 29, - "rotationCenterY": 39 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "1-Glow", - "md5": "aee5a084200d93212f0eefd193a166f6.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "1-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "1-glow", - "baseLayerID": -1, - "baseLayerMD5": "aee5a084200d93212f0eefd193a166f6.svg", - "bitmapResolution": 1, - "rotationCenterX": 24, - "rotationCenterY": 39 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "2-Glow", - "md5": "12900b4ad9de597626a080b2d6e8b8da.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "2-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "2-glow", - "baseLayerID": -1, - "baseLayerMD5": "12900b4ad9de597626a080b2d6e8b8da.svg", - "bitmapResolution": 1, - "rotationCenterX": 28, - "rotationCenterY": 41 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "3-Glow", - "md5": "d5d1bc9f7cfad5039b4c74c408144494.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "3-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "3-glow", - "baseLayerID": -1, - "baseLayerMD5": "d5d1bc9f7cfad5039b4c74c408144494.svg", - "bitmapResolution": 1, - "rotationCenterX": 33, - "rotationCenterY": 42 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "4-Glow", - "md5": "ca1c3562241b10ab93ba3e6ac0683ef1.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "4-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "4-glow", - "baseLayerID": -1, - "baseLayerMD5": "ca1c3562241b10ab93ba3e6ac0683ef1.svg", - "bitmapResolution": 1, - "rotationCenterX": 31, - "rotationCenterY": 38 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "5-Glow", - "md5": "727e6d82d8f0733a65b0cf5d144766ae.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "5-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "5-glow", - "baseLayerID": -1, - "baseLayerMD5": "727e6d82d8f0733a65b0cf5d144766ae.svg", - "bitmapResolution": 1, - "rotationCenterX": 30, - "rotationCenterY": 38 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "6-Glow", - "md5": "349d96682f4a645a41873a0a1ba15e14.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "6-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "6-glow", - "baseLayerID": -1, - "baseLayerMD5": "349d96682f4a645a41873a0a1ba15e14.svg", - "bitmapResolution": 1, - "rotationCenterX": 30, - "rotationCenterY": 37 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "7-Glow", - "md5": "a026cb19da963632e5f61cf9ce07ed1a.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "7-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "7-glow", - "baseLayerID": -1, - "baseLayerMD5": "a026cb19da963632e5f61cf9ce07ed1a.svg", - "bitmapResolution": 1, - "rotationCenterX": 31, - "rotationCenterY": 42 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "8-Glow", - "md5": "cc5ac4831638d2fbc0c0450b998e8bf8.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "8-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "8-glow", - "baseLayerID": -1, - "baseLayerMD5": "cc5ac4831638d2fbc0c0450b998e8bf8.svg", - "bitmapResolution": 1, - "rotationCenterX": 31, - "rotationCenterY": 37 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "9-Glow", - "md5": "452d69af56bd5016639abb76acab98d2.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "9-Glow", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "9-glow", - "baseLayerID": -1, - "baseLayerMD5": "452d69af56bd5016639abb76acab98d2.svg", - "bitmapResolution": 1, - "rotationCenterX": 28, - "rotationCenterY": 36 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "A-Pixel", - "md5": "667b5717b4a9de1a6248eaa4bd4b1949.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "A-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "A-pixel", - "baseLayerID": -1, - "baseLayerMD5": "667b5717b4a9de1a6248eaa4bd4b1949.svg", - "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 19 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "B-Pixel", - "md5": "2c95b15da27831c733e97fdb31658434.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "B-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "B-pixel", - "baseLayerID": -1, - "baseLayerMD5": "2c95b15da27831c733e97fdb31658434.svg", - "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 18 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "C-Pixel", - "md5": "18b570f7e9cb0a87e136c7a5193fc770.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "C-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "C-pixel", - "baseLayerID": -1, - "baseLayerMD5": "18b570f7e9cb0a87e136c7a5193fc770.svg", - "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 20 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "D-Pixel", - "md5": "c93563ebf5bb16df69a5d0490e3c80c3.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "D-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "D-pixel", - "baseLayerID": -1, - "baseLayerMD5": "c93563ebf5bb16df69a5d0490e3c80c3.svg", - "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 20 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "E-Pixel", - "md5": "95bbd429662480c4e2456ac4d0122b25.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "E-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "E-pixel", - "baseLayerID": -1, - "baseLayerMD5": "95bbd429662480c4e2456ac4d0122b25.svg", - "bitmapResolution": 1, - "rotationCenterX": 11, - "rotationCenterY": 19 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "F-Pixel", - "md5": "97290f54b27a31b561814368badde51d.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "F-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "F-pixel", - "baseLayerID": -1, - "baseLayerMD5": "97290f54b27a31b561814368badde51d.svg", - "bitmapResolution": 1, - "rotationCenterX": 10, - "rotationCenterY": 20 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "G-Pixel", - "md5": "58345c5b2923e97f4de5a904e7ab381a.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "G-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "G-pixel", - "baseLayerID": -1, - "baseLayerMD5": "58345c5b2923e97f4de5a904e7ab381a.svg", - "bitmapResolution": 1, - "rotationCenterX": 15, - "rotationCenterY": 22 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "H-Pixel", - "md5": "2cfb7325c1f58d7cd2fa2ba6c92f58c1.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "H-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "H-pixel", - "baseLayerID": -1, - "baseLayerMD5": "2cfb7325c1f58d7cd2fa2ba6c92f58c1.svg", - "bitmapResolution": 1, - "rotationCenterX": 15, - "rotationCenterY": 20 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "I-Pixel", - "md5": "d35227e8efbe490d59d2f1096cd60ae5.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "I-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "I-pixel", - "baseLayerID": -1, - "baseLayerMD5": "d35227e8efbe490d59d2f1096cd60ae5.svg", - "bitmapResolution": 1, - "rotationCenterX": 9, - "rotationCenterY": 21 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "J-Pixel", - "md5": "6b79bdfe2389b9017b2dbb9a2bb937e5.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "J-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "J-pixel", - "baseLayerID": -1, - "baseLayerMD5": "6b79bdfe2389b9017b2dbb9a2bb937e5.svg", - "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 20 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "K-Pixel", - "md5": "9bf066972c980159d11923db1a3004af.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "K-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "K-pixel", - "baseLayerID": -1, - "baseLayerMD5": "9bf066972c980159d11923db1a3004af.svg", - "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 20 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "L-Pixel", - "md5": "9da27310d68a15b0252cc1b35882acd3.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "L-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "L-pixel", - "baseLayerID": -1, - "baseLayerMD5": "9da27310d68a15b0252cc1b35882acd3.svg", - "bitmapResolution": 1, - "rotationCenterX": 11, - "rotationCenterY": 18 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "M-Pixel", - "md5": "d427cfd826c9b9c98f9214d84ccfca67.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "M-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "M-pixel", - "baseLayerID": -1, - "baseLayerMD5": "d427cfd826c9b9c98f9214d84ccfca67.svg", - "bitmapResolution": 1, - "rotationCenterX": 19, - "rotationCenterY": 16 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "N-Pixel", - "md5": "73a7e690cf4eb20cffbcf9877b6dafdf.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "N-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "N-pixel", - "baseLayerID": -1, - "baseLayerMD5": "73a7e690cf4eb20cffbcf9877b6dafdf.svg", - "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 19 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "O-Pixel", - "md5": "1517481350a93fdce1e9d929d617a023.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "O-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "O-pixel", - "baseLayerID": -1, - "baseLayerMD5": "1517481350a93fdce1e9d929d617a023.svg", - "bitmapResolution": 1, - "rotationCenterX": 13, - "rotationCenterY": 19 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "P-Pixel", - "md5": "4db5eeaea6d09b74565f48c58709a419.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "P-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "P-pixel", - "baseLayerID": -1, - "baseLayerMD5": "4db5eeaea6d09b74565f48c58709a419.svg", - "bitmapResolution": 1, - "rotationCenterX": 13, - "rotationCenterY": 19 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Q-Pixel", - "md5": "738fc021ac9ad449511d0308c985a102.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Q-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "Q-pixel", - "baseLayerID": -1, - "baseLayerMD5": "738fc021ac9ad449511d0308c985a102.svg", - "bitmapResolution": 1, - "rotationCenterX": 13, - "rotationCenterY": 21 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "R-Pixel", - "md5": "4bb86b33b3f6f298d621e202d116b198.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "R-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "R-pixel", - "baseLayerID": -1, - "baseLayerMD5": "4bb86b33b3f6f298d621e202d116b198.svg", - "bitmapResolution": 1, - "rotationCenterX": 13, - "rotationCenterY": 19 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "S-Pixel", - "md5": "d3736ecfe63a9fe20cce716e694f1b70.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "S-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "S-pixel", - "baseLayerID": -1, - "baseLayerMD5": "d3736ecfe63a9fe20cce716e694f1b70.svg", - "bitmapResolution": 1, - "rotationCenterX": 13, - "rotationCenterY": 20 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "T-Pixel", - "md5": "f993ca6271bf4ae40d869c79206405f2.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "T-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "T-pixel", - "baseLayerID": -1, - "baseLayerMD5": "f993ca6271bf4ae40d869c79206405f2.svg", - "bitmapResolution": 1, - "rotationCenterX": 13, - "rotationCenterY": 20 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "U-Pixel", - "md5": "c10beb1692efee87de0fc6a3038c5da2.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "U-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "U-pixel", - "baseLayerID": -1, - "baseLayerMD5": "c10beb1692efee87de0fc6a3038c5da2.svg", - "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 19 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "V-Pixel", - "md5": "51aafc3a7190eb5dab251522fb2e921b.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "V-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "V-pixel", - "baseLayerID": -1, - "baseLayerMD5": "51aafc3a7190eb5dab251522fb2e921b.svg", - "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 20 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "W-Pixel", - "md5": "fe07762ad2226678450a6bed4b1e6e8a.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "W-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "W-pixel", - "baseLayerID": -1, - "baseLayerMD5": "fe07762ad2226678450a6bed4b1e6e8a.svg", - "bitmapResolution": 1, - "rotationCenterX": 13, - "rotationCenterY": 19 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "X-Pixel", - "md5": "85608e187d743464f3c035714c32dbab.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "X-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "X-pixel", - "baseLayerID": -1, - "baseLayerMD5": "85608e187d743464f3c035714c32dbab.svg", - "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 19 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Y-Pixel", - "md5": "cc54d7dd5ecd42fcb496ab417219315f.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Y-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "Y-pixel", - "baseLayerID": -1, - "baseLayerMD5": "cc54d7dd5ecd42fcb496ab417219315f.svg", - "bitmapResolution": 1, - "rotationCenterX": 13, - "rotationCenterY": 18 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Z-Pixel", - "md5": "2d31d217aeccedf857211e2ba419c285.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "Z-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "Z-pixel", - "baseLayerID": -1, - "baseLayerMD5": "2d31d217aeccedf857211e2ba419c285.svg", - "bitmapResolution": 1, - "rotationCenterX": 12, - "rotationCenterY": 18 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "0-Pixel", - "md5": "e51b2e33dbadc9e197b56ce44f0571fa.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "0-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "0-pixel", - "baseLayerID": -1, - "baseLayerMD5": "e51b2e33dbadc9e197b56ce44f0571fa.svg", - "bitmapResolution": 1, - "rotationCenterX": 13, - "rotationCenterY": 18 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "1-Pixel", - "md5": "f66ede98fbe607a56eb5e806ecdfd7b4.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "1-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "1-pixel", - "baseLayerID": -1, - "baseLayerMD5": "f66ede98fbe607a56eb5e806ecdfd7b4.svg", - "bitmapResolution": 1, - "rotationCenterX": 7, - "rotationCenterY": 20 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "2-Pixel", - "md5": "f7cb01670b7c78ea2d767b2998966196.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "2-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "2-pixel", - "baseLayerID": -1, - "baseLayerMD5": "f7cb01670b7c78ea2d767b2998966196.svg", - "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 17 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "3-Pixel", - "md5": "ceb406c912506964c0869133907821c9.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "3-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "3-pixel", - "baseLayerID": -1, - "baseLayerMD5": "ceb406c912506964c0869133907821c9.svg", - "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 18 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "4-Pixel", - "md5": "890a1dfe581e17c58cf132c7671d9fcd.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "4-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "4-pixel", - "baseLayerID": -1, - "baseLayerMD5": "890a1dfe581e17c58cf132c7671d9fcd.svg", - "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 19 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "5-Pixel", - "md5": "270359dbb0ecbe96acd5c6f7e3193be0.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "5-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "5-pixel", - "baseLayerID": -1, - "baseLayerMD5": "270359dbb0ecbe96acd5c6f7e3193be0.svg", - "bitmapResolution": 1, - "rotationCenterX": 12, - "rotationCenterY": 19 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "6-Pixel", - "md5": "dffffc84cd2d793f420c53ca6cee4953.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "6-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "6-pixel", - "baseLayerID": -1, - "baseLayerMD5": "dffffc84cd2d793f420c53ca6cee4953.svg", - "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 17 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "7-Pixel", - "md5": "e0f5bfc0912956222f55111499929813.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "7-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "7-pixel", - "baseLayerID": -1, - "baseLayerMD5": "e0f5bfc0912956222f55111499929813.svg", - "bitmapResolution": 1, - "rotationCenterX": 12, - "rotationCenterY": 19 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "8-Pixel", - "md5": "0ca4dbbdbf106431bd3a197658b7cb73.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "8-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "8-pixel", - "baseLayerID": -1, - "baseLayerMD5": "0ca4dbbdbf106431bd3a197658b7cb73.svg", - "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 19 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "9-Pixel", - "md5": "36f96123f90060f739c26387222f9e71.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 1, - 1 - ], - "json": { - "objName": "9-Pixel", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "9-pixel", - "baseLayerID": -1, - "baseLayerMD5": "36f96123f90060f739c26387222f9e71.svg", - "bitmapResolution": 1, - "rotationCenterX": 12, - "rotationCenterY": 20 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "A-Story", - "md5": "8826e9dd4f9b58aeb6dc76b80fc3b495.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "A-Story", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "A-story-1", - "baseLayerID": -1, - "baseLayerMD5": "8826e9dd4f9b58aeb6dc76b80fc3b495.svg", - "bitmapResolution": 1, - "rotationCenterX": 23, - "rotationCenterY": 26 - }, - { - "costumeName": "A-story-2", - "baseLayerID": -1, - "baseLayerMD5": "3f1f35409aa88d11f1c375b82f9e5687.svg", - "bitmapResolution": 1, - "rotationCenterX": 23, - "rotationCenterY": 26 - }, - { - "costumeName": "A-story-3", - "baseLayerID": -1, - "baseLayerMD5": "93463f01063a8806d4f1532cadb6be8c.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 24 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "B-Story", - "md5": "e84699700509f315a06665abeb3a83ba.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "B-Story", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "B-story-1", - "baseLayerID": -1, - "baseLayerMD5": "e84699700509f315a06665abeb3a83ba.svg", - "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 25 - }, - { - "costumeName": "B-story-2", - "baseLayerID": -1, - "baseLayerMD5": "5e36ba5a07847ca6bffbbb8d8b53541c.svg", - "bitmapResolution": 1, - "rotationCenterX": 19, - "rotationCenterY": 25 - }, - { - "costumeName": "B-story-3", - "baseLayerID": -1, - "baseLayerMD5": "e0f13cef86074901b7535cacbf24eb9f.svg", - "bitmapResolution": 1, - "rotationCenterX": 18, - "rotationCenterY": 23 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "C-Story", - "md5": "0ec0efccef91876b8f1398305305d01d.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "C-Story", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "C-story-1", - "baseLayerID": -1, - "baseLayerMD5": "0ec0efccef91876b8f1398305305d01d.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 26 - }, - { - "costumeName": "C-story-2", - "baseLayerID": -1, - "baseLayerMD5": "daac25b9d88547ef9c802e5b2585ccf6.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 26 - }, - { - "costumeName": "C-story-3", - "baseLayerID": -1, - "baseLayerMD5": "7b687b2eb2702a44f8bb432f59aa7534.svg", - "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 24 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "D-Story", - "md5": "aa7e421fd0346ef7cb1ae91227e9e3be.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "D-Story", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "D-story-1", - "baseLayerID": -1, - "baseLayerMD5": "aa7e421fd0346ef7cb1ae91227e9e3be.svg", - "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 26 - }, - { - "costumeName": "D-story-2", - "baseLayerID": -1, - "baseLayerMD5": "0894d63cefa2e7f0fcdac51860c05390.svg", - "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 26 - }, - { - "costumeName": "D-story-3", - "baseLayerID": -1, - "baseLayerMD5": "3c71cb248eb61a6c5950082e0fae2cee.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 23 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "E-Story", - "md5": "e8847976dbdf46fcea65c930da180101.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "E-Story", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "E-story-1", - "baseLayerID": -1, - "baseLayerMD5": "e8847976dbdf46fcea65c930da180101.svg", - "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 25 - }, - { - "costumeName": "E-story-2", - "baseLayerID": -1, - "baseLayerMD5": "b7bb8f1548e7c262ce5f8b2be169f55a.svg", - "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 25 - }, - { - "costumeName": "E-story-3", - "baseLayerID": -1, - "baseLayerMD5": "1c9717e36a0175fc7a1e603c6a19fef3.svg", - "bitmapResolution": 1, - "rotationCenterX": 18, - "rotationCenterY": 23 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "F-Story", - "md5": "df3f642c7c23f0fbcd206d7dafbceea8.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "F-Story", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "F-story-1", - "baseLayerID": -1, - "baseLayerMD5": "df3f642c7c23f0fbcd206d7dafbceea8.svg", - "bitmapResolution": 1, - "rotationCenterX": 18, - "rotationCenterY": 26 - }, - { - "costumeName": "F-story-2", - "baseLayerID": -1, - "baseLayerMD5": "9aa1fa46bcf69f15fb0c338bf2be98e5.svg", - "bitmapResolution": 1, - "rotationCenterX": 18, - "rotationCenterY": 25 - }, - { - "costumeName": "F-story-3", - "baseLayerID": -1, - "baseLayerMD5": "1b33ec2426c33ba99d595a53784feacf.svg", - "bitmapResolution": 1, - "rotationCenterX": 16, - "rotationCenterY": 23 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "G-Story", - "md5": "1c3f9e25a31787ca312162d47e4661e2.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "G-Story", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "G-story-1", - "baseLayerID": -1, - "baseLayerMD5": "1c3f9e25a31787ca312162d47e4661e2.svg", - "bitmapResolution": 1, - "rotationCenterX": 23, - "rotationCenterY": 25 - }, - { - "costumeName": "G-story-2", - "baseLayerID": -1, - "baseLayerMD5": "1916e13af140decf97981b801b6b8cc1.svg", - "bitmapResolution": 1, - "rotationCenterX": 23, - "rotationCenterY": 25 - }, - { - "costumeName": "G-story-3", - "baseLayerID": -1, - "baseLayerMD5": "c06fc0e4de567775c7101ca272f641c4.svg", - "bitmapResolution": 1, - "rotationCenterX": 21, - "rotationCenterY": 24 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "H-Story", - "md5": "842c96a82e2060f645d0547f7ad8ab2a.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "H-Story", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "H-story-1", - "baseLayerID": -1, - "baseLayerMD5": "842c96a82e2060f645d0547f7ad8ab2a.svg", - "bitmapResolution": 1, - "rotationCenterX": 24, - "rotationCenterY": 25 - }, - { - "costumeName": "H-story-2", - "baseLayerID": -1, - "baseLayerMD5": "57368fed2911d75446323573ba8d858d.svg", - "bitmapResolution": 1, - "rotationCenterX": 24, - "rotationCenterY": 25 - }, - { - "costumeName": "H-story-3", - "baseLayerID": -1, - "baseLayerMD5": "1f6e479d5c0d367dd81e41f6763b203c.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 24 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "I-Story", - "md5": "4e453e5a01bd381c2bac69887dc24efd.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "I-Story", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "I-story-1", - "baseLayerID": -1, - "baseLayerMD5": "4e453e5a01bd381c2bac69887dc24efd.svg", - "bitmapResolution": 1, - "rotationCenterX": 9, - "rotationCenterY": 26 - }, - { - "costumeName": "I-story-2", - "baseLayerID": -1, - "baseLayerMD5": "a2dc78f1bd0fb4872a43407d1369f434.svg", - "bitmapResolution": 1, - "rotationCenterX": 9, - "rotationCenterY": 26 - }, - { - "costumeName": "I-story-3", - "baseLayerID": -1, - "baseLayerMD5": "27167cbc636f8ccebc529ac800a7a7a8.svg", - "bitmapResolution": 1, - "rotationCenterX": 7, - "rotationCenterY": 23 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "J-Story", - "md5": "712d5df8318d257dac7f909951752084.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "J-Story", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "J-story-1", - "baseLayerID": -1, - "baseLayerMD5": "712d5df8318d257dac7f909951752084.svg", - "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 25 - }, - { - "costumeName": "J-story-2", - "baseLayerID": -1, - "baseLayerMD5": "72df6b70e8e557b4a9c86b7445a89ec4.svg", - "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 25 - }, - { - "costumeName": "J-story-3", - "baseLayerID": -1, - "baseLayerMD5": "bbf0fc5ef6f354b16d79103b9dd68f35.svg", - "bitmapResolution": 1, - "rotationCenterX": 12, - "rotationCenterY": 24 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "K-Story", - "md5": "abc6e557148efcb1ddb0a60653390e0e.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "K-Story", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "K-story-1", - "baseLayerID": -1, - "baseLayerMD5": "abc6e557148efcb1ddb0a60653390e0e.svg", - "bitmapResolution": 1, - "rotationCenterX": 24, - "rotationCenterY": 26 - }, - { - "costumeName": "K-story-2", - "baseLayerID": -1, - "baseLayerMD5": "5b856c7510fbd359b7934776e4efddbc.svg", - "bitmapResolution": 1, - "rotationCenterX": 24, - "rotationCenterY": 26 - }, - { - "costumeName": "K-story-3", - "baseLayerID": -1, - "baseLayerMD5": "7fd82a6d9ed3e1b321ce0747fe36c1ae.svg", - "bitmapResolution": 1, - "rotationCenterX": 21, - "rotationCenterY": 24 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "L-Story", - "md5": "52745be61c71bab3d3647ef3214795b2.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "L-Story", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "L-story-1", - "baseLayerID": -1, - "baseLayerMD5": "52745be61c71bab3d3647ef3214795b2.svg", - "bitmapResolution": 1, - "rotationCenterX": 19, - "rotationCenterY": 26 - }, - { - "costumeName": "L-story-2", - "baseLayerID": -1, - "baseLayerMD5": "7732b6881a08bdbb1dfe63bf1278b7c3.svg", - "bitmapResolution": 1, - "rotationCenterX": 19, - "rotationCenterY": 26 - }, - { - "costumeName": "L-story-3", - "baseLayerID": -1, - "baseLayerMD5": "e4ad81b0ccfbc3a29fe46ae84c9a7c89.svg", - "bitmapResolution": 1, - "rotationCenterX": 17, - "rotationCenterY": 23 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "M-Story", - "md5": "6e312aebbcf5bc94b3e13c18aac9e9f7.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "M-Story", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "M-story-1", - "baseLayerID": -1, - "baseLayerMD5": "6e312aebbcf5bc94b3e13c18aac9e9f7.svg", - "bitmapResolution": 1, - "rotationCenterX": 30, - "rotationCenterY": 25 - }, - { - "costumeName": "M-story-2", - "baseLayerID": -1, - "baseLayerMD5": "af4c6a5942fbbd38f1530c2706a56210.svg", - "bitmapResolution": 1, - "rotationCenterX": 30, - "rotationCenterY": 25 - }, - { - "costumeName": "M-story-3", - "baseLayerID": -1, - "baseLayerMD5": "b279eaecace3573ac3826bc2cb97120f.svg", - "bitmapResolution": 1, - "rotationCenterX": 27, - "rotationCenterY": 24 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "N-Story", - "md5": "84153ae21e10da16c51a13f490d4ef6c.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "N-Story", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "N-story-1", - "baseLayerID": -1, - "baseLayerMD5": "84153ae21e10da16c51a13f490d4ef6c.svg", - "bitmapResolution": 1, - "rotationCenterX": 26, - "rotationCenterY": 25 - }, - { - "costumeName": "N-story-2", - "baseLayerID": -1, - "baseLayerMD5": "a26d45dff3e3e5c89e7e82ceb66dfed0.svg", - "bitmapResolution": 1, - "rotationCenterX": 26, - "rotationCenterY": 25 - }, - { - "costumeName": "N-story-3", - "baseLayerID": -1, - "baseLayerMD5": "c7f659dfdc45379fcba53aa2ef88a35e.svg", - "bitmapResolution": 1, - "rotationCenterX": 24, - "rotationCenterY": 23 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "O-Story", - "md5": "521f37bf65705cba3f255ad58fa9b755.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "O-Story", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "O-story-1", - "baseLayerID": -1, - "baseLayerMD5": "521f37bf65705cba3f255ad58fa9b755.svg", - "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 25 - }, - { - "costumeName": "O-story-2", - "baseLayerID": -1, - "baseLayerMD5": "f04deb4d3cdd98f1b2befcd142b0bf5b.svg", - "bitmapResolution": 1, - "rotationCenterX": 24, - "rotationCenterY": 25 - }, - { - "costumeName": "O-story-3", - "baseLayerID": -1, - "baseLayerMD5": "fc85733bd985c0d47cfd16758ae2c8cb.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 24 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "P-Story", - "md5": "5e3173baff30359cdf1c35bdd1aca7ea.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "P-Story", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "P-story-1", - "baseLayerID": -1, - "baseLayerMD5": "5e3173baff30359cdf1c35bdd1aca7ea.svg", - "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 25 - }, - { - "costumeName": "P-story-2", - "baseLayerID": -1, - "baseLayerMD5": "e66c22776cc623eb20f81bca8aa165cf.svg", - "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 25 - }, - { - "costumeName": "P-story-3", - "baseLayerID": -1, - "baseLayerMD5": "2cfb9040a22a131bff10a8a13c9caec8.svg", - "bitmapResolution": 1, - "rotationCenterX": 17, - "rotationCenterY": 24 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "Q-Story", - "md5": "94dab9f940ce21802a3dfd98976a5333.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "Q-Story", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "Q-story-1", - "baseLayerID": -1, - "baseLayerMD5": "94dab9f940ce21802a3dfd98976a5333.svg", - "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 30 - }, - { - "costumeName": "Q-story-2", - "baseLayerID": -1, - "baseLayerMD5": "d616698f3c56a953bd4ef4a575fddb13.svg", - "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 30 - }, - { - "costumeName": "Q-story-3", - "baseLayerID": -1, - "baseLayerMD5": "a65bac27711b43bc99ea6107432e4025.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 29 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "R-Story", - "md5": "fe3558dac4b8f1756bb885590ce85027.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "R-Story", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "R-story-1", - "baseLayerID": -1, - "baseLayerMD5": "fe3558dac4b8f1756bb885590ce85027.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 26 - }, - { - "costumeName": "R-story-2", - "baseLayerID": -1, - "baseLayerMD5": "b356086096993d15edcb63b682a9d876.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 26 - }, - { - "costumeName": "R-story-3", - "baseLayerID": -1, - "baseLayerMD5": "14bf05edbcf5837310cac672138d503f.svg", - "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 23 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "S-Story", - "md5": "988129b309007ed9368ac147e60de561.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "S-Story", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "S-story-1", - "baseLayerID": -1, - "baseLayerMD5": "988129b309007ed9368ac147e60de561.svg", - "bitmapResolution": 1, - "rotationCenterX": 16, - "rotationCenterY": 25 - }, - { - "costumeName": "S-story-2", - "baseLayerID": -1, - "baseLayerMD5": "82d84f69282129ccedd470aa0b409d9b.svg", - "bitmapResolution": 1, - "rotationCenterX": 16, - "rotationCenterY": 25 - }, - { - "costumeName": "S-story-3", - "baseLayerID": -1, - "baseLayerMD5": "c1f13e9badadb81d980cd4d72d428f53.svg", - "bitmapResolution": 1, - "rotationCenterX": 14, - "rotationCenterY": 23 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1.05, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "T-Story", - "md5": "3897ceaed5a9d9ea6a90d333b110a956.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "T-Story", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" - } - ], - "costumes": [ - { - "costumeName": "T-story-1", - "baseLayerID": -1, - "baseLayerMD5": "3897ceaed5a9d9ea6a90d333b110a956.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 27 - }, - { - "costumeName": "T-story-2", - "baseLayerID": -1, - "baseLayerMD5": "3008cfde341052f09cb8dfa242bd491e.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 27 - }, - { - "costumeName": "T-story-3", - "baseLayerID": -1, - "baseLayerMD5": "26c31c3975cffb15c26e08d516e91419.svg", - "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 24 - } - ], - "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, - "scale": 1, - "direction": 90, - "rotationStyle": "normal", - "isDraggable": false, - "indexInLibrary": 100000, - "visible": true, - "spriteInfo": {} - } - }, - { - "name": "U-Story", - "md5": "3d61d684c22b08df4bfbc928e7ad2280.svg", - "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], - "info": [ - 0, - 3, - 1 - ], - "json": { - "objName": "U-Story", - "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, - { - "soundName": "pop", - "soundID": 3, - "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", - "sampleCount": 258, - "rate": 11025, - "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, + "scripts": [ + [ + 890, + 496, + [ + [ + "procDef", + "play major scale note %n for %n beats", + [ + "note", + "beats" + ], + [ + 1, + 1 + ], + false + ], + [ + "setVar:to:", + "scale degree", + [ + "%", + [ + "-", + [ + "getParam", + "note", + "r" + ], + 1 + ], + 7 + ] + ], + [ + "setVar:to:", + "octave", + [ + "computeFunction:of:", + "floor", + [ + "/", + [ + "-", + [ + "getParam", + "note", + "r" + ], + 1 + ], + 7 + ] + ] + ], + [ + "doIf", + [ + "=", + [ + "readVariable", + "scale degree" + ], + "0" + ], + [ + [ + "setVar:to:", + "note number", + 0 + ] + ] + ], + [ + "doIf", + [ + "=", + [ + "readVariable", + "scale degree" + ], + "1" + ], + [ + [ + "setVar:to:", + "note number", + "2" + ] + ] + ], + [ + "doIf", + [ + "=", + [ + "readVariable", + "scale degree" + ], + "2" + ], + [ + [ + "setVar:to:", + "note number", + "4" + ] + ] + ], + [ + "doIf", + [ + "=", + [ + "readVariable", + "scale degree" + ], + "3" + ], + [ + [ + "setVar:to:", + "note number", + "5" + ] + ] + ], + [ + "doIf", + [ + "=", + [ + "readVariable", + "scale degree" + ], + "4" + ], + [ + [ + "setVar:to:", + "note number", + "7" + ] + ] + ], + [ + "doIf", + [ + "=", + [ + "readVariable", + "scale degree" + ], + "5" + ], + [ + [ + "setVar:to:", + "note number", + "9" + ] + ] + ], + [ + "doIf", + [ + "=", + [ + "readVariable", + "scale degree" + ], + "6" + ], + [ + [ + "setVar:to:", + "note number", + "11" + ] + ] + ], + [ + "changeVar:by:", + "note number", + 60 + ], + [ + "changeVar:by:", + "note number", + [ + "*", + [ + "readVariable", + "octave" + ], + 12 + ] + ], + [ + "noteOn:duration:elapsed:from:", + [ + "readVariable", + "note number" + ], + [ + "getParam", + "beats", + "r" + ] + ] + ] + ] + ], + "sounds": [ { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, + "soundName": "drive around", + "soundID": -1, + "md5": "a3a85fb8564b0266f50a9c091087b7aa.wav", + "sampleCount": 44096, "rate": 22050, "format": "" }, { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, + "soundName": "scratchy beat", + "soundID": -1, + "md5": "289dc558e076971e74dd1a0bd55719b1.wav", + "sampleCount": 44096, "rate": 22050, "format": "" }, { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, + "soundName": "drum jam", + "soundID": -1, + "md5": "8b5486ccc806e97e83049d25b071f7e4.wav", + "sampleCount": 44288, "rate": 22050, "format": "" }, { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, + "soundName": "cymbal echo", + "soundID": -1, + "md5": "bb243badd1201b2607bf2513df10cd97.wav", + "sampleCount": 44326, "rate": 22050, "format": "" }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, + "soundName": "drum satellite", + "soundID": -1, + "md5": "079067d7909f791b29f8be1c00fc2131.wav", + "sampleCount": 44096, "rate": 22050, "format": "" }, { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, + "soundName": "kick back", + "soundID": -1, + "md5": "9cd340d9d568b1479f731e69e103b3ce.wav", + "sampleCount": 44748, "rate": 22050, - "format": "" + "format": "adpcm" }, { - "soundName": "funky loop", - "soundID": 13, + "soundName": "drum funky", + "soundID": -1, "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", "sampleCount": 44748, "rate": 22050, @@ -33952,880 +3283,372 @@ ], "costumes": [ { - "costumeName": "U-story-1", - "baseLayerID": -1, - "baseLayerMD5": "3d61d684c22b08df4bfbc928e7ad2280.svg", - "bitmapResolution": 1, - "rotationCenterX": 24, - "rotationCenterY": 26 - }, - { - "costumeName": "U-story-2", - "baseLayerID": -1, - "baseLayerMD5": "b114abe0ecac54389069136231d51332.svg", - "bitmapResolution": 1, - "rotationCenterX": 24, - "rotationCenterY": 26 - }, - { - "costumeName": "U-story-3", + "costumeName": "speaker", "baseLayerID": -1, - "baseLayerMD5": "d8fdcaedcfe954333fd1c9ea75483283.svg", + "baseLayerMD5": "44dc3a2ec161999545914d1f77332d76.svg", "bitmapResolution": 1, - "rotationCenterX": 21, - "rotationCenterY": 24 + "rotationCenterX": 53, + "rotationCenterY": 79 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -1, + "scratchY": -28, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 64, "visible": true, "spriteInfo": {} } }, { - "name": "V-Story", - "md5": "07b9a2e130074301adfc3ba6f373fb1f.svg", + "name": "Tera", + "md5": "b54a4a9087435863ab6f6c908f1cac99.svg", "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, - 3, + 4, 1 ], "json": { - "objName": "V-Story", + "objName": "Tera", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "V-story-1", + "costumeName": "tera-a", + "baseLayerID": -1, + "baseLayerMD5": "b54a4a9087435863ab6f6c908f1cac99.svg", + "bitmapResolution": 1, + "rotationCenterX": 49, + "rotationCenterY": 63 + }, + { + "costumeName": "tera-b", "baseLayerID": -1, - "baseLayerMD5": "07b9a2e130074301adfc3ba6f373fb1f.svg", + "baseLayerMD5": "1e6b3a29351cda80d1a70a3cc0e499f2.svg", "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 25 + "rotationCenterX": 49, + "rotationCenterY": 64 }, { - "costumeName": "V-story-2", + "costumeName": "tera-c", "baseLayerID": -1, - "baseLayerMD5": "4b30c64786d5fcbc10935a84cebb6a56.svg", + "baseLayerMD5": "7edf116cbb7111292361431521ae699e.svg", "bitmapResolution": 1, - "rotationCenterX": 25, - "rotationCenterY": 25 + "rotationCenterX": 49, + "rotationCenterY": 63 }, { - "costumeName": "V-story-3", + "costumeName": "tera-d", "baseLayerID": -1, - "baseLayerMD5": "dd784ba920901e6c396a05dc9014bba0.svg", + "baseLayerMD5": "7c3c9c8b5f4ac77de2036175712a777a.svg", "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 23 + "rotationCenterX": 49, + "rotationCenterY": 63 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": 54, + "scratchY": -17, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 65, "visible": true, "spriteInfo": {} } }, { - "name": "W-Story", - "md5": "76ec45816321c6d124a32aced2481e33.svg", + "name": "Unicorn", + "md5": "a04def38351e7fd805226345cac4fbfe.svg", "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "W-Story", + "objName": "Unicorn", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, + } + ], + "costumes": [ { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, + "costumeName": "unicorn", + "baseLayerID": -1, + "baseLayerMD5": "a04def38351e7fd805226345cac4fbfe.svg", + "bitmapResolution": 1, + "rotationCenterX": 75, + "rotationCenterY": 75 + } + ], + "currentCostumeIndex": 0, + "scratchX": -96, + "scratchY": -43, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 38, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Watermelon", + "md5": "26fecef75cf3b6e0d98bff5c06475036.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 3, + 1 + ], + "json": { + "objName": "Watermelon", + "sounds": [ { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, + "soundName": "meow", + "soundID": -1, + "md5": "83c36d806dc92327b9e7049a565c6bff.wav", + "sampleCount": 18688, "rate": 22050, "format": "" - }, + } + ], + "costumes": [ { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" + "costumeName": "watermelon-a", + "baseLayerID": -1, + "baseLayerMD5": "26fecef75cf3b6e0d98bff5c06475036.svg", + "bitmapResolution": 1, + "rotationCenterX": 40, + "rotationCenterY": 27 }, { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" + "costumeName": "watermelon-b", + "baseLayerID": -1, + "baseLayerMD5": "fbdaf4d1d349edd3ddf3a1c4528aa9ec.svg", + "bitmapResolution": 1, + "rotationCenterX": 22, + "rotationCenterY": 27 }, { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, + "costumeName": "watermelon-c", + "baseLayerID": -1, + "baseLayerMD5": "5976c10412306fc093c1d1930fa05119.svg", + "bitmapResolution": 1, + "rotationCenterX": 21, + "rotationCenterY": 15 + } + ], + "currentCostumeIndex": 0, + "scratchX": 73, + "scratchY": -47, + "scale": 1, + "direction": 90, + "rotationStyle": "normal", + "isDraggable": false, + "indexInLibrary": 66, + "visible": true, + "spriteInfo": {} + } + }, + { + "name": "Witch", + "md5": "c991196a708294535a1dbdce7189c23c.svg", + "type": "sprite", + "tags": [], + "info": [ + 0, + 1, + 1 + ], + "json": { + "objName": "Witch", + "sounds": [ { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, + "soundName": "pop", + "soundID": -1, + "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", + "sampleCount": 258, + "rate": 11025, "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "W-story-1", - "baseLayerID": -1, - "baseLayerMD5": "76ec45816321c6d124a32aced2481e33.svg", - "bitmapResolution": 1, - "rotationCenterX": 37, - "rotationCenterY": 25 - }, - { - "costumeName": "W-story-2", - "baseLayerID": -1, - "baseLayerMD5": "2099a4611b2fcc80709cd622236b79fc.svg", - "bitmapResolution": 1, - "rotationCenterX": 37, - "rotationCenterY": 25 - }, - { - "costumeName": "W-story-3", + "costumeName": "witch", "baseLayerID": -1, - "baseLayerMD5": "b32117931bebaca985dabf91895be077.svg", + "baseLayerMD5": "c991196a708294535a1dbdce7189c23c.svg", "bitmapResolution": 1, - "rotationCenterX": 34, - "rotationCenterY": 24 + "rotationCenterX": 74, + "rotationCenterY": 59 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -86, + "scratchY": -49, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 39, "visible": true, "spriteInfo": {} } }, { - "name": "X-Story", - "md5": "9017e2a9a164032679a5fe71b03654a0.svg", + "name": "Wizard", + "md5": "4df1dd733f6ee4a2d8842478ac2c4661.svg", "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "X-Story", + "objName": "Wizard", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "X-story-1", - "baseLayerID": -1, - "baseLayerMD5": "9017e2a9a164032679a5fe71b03654a0.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 26 - }, - { - "costumeName": "X-story-2", - "baseLayerID": -1, - "baseLayerMD5": "e7a1d2694a229b55c0001504e31f8a3a.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 26 - }, - { - "costumeName": "X-story-3", + "costumeName": "wizard", "baseLayerID": -1, - "baseLayerMD5": "775fd22b4a8a7dcfd45213e7f6000974.svg", + "baseLayerMD5": "4df1dd733f6ee4a2d8842478ac2c4661.svg", "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 24 + "rotationCenterX": 76, + "rotationCenterY": 86 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -78, + "scratchY": 7, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 40, "visible": true, "spriteInfo": {} } }, { - "name": "Y-Story", - "md5": "1d71ec5e7f2677b192066d0632bf8351.svg", + "name": "Wizard1", + "md5": "e085c97691d16f0cc8a595ce1137e26c.svg", "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "Y-Story", + "objName": "Wizard1", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "Y-story-1", - "baseLayerID": -1, - "baseLayerMD5": "1d71ec5e7f2677b192066d0632bf8351.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 27 - }, - { - "costumeName": "Y-story-2", - "baseLayerID": -1, - "baseLayerMD5": "b20fe0250f4665adbd795583f45e723e.svg", - "bitmapResolution": 1, - "rotationCenterX": 22, - "rotationCenterY": 27 - }, - { - "costumeName": "Y-story-3", + "costumeName": "wizard1", "baseLayerID": -1, - "baseLayerMD5": "10e37a53bb3dd38cb87f621e9b3d99d0.svg", + "baseLayerMD5": "e085c97691d16f0cc8a595ce1137e26c.svg", "bitmapResolution": 1, - "rotationCenterX": 20, - "rotationCenterY": 24 + "rotationCenterX": 134, + "rotationCenterY": 153 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": -7, + "scratchY": -23, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 41, "visible": true, "spriteInfo": {} } }, { - "name": "Z-Story", - "md5": "6323830edda4b70a18cdcdaffd01cf83.svg", + "name": "Wizard2", + "md5": "6db4d9e4229dc50a1b1c91c3c8311d40.svg", "type": "sprite", - "tags": [ - "letters", - "drawing", - "vector" - ], + "tags": [], "info": [ 0, - 3, + 1, 1 ], "json": { - "objName": "Z-Story", + "objName": "Wizard2", "sounds": [ - { - "soundName": "boing", - "soundID": 0, - "md5": "53a3c2e27d1fb5fdb14aaf0cb41e7889.wav", - "sampleCount": 6804, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "chomp", - "soundID": 1, - "md5": "0b1e3033140d094563248e61de4039e5.wav", - "sampleCount": 2912, - "rate": 11025, - "format": "" - }, - { - "soundName": "gong", - "soundID": 2, - "md5": "6af567714db37721a11c55d2a2648aec.wav", - "sampleCount": 46848, - "rate": 11025, - "format": "" - }, { "soundName": "pop", - "soundID": 3, + "soundID": -1, "md5": "83a9787d4cb6f3b7632b4ddfebf74367.wav", "sampleCount": 258, "rate": 11025, "format": "" - }, - { - "soundName": "space ripple", - "soundID": 4, - "md5": "ff8b8c3bf841a11fd5fe3afaa92be1b5.wav", - "sampleCount": 41149, - "rate": 11025, - "format": "" - }, - { - "soundName": "beeps", - "soundID": 5, - "md5": "3be0a558370fedba3a6b315e0ca15b33.wav", - "sampleCount": 9536, - "rate": 11025, - "format": "" - }, - { - "soundName": "woof", - "soundID": 6, - "md5": "cd8fa8390b0efdd281882533fbfcfcfb.wav", - "sampleCount": 3168, - "rate": 22050, - "format": "" - }, - { - "soundName": "squawk", - "soundID": 7, - "md5": "e140d7ff07de8fa35c3d1595bba835ac.wav", - "sampleCount": 8208, - "rate": 22050, - "format": "" - }, - { - "soundName": "cheer", - "soundID": 8, - "md5": "4b36eebf22be4667fc2f15b78c805b4c.wav", - "sampleCount": 62528, - "rate": 22050, - "format": "" - }, - { - "soundName": "wub", - "soundID": 9, - "md5": "e1f32c057411da4237181ce72ae15d23.wav", - "sampleCount": 7392, - "rate": 22050, - "format": "" - }, - { - "soundName": "hey", - "soundID": 10, - "md5": "ec7c272faa862c9f8f731792e686e3c9.wav", - "sampleCount": 5414, - "rate": 22050, - "format": "adpcm" - }, - { - "soundName": "C major ukulele", - "soundID": 11, - "md5": "aa2ca112507b59b5337f341aaa75fb08.wav", - "sampleCount": 18203, - "rate": 22050, - "format": "" - }, - { - "soundName": "dance loop", - "soundID": 12, - "md5": "e936679bac519b1df3ddea3f5db7594f.wav", - "sampleCount": 92800, - "rate": 22050, - "format": "" - }, - { - "soundName": "funky loop", - "soundID": 13, - "md5": "fb56022366d21b299cbc3fd5e16000c2.wav", - "sampleCount": 44748, - "rate": 22050, - "format": "adpcm" } ], "costumes": [ { - "costumeName": "Z-story-1", - "baseLayerID": -1, - "baseLayerMD5": "6323830edda4b70a18cdcdaffd01cf83.svg", - "bitmapResolution": 1, - "rotationCenterX": 19, - "rotationCenterY": 26 - }, - { - "costumeName": "Z-story-2", - "baseLayerID": -1, - "baseLayerMD5": "a5e1981accf0ec38490892836e2d5635.svg", - "bitmapResolution": 1, - "rotationCenterX": 19, - "rotationCenterY": 26 - }, - { - "costumeName": "Z-story-3", + "costumeName": "wizard2", "baseLayerID": -1, - "baseLayerMD5": "64016d8a9bd0ca9a635cf09914edadf9.svg", + "baseLayerMD5": "6db4d9e4229dc50a1b1c91c3c8311d40.svg", "bitmapResolution": 1, - "rotationCenterX": 17, - "rotationCenterY": 23 + "rotationCenterX": 69, + "rotationCenterY": 93 } ], "currentCostumeIndex": 0, - "scratchX": 0, - "scratchY": 0, + "scratchX": 82, + "scratchY": -8, "scale": 1, "direction": 90, "rotationStyle": "normal", "isDraggable": false, - "indexInLibrary": 100000, + "indexInLibrary": 42, "visible": true, "spriteInfo": {} } } -] +] \ No newline at end of file diff --git a/src/lib/make-toolbox-xml.js b/src/lib/make-toolbox-xml.js index b186ba8e45041d41bec540b603124b6b5977cd7e..637188ef79bc20053079dd62a973339122ae3821 100644 --- a/src/lib/make-toolbox-xml.js +++ b/src/lib/make-toolbox-xml.js @@ -2,8 +2,12 @@ const categorySeparator = '<sep gap="36"/>'; const blockSeparator = '<sep gap="36"/>'; // At default scale, about 28px -const motion = ` +const motion = function (isStage, targetId) { + return ` <category name="Motion" colour="#4C97FF" secondaryColour="#3373CC"> + ${isStage ? ` + <label text="Stage selected: no motion blocks"></label> + ` : ` <block type="motion_movesteps"> <value name="STEPS"> <shadow type="math_number"> @@ -120,15 +124,18 @@ const motion = ` ${blockSeparator} <block type="motion_setrotationstyle"/> ${blockSeparator} - <block id="xposition" type="motion_xposition"/> - <block id="yposition" type="motion_yposition"/> - <block id="direction" type="motion_direction"/> + <block id="${targetId}_xposition" type="motion_xposition"/> + <block id="${targetId}_yposition" type="motion_yposition"/> + <block id="${targetId}_direction" type="motion_direction"/>`} ${categorySeparator} </category> -`; + `; +}; -const looks = ` +const looks = function (isStage, targetId) { + return ` <category name="Looks" colour="#9966FF" secondaryColour="#774DCB"> + ${isStage ? '' : ` <block type="looks_sayforsecs"> <value name="MESSAGE"> <shadow type="text"> @@ -171,23 +178,32 @@ const looks = ` <block type="looks_show"/> <block type="looks_hide"/> ${blockSeparator} - <block type="looks_switchcostumeto"> - <value name="COSTUME"> - <shadow type="looks_costume"/> - </value> - </block> - <block type="looks_nextcostume"/> - <block type="looks_nextbackdrop"/> - <block type="looks_switchbackdropto"> - <value name="BACKDROP"> - <shadow type="looks_backdrops"/> - </value> - </block> - <block type="looks_switchbackdroptoandwait"> - <value name="BACKDROP"> - <shadow type="looks_backdrops"/> - </value> - </block> + `} + ${isStage ? ` + <block type="looks_switchbackdropto"> + <value name="BACKDROP"> + <shadow type="looks_backdrops"/> + </value> + </block> + <block type="looks_switchbackdroptoandwait"> + <value name="BACKDROP"> + <shadow type="looks_backdrops"/> + </value> + </block> + <block type="looks_nextbackdrop"/> + ` : ` + <block type="looks_switchcostumeto"> + <value name="COSTUME"> + <shadow type="looks_costume"/> + </value> + </block> + <block type="looks_nextcostume"/> + <block type="looks_switchbackdropto"> + <value name="BACKDROP"> + <shadow type="looks_backdrops"/> + </value> + </block> + `} ${blockSeparator} <block type="looks_changeeffectby"> <value name="CHANGE"> @@ -205,39 +221,47 @@ const looks = ` </block> <block type="looks_cleargraphiceffects"/> ${blockSeparator} - <block type="looks_changesizeby"> - <value name="CHANGE"> - <shadow type="math_number"> - <field name="NUM">10</field> - </shadow> - </value> - </block> - <block type="looks_setsizeto"> - <value name="SIZE"> - <shadow type="math_number"> - <field name="NUM">100</field> - </shadow> - </value> - </block> - ${blockSeparator} - <block type="looks_gotofront"/> - <block type="looks_gobacklayers"> - <value name="NUM"> - <shadow type="math_integer"> - <field name="NUM">1</field> - </shadow> - </value> - </block> - ${blockSeparator} - <block id="costumeorder" type="looks_costumeorder"/> - <block id="backdroporder" type="looks_backdroporder"/> - <block id="backdropname" type="looks_backdropname"/> - <block id="size" type="looks_size"/> + ${isStage ? '' : ` + <block type="looks_changesizeby"> + <value name="CHANGE"> + <shadow type="math_number"> + <field name="NUM">10</field> + </shadow> + </value> + </block> + <block type="looks_setsizeto"> + <value name="SIZE"> + <shadow type="math_number"> + <field name="NUM">100</field> + </shadow> + </value> + </block> + ${blockSeparator} + <block type="looks_gotofront"/> + <block type="looks_gobacklayers"> + <value name="NUM"> + <shadow type="math_integer"> + <field name="NUM">1</field> + </shadow> + </value> + </block> + ${blockSeparator} + `} + ${isStage ? ` + <block id="backdroporder" type="looks_backdroporder"/> + <block id="backdropname" type="looks_backdropname"/> + ` : ` + <block id="${targetId}_costumeorder" type="looks_costumeorder"/> + <block id="backdropname" type="looks_backdropname"/> + <block id="${targetId}_size" type="looks_size"/> + `} ${categorySeparator} </category> -`; + `; +}; -const sound = ` +const sound = function () { + return ` <category name="Sound" colour="#D65CD6" secondaryColour="#BD42BD"> <block type="sound_play"> <value name="SOUND_MENU"> @@ -251,42 +275,6 @@ const sound = ` </block> <block type="sound_stopallsounds"/> ${blockSeparator} - <block type="sound_playdrumforbeats"> - <value name="DRUM"> - <shadow type="sound_drums_menu"/> - </value> - <value name="BEATS"> - <shadow type="math_number"> - <field name="NUM">0.25</field> - </shadow> - </value> - </block> - <block type="sound_restforbeats"> - <value name="BEATS"> - <shadow type="math_number"> - <field name="NUM">0.25</field> - </shadow> - </value> - </block> - ${blockSeparator} - <block type="sound_playnoteforbeats"> - <value name="NOTE"> - <shadow type="math_number"> - <field name="NUM">60</field> - </shadow> - </value> - <value name="BEATS"> - <shadow type="math_number"> - <field name="NUM">0.5</field> - </shadow> - </value> - </block> - <block type="sound_setinstrumentto"> - <value name="INSTRUMENT"> - <shadow type="sound_instruments_menu"/> - </value> - </block> - ${blockSeparator} <block type="sound_changeeffectby"> <value name="VALUE"> <shadow type="math_number"> @@ -318,27 +306,13 @@ const sound = ` </value> </block> <block id="volume" type="sound_volume"/> - ${blockSeparator} - <block type="sound_changetempoby"> - <value name="TEMPO"> - <shadow type="math_number"> - <field name="NUM">20</field> - </shadow> - </value> - </block> - <block type="sound_settempotobpm"> - <value name="TEMPO"> - <shadow type="math_number"> - <field name="NUM">60</field> - </shadow> - </value> - </block> - <block id="tempo" type="sound_tempo"/> ${categorySeparator} </category> -`; + `; +}; -const events = ` +const events = function () { + return ` <category name="Events" colour="#FFD500" secondaryColour="#CC9900"> <block type="event_whenflagclicked"/> <block type="event_whenkeypressed"> @@ -358,20 +332,16 @@ const events = ` <block type="event_whenbroadcastreceived"> </block> <block type="event_broadcast"> - <value name="BROADCAST_OPTION"> - <shadow type="event_broadcast_menu"/> - </value> </block> <block type="event_broadcastandwait"> - <value name="BROADCAST_OPTION"> - <shadow type="event_broadcast_menu"/> - </value> </block> ${categorySeparator} </category> -`; + `; +}; -const control = ` +const control = function (isStage) { + return ` <category name="Control" colour="#FFAB19" secondaryColour="#CF8B17"> <block type="control_wait"> <value name="DURATION"> @@ -388,51 +358,72 @@ const control = ` </shadow> </value> </block> - <block type="control_forever"/> + <block id="forever" type="control_forever"/> ${blockSeparator} <block type="control_if"/> <block type="control_if_else"/> - <block type="control_wait_until"/> - <block type="control_repeat_until"/> + <block id="wait_until" type="control_wait_until"/> + <block id="repeat_until" type="control_repeat_until"/> ${blockSeparator} <block type="control_stop"/> ${blockSeparator} - <block type="control_start_as_clone"/> - <block type="control_create_clone_of"> - <value name="CLONE_OPTION"> - <shadow type="control_create_clone_of_menu"/> - </value> - </block> - <block type="control_delete_this_clone"/> + ${isStage ? ` + <block type="control_create_clone_of"> + <value name="CLONE_OPTION"> + <shadow type="control_create_clone_of_menu"/> + </value> + </block> + ` : ` + <block type="control_start_as_clone"/> + <block type="control_create_clone_of"> + <value name="CLONE_OPTION"> + <shadow type="control_create_clone_of_menu"/> + </value> + </block> + <block type="control_delete_this_clone"/> + `} ${categorySeparator} </category> -`; + `; +}; -const sensing = ` +const sensing = function (isStage) { + return ` <category name="Sensing" colour="#4CBFE6" secondaryColour="#2E8EB8"> - <block type="sensing_touchingobject"> - <value name="TOUCHINGOBJECTMENU"> - <shadow type="sensing_touchingobjectmenu"/> - </value> - </block> - <block type="sensing_touchingcolor"> - <value name="COLOR"> - <shadow type="colour_picker"/> - </value> - </block> - <block type="sensing_coloristouchingcolor"> - <value name="COLOR"> - <shadow type="colour_picker"/> - </value> - <value name="COLOR2"> - <shadow type="colour_picker"/> - </value> - </block> - <block type="sensing_distanceto"> - <value name="DISTANCETOMENU"> - <shadow type="sensing_distancetomenu"/> + ${isStage ? '' : ` + <block type="sensing_touchingobject"> + <value name="TOUCHINGOBJECTMENU"> + <shadow type="sensing_touchingobjectmenu"/> + </value> + </block> + <block type="sensing_touchingcolor"> + <value name="COLOR"> + <shadow type="colour_picker"/> + </value> + </block> + <block type="sensing_coloristouchingcolor"> + <value name="COLOR"> + <shadow type="colour_picker"/> + </value> + <value name="COLOR2"> + <shadow type="colour_picker"/> + </value> + </block> + <block type="sensing_distanceto"> + <value name="DISTANCETOMENU"> + <shadow type="sensing_distancetomenu"/> + </value> + </block> + ${blockSeparator} + `} + <block id="askandwait" type="sensing_askandwait"> + <value name="QUESTION"> + <shadow type="text"> + <field name="TEXT">What's your name?</field> + </shadow> </value> </block> + <block id="answer" type="sensing_answer"/> ${blockSeparator} <block type="sensing_keypressed"> <value name="KEY_OPTION"> @@ -465,9 +456,11 @@ const sensing = ` <block type="sensing_dayssince2000"/> ${categorySeparator} </category> -`; + `; +}; -const operators = ` +const operators = function () { + return ` <category name="Operators" colour="#40BF4A" secondaryColour="#389438"> <block type="operator_add"> <value name="NUM1"> @@ -645,33 +638,46 @@ const operators = ` </block> ${categorySeparator} </category> -`; + `; +}; -const data = ` +const data = function () { + return ` <category name="Data" colour="#FF8C1A" secondaryColour="#DB6E00" custom="VARIABLE"> </category> -`; + `; +}; + +const more = function () { + return ` + <category name="More" colour="#FF6680" secondaryColour="#FF4D6A" custom="PROCEDURE"> + </category> + `; +}; const xmlOpen = '<xml style="display: none">'; const xmlClose = '</xml>'; /** + * @param {!boolean} isStage - Whether the toolbox is for a stage-type target. + * @param {?string} targetId - The current editing target * @param {string?} categoriesXML - null for default toolbox, or an XML string with <category> elements. * @returns {string} - a ScratchBlocks-style XML document for the contents of the toolbox. */ -const makeToolboxXML = function (categoriesXML) { +const makeToolboxXML = function (isStage, targetId, categoriesXML) { const gap = [categorySeparator]; const everything = [ xmlOpen, - motion, gap, - looks, gap, - sound, gap, - events, gap, - control, gap, - sensing, gap, - operators, gap, - data + motion(isStage, targetId), gap, + looks(isStage, targetId), gap, + sound(isStage, targetId), gap, + events(isStage, targetId), gap, + control(isStage, targetId), gap, + sensing(isStage, targetId), gap, + operators(isStage, targetId), gap, + data(isStage, targetId), gap, + more(isStage, targetId) ]; if (categoriesXML) { diff --git a/src/lib/monitor-adapter.js b/src/lib/monitor-adapter.js index 69f362b5c9c9946391f9866204d7d787c89b77de..95244b17539ec83e78b01e8dd8439523010e042f 100644 --- a/src/lib/monitor-adapter.js +++ b/src/lib/monitor-adapter.js @@ -1,35 +1,33 @@ import OpcodeLabels from './opcode-labels.js'; -const PADDING = 5; -const MONITOR_HEIGHT = 23; - const isUndefined = a => typeof a === 'undefined'; /** * Convert monitors from VM format to what the GUI needs to render. * - Convert opcode to a label and a category - * - Add missing XY position data if needed - * @param {object} block - The monitor block * @param {string} block.id - The id of the monitor block - * @param {number} block.index - The index of the monitor + * @param {string} block.spriteName - Present only if the monitor applies only to the sprite + * with given target ID. The name of the target sprite when the monitor was created * @param {string} block.opcode - The opcode of the monitor * @param {object} block.params - Extra params to the monitor block * @param {string} block.value - The monitor value - * @param {number} x - The monitor x position - * @param {number} y - The monitor y position * @return {object} The adapted monitor with label and category */ -export default function ({id, index, opcode, params, value, x, y}) { +export default function ({id, spriteName, opcode, params, value}) { let {label, category, labelFn} = OpcodeLabels(opcode); // Use labelFn if provided for dynamic labelling (e.g. variables) if (!isUndefined(labelFn)) label = labelFn(params); - // Simple layout if x or y are undefined - // @todo scratch2 has a more complex layout behavior we may want to adopt - // @todo e.g. this does not work well when monitors have already been moved - if (isUndefined(x)) x = PADDING; - if (isUndefined(y)) y = PADDING + (index * (PADDING + MONITOR_HEIGHT)); + // Append sprite name for sprite-specific monitors + if (spriteName) { + label = `${spriteName}: ${label}`; + } - return {id, label, category, value, x, y}; + // If value is a number, round it to six decimal places + if (typeof value === 'number' || (typeof value === 'string' && String(parseFloat(value)) === value)) { + value = Number(Number(value).toFixed(6)); + } + + return {id, label, category, value}; } diff --git a/src/lib/opcode-labels.js b/src/lib/opcode-labels.js index d36842c682c1c5466d1cb9460983ae42278b5ea6..dc59717287f98964e25a91a36797a7507b3ab425 100644 --- a/src/lib/opcode-labels.js +++ b/src/lib/opcode-labels.js @@ -48,6 +48,10 @@ const opcodeMap = { }, // Sensing + sensing_answer: { + category: 'sensing', + label: 'answer' + }, sensing_loudness: { category: 'sensing', label: 'loudness' diff --git a/src/lib/storage.js b/src/lib/storage.js index 6d858e6c20e57f919cbaa6dfc3eb2080b9f915ce..64269e3ede293c6e65c2a36cffc7b89f480d1b39 100644 --- a/src/lib/storage.js +++ b/src/lib/storage.js @@ -25,6 +25,10 @@ class Storage extends ScratchStorage { [this.AssetType.ImageVector, this.AssetType.ImageBitmap, this.AssetType.Sound], asset => `${ASSET_SERVER}/internalapi/asset/${asset.assetId}.${asset.dataFormat}/get/` ); + this.addWebSource( + [this.AssetType.Sound], + asset => `static/extension-assets/scratch3_music/${asset.assetId}.${asset.dataFormat}` + ); defaultProjectAssets.forEach(asset => this.cache( this.AssetType[asset.assetType], this.DataFormat[asset.dataFormat], diff --git a/src/reducers/custom-procedures.js b/src/reducers/custom-procedures.js new file mode 100644 index 0000000000000000000000000000000000000000..2f4f63d983b0a610ce4395b0610db48e24ea21ab --- /dev/null +++ b/src/reducers/custom-procedures.js @@ -0,0 +1,65 @@ +const ACTIVATE_CUSTOM_PROCEDURES = 'scratch-gui/custom-procedures/ACTIVATE_CUSTOM_PROCEDURES'; +const DEACTIVATE_CUSTOM_PROCEDURES = 'scratch-gui/custom-procedures/DEACTIVATE_CUSTOM_PROCEDURES'; +const SET_CALLBACK = 'scratch-gui/custom-procedures/SET_CALLBACK'; + +const initialState = { + active: false, + mutator: null, + callback: null +}; + +const reducer = function (state, action) { + if (typeof state === 'undefined') state = initialState; + switch (action.type) { + case ACTIVATE_CUSTOM_PROCEDURES: + return Object.assign({}, state, { + active: true, + mutator: action.mutator, + callback: action.callback + }); + case DEACTIVATE_CUSTOM_PROCEDURES: + // Can be called without a mutator to deactivate without new procedure + // i.e. when clicking on the modal background + if (action.mutator) { + state.callback(action.mutator); + } + return Object.assign({}, state, { + active: false, + mutator: null, + callback: null + }); + case SET_CALLBACK: + return Object.assign({}, state, {callback: action.callback}); + default: + return state; + } +}; + +/** + * Action creator to open the custom procedures modal. + * @param {!Element} mutator The XML node of the mutator for the procedure. + * @param {!function(!Element)} callback The function to call when done editing procedure. + * Expect the callback to be a function that takes a new XML mutator node. + * @returns {object} An action object with type ACTIVATE_CUSTOM_PROCEDURES. + */ +const activateCustomProcedures = (mutator, callback) => ({ + type: ACTIVATE_CUSTOM_PROCEDURES, + mutator: mutator, + callback: callback +}); + +/** + * Action creator to close the custom procedures modal. + * @param {?Element} mutator The new mutator, or null if the callback should not be called. + * @returns {object} An action object with type ACTIVATE_CUSTOM_PROCEDURES. + */ +const deactivateCustomProcedures = mutator => ({ + type: DEACTIVATE_CUSTOM_PROCEDURES, + mutator: mutator +}); + +export { + reducer as default, + activateCustomProcedures, + deactivateCustomProcedures +}; diff --git a/src/reducers/gui.js b/src/reducers/gui.js index c9e5e41928931dca615abf8de677f693adc36dfa..97e24dfe8d8ef1a02ebe8791e1889193a76bef0c 100644 --- a/src/reducers/gui.js +++ b/src/reducers/gui.js @@ -1,8 +1,10 @@ import {combineReducers} from 'redux'; import colorPickerReducer from './color-picker'; +import customProceduresReducer from './custom-procedures'; import intlReducer from './intl'; import modalReducer from './modals'; import monitorReducer from './monitors'; +import monitorLayoutReducer from './monitor-layout'; import targetReducer from './targets'; import toolboxReducer from './toolbox'; import vmReducer from './vm'; @@ -10,9 +12,11 @@ import {ScratchPaintReducer} from 'scratch-paint'; export default combineReducers({ colorPicker: colorPickerReducer, + customProcedures: customProceduresReducer, intl: intlReducer, modals: modalReducer, monitors: monitorReducer, + monitorLayout: monitorLayoutReducer, targets: targetReducer, toolbox: toolboxReducer, vm: vmReducer, diff --git a/src/reducers/monitor-layout.js b/src/reducers/monitor-layout.js new file mode 100644 index 0000000000000000000000000000000000000000..55cb52ee52be04b42c30ba81f5b6c604eca282e2 --- /dev/null +++ b/src/reducers/monitor-layout.js @@ -0,0 +1,318 @@ +import log from '../lib/log'; + +const ADD_MONITOR_RECT = 'scratch-gui/monitors/ADD_MONITOR_RECT'; +const MOVE_MONITOR_RECT = 'scratch-gui/monitors/MOVE_MONITOR_RECT'; +const RESIZE_MONITOR_RECT = 'scratch-gui/monitors/RESIZE_MONITOR_RECT'; +const REMOVE_MONITOR_RECT = 'scratch-gui/monitors/REMOVE_MONITOR_RECT'; + +const initialState = { + monitors: {}, + savedMonitorPositions: {} +}; + +// Verify that the rectangle formed by the 2 points is well-formed +const _verifyRect = function (upperStart, lowerEnd) { + if (isNaN(upperStart.x) || isNaN(upperStart.y) || isNaN(lowerEnd.x) || isNaN(lowerEnd.y)) { + return false; + } + if (!(upperStart.x < lowerEnd.x)) { + return false; + } + if (!(upperStart.y < lowerEnd.y)) { + return false; + } + return true; +}; + +const _addMonitorRect = function (state, action) { + if (state.monitors.hasOwnProperty(action.monitorId)) { + log.error(`Can't add monitor, monitor with id ${action.monitorId} already exists.`); + return state; + } + if (!_verifyRect(action.upperStart, action.lowerEnd)) { + log.error(`Monitor rectangle not formatted correctly`); + return state; + } + return { + monitors: Object.assign({}, state.monitors, { + [action.monitorId]: { + upperStart: action.upperStart, + lowerEnd: action.lowerEnd + } + }), + savedMonitorPositions: action.savePosition ? + Object.assign({}, state.savedMonitorPositions, { + [action.monitorId]: {x: action.upperStart.x, y: action.upperStart.y} + }) : + state.savedMonitorPositions + }; +}; + +const _moveMonitorRect = function (state, action) { + if (!state.monitors.hasOwnProperty(action.monitorId)) { + log.error(`Can't move monitor, monitor with id ${action.monitorId} does not exist.`); + return state; + } + if (isNaN(action.newX) || isNaN(action.newY)) { + log.error(`Monitor rectangle not formatted correctly`); + return state; + } + + const oldMonitor = state.monitors[action.monitorId]; + if (oldMonitor.upperStart.x === action.newX && + oldMonitor.upperStart.y === action.newY) { + // Hasn't moved + return state; + } + const monitorWidth = oldMonitor.lowerEnd.x - oldMonitor.upperStart.x; + const monitorHeight = oldMonitor.lowerEnd.y - oldMonitor.upperStart.y; + return { + monitors: Object.assign({}, state.monitors, { + [action.monitorId]: { + upperStart: {x: action.newX, y: action.newY}, + lowerEnd: {x: action.newX + monitorWidth, y: action.newY + monitorHeight} + } + }), + // User generated position is saved + savedMonitorPositions: Object.assign({}, state.savedMonitorPositions, { + [action.monitorId]: {x: action.newX, y: action.newY} + }) + }; +}; + +const _resizeMonitorRect = function (state, action) { + if (!state.monitors.hasOwnProperty(action.monitorId)) { + log.error(`Can't resize monitor, monitor with id ${action.monitorId} does not exist.`); + return state; + } + if (isNaN(action.newWidth) || isNaN(action.newHeight) || + action.newWidth <= 0 || action.newHeight <= 0) { + log.error(`Monitor rectangle not formatted correctly`); + return state; + } + + const oldMonitor = state.monitors[action.monitorId]; + const newMonitor = { + upperStart: oldMonitor.upperStart, + lowerEnd: { + x: oldMonitor.upperStart.x + action.newWidth, + y: oldMonitor.upperStart.y + action.newHeight + } + }; + if (newMonitor.lowerEnd.x === oldMonitor.lowerEnd.x && + newMonitor.lowerEnd.y === oldMonitor.lowerEnd.y) { + // no change + return state; + } + + return { + monitors: Object.assign({}, state.monitors, {[action.monitorId]: newMonitor}), + savedMonitorPositions: state.savedMonitorPositions + }; + +}; + +const _removeMonitorRect = function (state, action) { + if (!state.monitors.hasOwnProperty(action.monitorId)) { + log.error(`Can't remove monitor, monitor with id ${action.monitorId} does not exist.`); + return state; + } + + const newMonitors = Object.assign({}, state.monitors); + delete newMonitors[action.monitorId]; + return { + monitors: newMonitors, + savedMonitorPositions: state.savedMonitorPositions + }; +}; + +const reducer = function (state, action) { + if (typeof state === 'undefined') state = initialState; + switch (action.type) { + case ADD_MONITOR_RECT: + return _addMonitorRect(state, action); + case MOVE_MONITOR_RECT: + return _moveMonitorRect(state, action); + case RESIZE_MONITOR_RECT: + return _resizeMonitorRect(state, action); + case REMOVE_MONITOR_RECT: + return _removeMonitorRect(state, action); + default: + return state; + } +}; + +// Init position -------------------------- +const PADDING = 5; +// @todo fix these numbers when we fix https://github.com/LLK/scratch-gui/issues/980 +const SCREEN_WIDTH = 400; +const SCREEN_HEIGHT = 300; +const SCREEN_EDGE_BUFFER = 40; + +const _rectsIntersect = function (rect1, rect2) { + // If one rectangle is on left side of other + if (rect1.upperStart.x >= rect2.lowerEnd.x || rect2.upperStart.x >= rect1.lowerEnd.x) return false; + // If one rectangle is above other + if (rect1.upperStart.y >= rect2.lowerEnd.y || rect2.upperStart.y >= rect1.lowerEnd.y) return false; + return true; +}; + +// We need to place a monitor with the given width and height. Return a rect defining where it should be placed. +const getInitialPosition = function (state, monitorId, eltWidth, eltHeight) { + // If this monitor was purposefully moved to a certain position before, put it back in that position + if (state.savedMonitorPositions.hasOwnProperty(monitorId)) { + const saved = state.savedMonitorPositions[monitorId]; + return { + upperStart: saved, + lowerEnd: {x: saved.x + eltWidth, y: saved.y + eltHeight} + }; + } + + // Try all starting positions for the new monitor to find one that doesn't intersect others + const endXs = [0]; + const endYs = [0]; + let lastX = null; + let lastY = null; + for (const monitor in state.monitors) { + let x = state.monitors[monitor].lowerEnd.x; + x = Math.ceil(x / 50) * 50; // Try to choose a sensible "tab width" so more monitors line up + endXs.push(x); + endYs.push(Math.ceil(state.monitors[monitor].lowerEnd.y)); + } + endXs.sort((a, b) => a - b); + endYs.sort((a, b) => a - b); + // We'll use plan B if the monitor doesn't fit anywhere (too long or tall) + let planB = null; + for (const x of endXs) { + if (x === lastX) { + continue; + } + lastX = x; + outer: + for (const y of endYs) { + if (y === lastY) { + continue; + } + lastY = y; + const monitorRect = { + upperStart: {x: x + PADDING, y: y + PADDING}, + lowerEnd: {x: x + PADDING + eltWidth, y: y + PADDING + eltHeight} + }; + // Intersection testing rect that includes padding + const rect = { + upperStart: {x, y}, + lowerEnd: {x: x + eltWidth + (2 * PADDING), y: y + eltHeight + (2 * PADDING)} + }; + for (const monitor in state.monitors) { + if (_rectsIntersect(state.monitors[monitor], rect)) { + continue outer; + } + } + // If the rect overlaps the ends of the screen + if (rect.lowerEnd.x > SCREEN_WIDTH || rect.lowerEnd.y > SCREEN_HEIGHT) { + // If rect is not too close to completely off screen, set it as plan B + if (!planB && + !(rect.upperStart.x + SCREEN_EDGE_BUFFER > SCREEN_WIDTH || + rect.upperStart.y + SCREEN_EDGE_BUFFER > SCREEN_HEIGHT)) { + planB = monitorRect; + } + continue; + } + return monitorRect; + } + } + // If the monitor is too long to fit anywhere, put it in the leftmost spot available + // that intersects the right or bottom edge and isn't too close to the edge. + if (planB) { + return planB; + } + + // If plan B fails and there's nowhere reasonable to put it, plan C is to place the monitor randomly + const randX = Math.ceil(Math.random() * (SCREEN_WIDTH / 2)); + const randY = Math.ceil(Math.random() * (SCREEN_HEIGHT - SCREEN_EDGE_BUFFER)); + return { + upperStart: { + x: randX, + y: randY + }, + lowerEnd: { + x: randX + eltWidth, + y: randY + eltHeight + } + }; +}; + +// Action creators ------------------------ +/** + * @param {!string} monitorId Id to add + * @param {!object} upperStart upper point defining the rectangle + * @param {!number} upperStart.x X of top point that defines the monitor location + * @param {!number} upperStart.y Y of top point that defines the monitor location + * @param {!object} lowerEnd lower point defining the rectangle + * @param {!number} lowerEnd.x X of bottom point that defines the monitor location + * @param {!number} lowerEnd.y Y of bottom point that defines the monitor location + * @param {?boolean} savePosition True if the placement should be saved when adding the monitor + * @returns {object} action to add a new monitor at the location + */ +const addMonitorRect = function (monitorId, upperStart, lowerEnd, savePosition) { + return { + type: ADD_MONITOR_RECT, + monitorId: monitorId, + upperStart: upperStart, + lowerEnd: lowerEnd, + savePosition: savePosition + }; +}; + +/** + * @param {!string} monitorId Id for monitor to move + * @param {!number} newX X of top point that defines the monitor location + * @param {!number} newY Y of top point that defines the monitor location + * @returns {object} action to move an existing monitor to the location + */ +const moveMonitorRect = function (monitorId, newX, newY) { + return { + type: MOVE_MONITOR_RECT, + monitorId: monitorId, + newX: newX, + newY: newY + }; +}; + +/** + * @param {!string} monitorId Id for monitor to resize + * @param {!number} newWidth Width to set monitor to + * @param {!number} newHeight Height to set monitor to + * @returns {object} action to resize an existing monitor to the given dimensions + */ +const resizeMonitorRect = function (monitorId, newWidth, newHeight) { + return { + type: RESIZE_MONITOR_RECT, + monitorId: monitorId, + newWidth: newWidth, + newHeight: newHeight + }; +}; + +/** + * @param {!string} monitorId Id for monitor to remove + * @returns {object} action to remove an existing monitor + */ +const removeMonitorRect = function (monitorId) { + return { + type: REMOVE_MONITOR_RECT, + monitorId: monitorId + }; +}; + +export { + reducer as default, + addMonitorRect, + getInitialPosition, + moveMonitorRect, + resizeMonitorRect, + removeMonitorRect, + PADDING, + SCREEN_HEIGHT, + SCREEN_WIDTH +}; diff --git a/src/reducers/toolbox.js b/src/reducers/toolbox.js index 4b06a807cac5e10ebb0d643ab06eea39e5b56b77..e3317ea855e6e734aaa91d4cc2807fca93d24bbf 100644 --- a/src/reducers/toolbox.js +++ b/src/reducers/toolbox.js @@ -1,9 +1,8 @@ const UPDATE_TOOLBOX = 'scratch-gui/toolbox/UPDATE_TOOLBOX'; - import makeToolboxXML from '../lib/make-toolbox-xml'; const initialState = { - toolboxXML: makeToolboxXML() + toolboxXML: makeToolboxXML(true) }; const reducer = function (state, action) { diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..7a4cf69ed41a7ea3e21aa15f38c125613d8e223b Binary files /dev/null and b/static/favicon.ico differ diff --git a/test/helpers/selenium-helper.js b/test/helpers/selenium-helper.js index c4f36ca05b712e36c30246c269d47c6c1afa78ce..44064d5bda1effd5d29eb51f06aab0a5fec6d81f 100644 --- a/test/helpers/selenium-helper.js +++ b/test/helpers/selenium-helper.js @@ -4,7 +4,7 @@ import bindAll from 'lodash.bindall'; import 'chromedriver'; // register path import webdriver from 'selenium-webdriver'; -const {By, until} = webdriver; +const {By, until, Button} = webdriver; class SeleniumHelper { constructor () { @@ -15,7 +15,9 @@ class SeleniumHelper { 'findByText', 'findByXpath', 'getDriver', - 'getLogs' + 'getLogs', + 'loadUri', + 'rightClickText' ]); } @@ -34,6 +36,21 @@ class SeleniumHelper { return this.findByXpath(`//body//${scope || '*'}//*[contains(text(), '${text}')]`); } + loadUri (uri) { + const WINDOW_WIDTH = 1024; + const WINDOW_HEIGHT = 768; + return this.driver + .get(`file://${uri}`) + .then(() => ( + this.driver.executeScript('window.onbeforeunload = undefined;') + )) + .then(() => ( + this.driver.manage() + .window() + .setSize(WINDOW_WIDTH, WINDOW_HEIGHT) + )); + } + clickXpath (xpath) { return this.findByXpath(xpath).then(el => el.click()); } @@ -42,6 +59,12 @@ class SeleniumHelper { return this.findByText(text, scope).then(el => el.click()); } + rightClickText (text, scope) { + return this.findByText(text, scope).then(el => this.driver.actions() + .click(el, Button.RIGHT) + .perform()); + } + clickButton (text) { return this.clickXpath(`//button[contains(text(), '${text}')]`); } diff --git a/test/integration/examples.test.js b/test/integration/examples.test.js index 7fffa903a4bb6f99f08ab18285869ce7bbd05f17..908dbfd36a3ec145bc79b42eb0ad464190959180 100644 --- a/test/integration/examples.test.js +++ b/test/integration/examples.test.js @@ -9,7 +9,8 @@ const { clickXpath, findByXpath, getDriver, - getLogs + getLogs, + loadUri } = new SeleniumHelper(); const errorWhitelist = [ @@ -31,7 +32,7 @@ describe('player example', () => { test('Load a project by ID', async () => { const projectId = '96708228'; - await driver.get(`file://${uri}#${projectId}`); + await loadUri(`${uri}#${projectId}`); await new Promise(resolve => setTimeout(resolve, 2000)); await clickXpath('//img[@title="Go"]'); await new Promise(resolve => setTimeout(resolve, 2000)); @@ -54,7 +55,7 @@ describe('blocks example', () => { test('Load a project by ID', async () => { const projectId = '96708228'; - await driver.get(`file://${uri}#${projectId}`); + await loadUri(`${uri}#${projectId}`); await new Promise(resolve => setTimeout(resolve, 2000)); await clickXpath('//img[@title="Go"]'); await new Promise(resolve => setTimeout(resolve, 2000)); @@ -64,7 +65,7 @@ describe('blocks example', () => { }); test('Change categories', async () => { - await driver.get(`file://${uri}`); + await loadUri(`${uri}`); await clickText('Looks'); await clickText('Sound'); await clickText('Events'); diff --git a/test/integration/test.js b/test/integration/test.js index 86729cf277017b5cb99f9b858514633583564d47..bb0e0918408799017ab9904a98e1a6fac1f3fe67 100644 --- a/test/integration/test.js +++ b/test/integration/test.js @@ -8,7 +8,9 @@ const { findByText, findByXpath, getDriver, - getLogs + getLogs, + loadUri, + rightClickText } = new SeleniumHelper(); const uri = path.resolve(__dirname, '../../build/index.html'); @@ -34,9 +36,8 @@ describe('costumes, sounds and variables', () => { await driver.quit(); }); - test('Blocks report when clicked in the toolbox', async () => { - await driver.get(`file://${uri}`); + await loadUri(uri); await clickText('Blocks'); await clickText('Operators', blocksTabScope); await new Promise(resolve => setTimeout(resolve, 1000)); // Wait for scroll animation @@ -47,42 +48,50 @@ describe('costumes, sounds and variables', () => { }); test('Switching sprites updates the block menus', async () => { - await driver.get(`file://${uri}`); + await loadUri(uri); await clickText('Sound', blocksTabScope); await new Promise(resolve => setTimeout(resolve, 1000)); // Wait for scroll animation // "meow" sound block should be visible await findByText('meow', blocksTabScope); await clickText('Backdrops'); // Switch to the backdrop - // Now "pop" sound block should be visible + // Now "pop" sound block should be visible and motion blocks hidden await findByText('pop', blocksTabScope); + await clickText('Motion', blocksTabScope); + await findByText('Stage selected: no motion blocks'); + const logs = await getLogs(errorWhitelist); await expect(logs).toEqual([]); }); test('Adding a costume', async () => { - await driver.get(`file://${uri}`); + await loadUri(uri); await clickText('Costumes'); await clickText('Add Costume'); const el = await findByXpath("//input[@placeholder='what are you looking for?']"); await el.sendKeys('abb'); - await clickText('abby-a'); // Should close the modal, then click the costumes in the selector + await clickText('Abby-a'); // Should close the modal, then click the costumes in the selector await clickText('costume1', costumesTabScope); - await clickText('abby-a', costumesTabScope); + await clickText('Abby-a', costumesTabScope); const logs = await getLogs(errorWhitelist); await expect(logs).toEqual([]); }); test('Adding a sound', async () => { - await driver.get(`file://${uri}`); + await loadUri(uri); await clickText('Sounds'); + + // Delete the sound + await rightClickText('meow', soundsTabScope); + await clickText('delete', soundsTabScope); + await driver.switchTo().alert() + .accept(); + + // Add a sound await clickText('Add Sound'); const el = await findByXpath("//input[@placeholder='what are you looking for?']"); await el.sendKeys('chom'); - await clickText('chomp'); // Should close the modal, then click the sounds in the selector - await clickText('meow', soundsTabScope); - await clickText('chomp', soundsTabScope); - await clickXpath('//button[@title="Play"]'); - await clickText('meow', soundsTabScope); + await clickText('Chomp'); // Should close the modal, then click the sounds in the selector + await clickText('Chomp', soundsTabScope); await clickXpath('//button[@title="Play"]'); await clickText('Louder'); @@ -99,7 +108,7 @@ describe('costumes, sounds and variables', () => { test('Load a project by ID', async () => { const projectId = '96708228'; - await driver.get(`file://${uri}#${projectId}`); + await loadUri(`${uri}#${projectId}`); await new Promise(resolve => setTimeout(resolve, 2000)); await clickXpath('//img[@title="Go"]'); await new Promise(resolve => setTimeout(resolve, 2000)); @@ -109,7 +118,7 @@ describe('costumes, sounds and variables', () => { }); test('Creating variables', async () => { - await driver.get(`file://${uri}`); + await loadUri(uri); await clickText('Blocks'); await clickText('Data', blocksTabScope); await new Promise(resolve => setTimeout(resolve, 1000)); // Wait for scroll animation @@ -133,7 +142,7 @@ describe('costumes, sounds and variables', () => { }); test('Importing extensions', async () => { - await driver.get(`file://${uri}`); + await loadUri(uri); await clickText('Blocks'); await clickText('Extensions'); await clickText('Pen', modalScope); // Modal closes @@ -147,6 +156,41 @@ describe('costumes, sounds and variables', () => { await new Promise(resolve => setTimeout(resolve, 1000)); // Wait for scroll animation await clickText('stamp', blocksTabScope); // Would fail if didn't scroll back + // Make sure switching sprites doesn't clear extensions + await clickText('Backdrops'); // Switch to the backdrop + await findByText('Pen', blocksTabScope); // Pen extension should still be loaded + + const logs = await getLogs(errorWhitelist); + await expect(logs).toEqual([]); + }); + + test('Deleting only sprite does not crash', async () => { + const spriteTileContext = '*[starts-with(@class,"react-contextmenu-wrapper")]'; + await loadUri(uri); + await new Promise(resolve => setTimeout(resolve, 1000)); // Wait for scroll animation + await rightClickText('Sprite1', spriteTileContext); + await clickText('delete', spriteTileContext); + await driver.switchTo().alert() + .accept(); + // Confirm that the stage has been switched to + await findByText('Stage selected: no motion blocks'); + const logs = await getLogs(errorWhitelist); + await expect(logs).toEqual([]); + }); + + test('Custom procedures', async () => { + await loadUri(uri); + await clickText('More'); + await new Promise(resolve => setTimeout(resolve, 1000)); // Wait for scroll animation + await clickText('Make a Block...'); + // Click on the "add an input" buttons + await clickText('number or text', modalScope); + await clickText('boolean', modalScope); + await clickText('Add a label', modalScope); + await clickText('OK', modalScope); + + // Make sure a "define" block has been added to the workspace + await findByText('define', blocksTabScope); const logs = await getLogs(errorWhitelist); await expect(logs).toEqual([]); diff --git a/test/unit/components/__snapshots__/icon-button.test.jsx.snap b/test/unit/components/__snapshots__/icon-button.test.jsx.snap index 3a26f0acf165ca366275b154a43c236ff45ec7d3..b5f3e7a1090bae6573458341790daeeba665566d 100644 --- a/test/unit/components/__snapshots__/icon-button.test.jsx.snap +++ b/test/unit/components/__snapshots__/icon-button.test.jsx.snap @@ -4,6 +4,7 @@ exports[`IconButtonComponent matches snapshot 1`] = ` <div className="custom-class-name" onClick={[Function]} + role="button" > <img className={undefined} diff --git a/test/unit/components/__snapshots__/sound-editor.test.jsx.snap b/test/unit/components/__snapshots__/sound-editor.test.jsx.snap index 6e863223f1d8753ce674382f29db0153edf82b65..ac545dd6e20c70b72d02d387cb3b898055ccc67f 100644 --- a/test/unit/components/__snapshots__/sound-editor.test.jsx.snap +++ b/test/unit/components/__snapshots__/sound-editor.test.jsx.snap @@ -99,7 +99,7 @@ exports[`Sound Editor Component matches snapshot 1`] = ` > <path className={undefined} - d="M0 0Q0 0 60 45,Q120 90 180 135,Q240 180 300 225,Q360 270 420 135,Q480 0 480 0,Q480 0 420 -135,Q360 -270 300 -225,Q240 -180 180 -135,Q120 -90 60 -45,Q0 0 0 0Z" + d="M0 0Q0 0 60 45 Q120 90 180 135 Q240 180 300 225 Q360 270 420 135 Q480 0 480 0 Q480 0 420 -135 Q360 -270 300 -225 Q240 -180 180 -135 Q120 -90 60 -45 Q0 0 0 0Z" strokeLinejoin="round" strokeWidth={2} /> @@ -341,6 +341,7 @@ exports[`Sound Editor Component matches snapshot 1`] = ` <div className="" onClick={[Function]} + role="button" > <img className={undefined} @@ -357,6 +358,7 @@ exports[`Sound Editor Component matches snapshot 1`] = ` <div className="" onClick={[Function]} + role="button" > <img className={undefined} @@ -373,6 +375,7 @@ exports[`Sound Editor Component matches snapshot 1`] = ` <div className="" onClick={[Function]} + role="button" > <img className={undefined} @@ -389,6 +392,7 @@ exports[`Sound Editor Component matches snapshot 1`] = ` <div className="" onClick={[Function]} + role="button" > <img className={undefined} @@ -405,6 +409,7 @@ exports[`Sound Editor Component matches snapshot 1`] = ` <div className="" onClick={[Function]} + role="button" > <img className={undefined} @@ -421,6 +426,7 @@ exports[`Sound Editor Component matches snapshot 1`] = ` <div className="" onClick={[Function]} + role="button" > <img className={undefined} @@ -437,6 +443,7 @@ exports[`Sound Editor Component matches snapshot 1`] = ` <div className="" onClick={[Function]} + role="button" > <img className={undefined} diff --git a/test/unit/components/__snapshots__/sprite-selector-item.test.jsx.snap b/test/unit/components/__snapshots__/sprite-selector-item.test.jsx.snap index d30617f9aa25d3bcec9972f271d2cf7d76aeaf7d..62c177e38ba2b9fee6808cb0d5ee37a75bf37a6a 100644 --- a/test/unit/components/__snapshots__/sprite-selector-item.test.jsx.snap +++ b/test/unit/components/__snapshots__/sprite-selector-item.test.jsx.snap @@ -12,8 +12,11 @@ exports[`SpriteSelectorItemComponent matches snapshot when selected 1`] = ` onTouchStart={[Function]} > <div + aria-label="Close" className="" onClick={[Function]} + role="button" + tabIndex="0" > <img className={undefined} diff --git a/test/unit/containers/sound-editor.test.jsx b/test/unit/containers/sound-editor.test.jsx index 63199ef01e6f6fffebd49ea2cb0397d1dbb47887..790e6b85c173755adb912913718ffb4ffc652389 100644 --- a/test/unit/containers/sound-editor.test.jsx +++ b/test/unit/containers/sound-editor.test.jsx @@ -224,7 +224,7 @@ describe('Sound Editor Container', () => { expect(mockAudioEffects.instance.process).toHaveBeenCalled(); }); - test('undo/redo functionality', () => { + test('undo/redo stack state', () => { const wrapper = mountWithIntl( <SoundEditor soundIndex={soundIndex} @@ -270,4 +270,34 @@ describe('Sound Editor Container', () => { component = wrapper.find(SoundEditorComponent); expect(component.prop('canRedo')).toEqual(false); }); + + test('undo and redo submit new samples and play the sound', () => { + const wrapper = mountWithIntl( + <SoundEditor + soundIndex={soundIndex} + store={store} + /> + ); + let component = wrapper.find(SoundEditorComponent); + + // Set up an undoable state + component.props().onActivateTrim(); // Activate trimming + component.props().onActivateTrim(); // Submit new samples by calling again + wrapper.update(); + component = wrapper.find(SoundEditorComponent); + + // Undo should update the sound buffer and play the new samples + component.props().onUndo(); + expect(mockAudioBufferPlayer.instance.play).toHaveBeenCalled(); + expect(vm.updateSoundBuffer).toHaveBeenCalled(); + + // Clear the mocks call history to assert again for redo. + vm.updateSoundBuffer.mockClear(); + mockAudioBufferPlayer.instance.play.mockClear(); + + // Undo should update the sound buffer and play the new samples + component.props().onRedo(); + expect(mockAudioBufferPlayer.instance.play).toHaveBeenCalled(); + expect(vm.updateSoundBuffer).toHaveBeenCalled(); + }); }); diff --git a/test/unit/reducers/monitor-layout-reducer.test.js b/test/unit/reducers/monitor-layout-reducer.test.js new file mode 100644 index 0000000000000000000000000000000000000000..ea45b20e47eceb7a1c4969fbfe1061cdb5d80d66 --- /dev/null +++ b/test/unit/reducers/monitor-layout-reducer.test.js @@ -0,0 +1,301 @@ +/* eslint-env jest */ +import monitorLayoutReducer from '../../../src/reducers/monitor-layout'; +import {addMonitorRect, moveMonitorRect} from '../../../src/reducers/monitor-layout'; +import {resizeMonitorRect, removeMonitorRect} from '../../../src/reducers/monitor-layout'; +import {getInitialPosition, PADDING, SCREEN_WIDTH, SCREEN_HEIGHT} from '../../../src/reducers/monitor-layout'; + +test('initialState', () => { + let defaultState; + + expect(monitorLayoutReducer(defaultState /* state */, {type: 'anything'} /* action */)).toBeDefined(); + expect(monitorLayoutReducer(defaultState /* state */, {type: 'anything'} /* action */).monitors).toBeDefined(); + expect(monitorLayoutReducer(defaultState /* state */, {type: 'anything'} /* action */).savedMonitorPositions) + .toBeDefined(); +}); + +test('addMonitorRect', () => { + let defaultState; + const monitorId = 1; + const monitorId2 = 2; + const upperStart = {x: 100, y: 100}; + const lowerEnd = {x: 200, y: 200}; + + // Add a monitor rect + const reduxState = monitorLayoutReducer(defaultState, addMonitorRect(monitorId, upperStart, lowerEnd)); + expect(reduxState.monitors[monitorId]).toBeDefined(); + expect(reduxState.monitors[monitorId].upperStart).toEqual(upperStart); + expect(reduxState.monitors[monitorId].lowerEnd).toEqual(lowerEnd); + // Add monitor rect doesn't save position + expect(reduxState.savedMonitorPositions[monitorId]).toBeUndefined(); + const reduxState2 = monitorLayoutReducer(reduxState, moveMonitorRect(monitorId, 0, 0)); + + // Add a second monitor rect + const reduxState3 = monitorLayoutReducer(reduxState2, addMonitorRect(monitorId2, upperStart, lowerEnd)); + expect(reduxState3.monitors[monitorId]).toBeDefined(); + expect(reduxState3.monitors[monitorId2]).toBeDefined(); + expect(reduxState3.monitors[monitorId2].upperStart).toEqual(upperStart); + expect(reduxState3.monitors[monitorId2].lowerEnd).toEqual(lowerEnd); + // Saved positions aren't changed by adding monitor + expect(reduxState3.savedMonitorPositions).toEqual(reduxState2.savedMonitorPositions); +}); + +test('addMonitorRectWithSavedPosition', () => { + let defaultState; + const monitorId = 1; + const upperStart = {x: 100, y: 100}; + const lowerEnd = {x: 200, y: 200}; + + // Add a monitor rect + const reduxState = monitorLayoutReducer(defaultState, + addMonitorRect(monitorId, upperStart, lowerEnd, true /* savePosition */)); + expect(reduxState.monitors[monitorId]).toBeDefined(); + expect(reduxState.monitors[monitorId].upperStart).toEqual(upperStart); + expect(reduxState.monitors[monitorId].lowerEnd).toEqual(lowerEnd); + // Save position + expect(reduxState.savedMonitorPositions[monitorId].x).toEqual(upperStart.x); + expect(reduxState.savedMonitorPositions[monitorId].y).toEqual(upperStart.y); +}); + +test('invalidRect', () => { + let defaultState; + const reduxState = monitorLayoutReducer(defaultState /* state */, {type: 'initialize'} /* action */); + + // Problem: x end is before x start + expect( + monitorLayoutReducer(reduxState, + addMonitorRect(1, {x: 100, y: 100}, {x: 10, y: 200}))) + .toEqual(reduxState); + + // Problem: y end is before y start + expect( + monitorLayoutReducer(reduxState, + addMonitorRect(1, {x: 100, y: 100}, {x: 200, y: 10}))) + .toEqual(reduxState); +}); + +test('invalidAddMonitorRect', () => { + let defaultState; + const monitorId = 1; + const upperStart = {x: 100, y: 100}; + const lowerEnd = {x: 200, y: 200}; + + // Add a monitor rect + const reduxState = monitorLayoutReducer(defaultState, addMonitorRect(monitorId, upperStart, lowerEnd)); + // Try to add the same one + expect(monitorLayoutReducer(reduxState, addMonitorRect(monitorId, upperStart, lowerEnd))) + .toEqual(reduxState); +}); + +test('moveMonitorRect', () => { + let defaultState; + const monitorId = 1; + const monitorId2 = 2; + const width = 102; + const height = 101; + const upperStart = {x: 100, y: 100}; + const lowerEnd = {x: upperStart.x + width, y: upperStart.y + height}; + const movedToPosition = {x: 0, y: 0}; + const movedToPosition2 = {x: 543, y: 2}; + + // Add a monitor rect and move it. Expect it to be in monitors state and saved positions. + const reduxState = monitorLayoutReducer(defaultState, addMonitorRect(monitorId, upperStart, lowerEnd)); + const reduxState2 = monitorLayoutReducer(reduxState, + moveMonitorRect(monitorId, movedToPosition.x, movedToPosition.y)); + expect(reduxState2.monitors[monitorId]).toBeDefined(); + expect(reduxState2.monitors[monitorId].upperStart).toEqual(movedToPosition); + expect(reduxState2.monitors[monitorId].lowerEnd.x).toEqual(movedToPosition.x + width); + expect(reduxState2.monitors[monitorId].lowerEnd.y).toEqual(movedToPosition.y + height); + expect(reduxState2.savedMonitorPositions[monitorId]).toBeDefined(); + expect(reduxState2.savedMonitorPositions[monitorId].x).toEqual(movedToPosition.x); + expect(reduxState2.savedMonitorPositions[monitorId].y).toEqual(movedToPosition.y); + + // Add a second monitor rect and move it. Expect there to now be 2 saved positions. + const reduxState3 = monitorLayoutReducer(reduxState2, addMonitorRect(monitorId2, upperStart, lowerEnd)); + const reduxState4 = monitorLayoutReducer(reduxState3, + moveMonitorRect(monitorId2, movedToPosition2.x, movedToPosition2.y)); + expect(reduxState4.savedMonitorPositions[monitorId]).toEqual(reduxState2.savedMonitorPositions[monitorId]); + expect(reduxState4.savedMonitorPositions[monitorId2].x).toEqual(movedToPosition2.x); + expect(reduxState4.savedMonitorPositions[monitorId2].y).toEqual(movedToPosition2.y); +}); + +test('invalidMoveMonitorRect', () => { + let defaultState; + let reduxState = monitorLayoutReducer(defaultState, {type: 'initialize'} /* action */); + const monitorId = 1; + + // Try to move a monitor rect that doesn't exist + expect(monitorLayoutReducer(reduxState, moveMonitorRect(monitorId, 1 /* newX */, 1 /* newY */))) + .toEqual(reduxState); + + // Add the monitor to move + reduxState = monitorLayoutReducer(reduxState, addMonitorRect(monitorId, {x: 100, y: 100}, {x: 200, y: 200})); + + // Invalid newX + expect(monitorLayoutReducer(reduxState, moveMonitorRect(monitorId, 'Oregon' /* newX */, 1 /* newY */))) + .toEqual(reduxState); + + // Invalid newY + expect(monitorLayoutReducer(reduxState, moveMonitorRect(monitorId, 1 /* newX */))) + .toEqual(reduxState); +}); + +test('resizeMonitorRect', () => { + let defaultState; + const monitorId = 1; + const upperStart = {x: 100, y: 100}; + const newWidth = 10; + const newHeight = 20; + + // Add a monitor rect and resize it + const reduxState = monitorLayoutReducer(defaultState, addMonitorRect(monitorId, upperStart, {x: 200, y: 200})); + const reduxState2 = monitorLayoutReducer(reduxState, + resizeMonitorRect(monitorId, newWidth, newHeight)); + expect(reduxState2.monitors[monitorId]).toBeDefined(); + expect(reduxState2.monitors[monitorId].upperStart).toEqual(upperStart); + expect(reduxState2.monitors[monitorId].lowerEnd.x).toEqual(upperStart.x + newWidth); + expect(reduxState2.monitors[monitorId].lowerEnd.y).toEqual(upperStart.y + newHeight); + // Saved positions aren't changed by resizing monitor + expect(reduxState2.savedMonitorPositions).toEqual(reduxState.savedMonitorPositions); +}); + +test('invalidResizeMonitorRect', () => { + let defaultState; + let reduxState = monitorLayoutReducer(defaultState, {type: 'initialize'} /* action */); + const monitorId = 1; + + // Try to resize a monitor rect that doesn't exist + expect(monitorLayoutReducer(reduxState, resizeMonitorRect(monitorId, 1 /* newWidth */, 1 /* newHeight */))) + .toEqual(reduxState); + + // Add the monitor to resize + reduxState = monitorLayoutReducer(reduxState, addMonitorRect(monitorId, {x: 100, y: 100}, {x: 200, y: 200})); + + // Invalid newWidth + expect(monitorLayoutReducer(reduxState, resizeMonitorRect(monitorId, 'Oregon' /* newWidth */, 1 /* newHeight */))) + .toEqual(reduxState); + + // Invalid newHeight + expect(monitorLayoutReducer(reduxState, moveMonitorRect(monitorId, 1 /* newWidth */))) + .toEqual(reduxState); + + // newWidth < 0 + expect(monitorLayoutReducer(reduxState, resizeMonitorRect(monitorId, -1 /* newWidth */, 1 /* newHeight */))) + .toEqual(reduxState); + + // newHeight < 0 + expect(monitorLayoutReducer(reduxState, resizeMonitorRect(monitorId, 1 /* newWidth */, -1 /* newHeight */))) + .toEqual(reduxState); +}); + +test('removeMonitorRect', () => { + let defaultState; + const monitorId = 1; + + // Add a monitor rect, move it, and remove it + const reduxState = monitorLayoutReducer(defaultState, addMonitorRect(monitorId, + {x: 100, y: 100}, + {x: 200, y: 200} + )); + const reduxState2 = monitorLayoutReducer(reduxState, moveMonitorRect(monitorId, 0, 0)); + const reduxState3 = monitorLayoutReducer(reduxState2, removeMonitorRect(monitorId)); + expect(reduxState3.monitors[monitorId]).toBeUndefined(); + // Check that saved positions aren't changed by removing monitor + expect(reduxState3.savedMonitorPositions).toEqual(reduxState2.savedMonitorPositions); +}); + +test('invalidRemoveMonitorRect', () => { + let defaultState; + const reduxState = monitorLayoutReducer(defaultState, {type: 'initialize'} /* action */); + + // Try to remove a monitor rect that doesn't exist + expect(monitorLayoutReducer(reduxState, resizeMonitorRect(1))) + .toEqual(reduxState); +}); + +test('getInitialPosition_lineUpTopLeft', () => { + let defaultState; + const width = 100; + const height = 200; + // Add monitors to right and bottom, but there is a space in the top left + let reduxState = monitorLayoutReducer(defaultState, addMonitorRect(1, + {x: width + PADDING, y: 0}, + {x: 100, y: height} + )); + reduxState = monitorLayoutReducer(defaultState, addMonitorRect(2, + {x: 0, y: height + PADDING}, + {x: width, y: 100} + )); + + // Check that the added monitor appears in the space + const rect = getInitialPosition(reduxState, 3, width, height); + expect(rect.upperStart).toBeDefined(); + expect(rect.lowerEnd).toBeDefined(); + expect(rect.lowerEnd.x - rect.upperStart.x).toEqual(width); + expect(rect.lowerEnd.y - rect.upperStart.y).toEqual(height); + expect(rect.upperStart.x).toEqual(PADDING); + expect(rect.upperStart.y).toEqual(PADDING); +}); + +test('getInitialPosition_savedPosition', () => { + const monitorId = 1; + const savedX = 100; + const savedY = 200; + const width = 7; + const height = 8; + const reduxState = { + monitors: {}, + savedMonitorPositions: {[monitorId]: {x: savedX, y: savedY}} + }; + + // Check that initial position uses saved state + const rect = getInitialPosition(reduxState, monitorId, width, height); + expect(rect.upperStart).toBeDefined(); + expect(rect.lowerEnd).toBeDefined(); + expect(rect.lowerEnd.x - rect.upperStart.x).toEqual(width); + expect(rect.lowerEnd.y - rect.upperStart.y).toEqual(height); + expect(rect.upperStart.x).toEqual(savedX); + expect(rect.upperStart.y).toEqual(savedY); +}); + +test('getInitialPosition_lineUpLeft', () => { + let defaultState; + const monitor1EndY = 60; + // Add a monitor that takes up the upper left corner + const reduxState = monitorLayoutReducer(defaultState, addMonitorRect(1, {x: 0, y: 0}, {x: 100, y: monitor1EndY})); + + // Check that added monitor is under it and lines up left + const rect = getInitialPosition(reduxState, 2, 20 /* width */, 20 /* height */); + expect(rect.upperStart.y >= monitor1EndY + PADDING).toBeTruthy(); +}); + +test('getInitialPosition_lineUpTop', () => { + let defaultState; + const monitor1EndX = 100; + // Add a monitor that takes up the whole left side + const reduxState = monitorLayoutReducer(defaultState, addMonitorRect(1, + {x: 0, y: 0}, + {x: monitor1EndX, y: SCREEN_HEIGHT} + )); + + // Check that added monitor is to the right of it and lines up top + const rect = getInitialPosition(reduxState, 2, 20 /* width */, 20 /* height */); + expect(rect.upperStart.y).toEqual(PADDING); + expect(rect.upperStart.x >= monitor1EndX + PADDING).toBeTruthy(); +}); + +test('getInitialPosition_noRoom', () => { + let defaultState; + const width = 7; + const height = 8; + // Add a monitor that takes up the whole screen + const reduxState = monitorLayoutReducer(defaultState, addMonitorRect(1, + {x: 0, y: 0}, + {x: SCREEN_WIDTH, y: SCREEN_HEIGHT} + )); + + // Check that added monitor exists somewhere (we don't care where) + const rect = getInitialPosition(reduxState, 2, width, height); + expect(rect.upperStart).toBeDefined(); + expect(rect.lowerEnd.x - rect.upperStart.x).toEqual(width); + expect(rect.lowerEnd.y - rect.upperStart.y).toEqual(height); +}); diff --git a/webpack.config.js b/webpack.config.js index e9b97f9efa740c41a3abdbd0128f7260ad77bf48..c92f72ea718775322dbd7b29aca36dedbbcb5734 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -103,10 +103,18 @@ module.exports = { filename: 'player.html', title: 'Scratch 3.0 GUI: Player Example' }), + new CopyWebpackPlugin([{ + from: 'static', + to: 'static' + }]), new CopyWebpackPlugin([{ from: 'node_modules/scratch-blocks/media', to: 'static/blocks-media' }]), + new CopyWebpackPlugin([{ + from: 'node_modules/scratch-vm/dist/node/assets', + to: 'static/extension-assets' + }]), new CopyWebpackPlugin([{ from: 'extensions/**', to: 'static',