├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── devportal-bug-report.md │ ├── devportal-feature-request.md │ ├── tutorials-bug-report.md │ └── tutorials-feature-request.md ├── PULL_REQUEST_TEMPLATE │ └── b9lab_pull_request_template.md ├── dependabot.yml ├── mergify.yml ├── pull_request_template.md └── workflows │ ├── deploy.yml │ ├── linkchecker.yml │ ├── lint-pr.yml │ └── verify-config.yml ├── .gitignore ├── .gitmodules ├── .golangci.yml ├── .markdownlint.json ├── .node-version ├── .vscode ├── extensions.json └── spellright.dict ├── .vuepress ├── components │ ├── Accordion.vue │ ├── CodeGroup.vue │ ├── CodeGroupItem.vue │ ├── ExpansionPanel.vue │ ├── H5PComponent.vue │ ├── HighlightBox.vue │ ├── LandingPage.vue │ ├── ModuleLandingPage.vue │ ├── PanelListItem.vue │ └── YoutubePlayer.vue ├── config.js ├── public │ ├── android-chrome-192x192.png │ ├── android-chrome-256x256.png │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── article-banner-01.png │ ├── article-banner-02.png │ ├── article-banner-03.jpg │ ├── article-banner-04.jpg │ ├── brand.png │ ├── browserconfig.xml │ ├── check-icon.svg │ ├── comet-bft-logo.svg │ ├── cosmos-sdk-icon.svg │ ├── cosmos_dev_portal_module-02-lp.png │ ├── cosmos_dev_portal_module-03-lp.png │ ├── cosmos_dev_portal_module-03-lp.svg │ ├── cosmos_dev_portal_module-04-lp.png │ ├── cosmos_dev_portal_whats_next.png │ ├── cosmwasm-icon.svg │ ├── discord-support.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-svg.svg │ ├── generic-star-icon.svg │ ├── go-lp.svg │ ├── graphics-sdk-course-1.png │ ├── graphics-sdk-course.png │ ├── h5p │ │ ├── M0-quiz-blockchain-intro.h5p │ │ ├── M0-quiz-blockchain-intro │ │ │ ├── Drop-1.0 │ │ │ │ ├── css │ │ │ │ │ └── drop-theme-arrows-bounce.min.css │ │ │ │ ├── js │ │ │ │ │ └── drop.min.js │ │ │ │ └── library.json │ │ │ ├── EmbeddedJS-1.0 │ │ │ │ ├── js │ │ │ │ │ ├── ejs.js │ │ │ │ │ ├── ejs_production.js │ │ │ │ │ └── ejs_viewhelpers.js │ │ │ │ └── library.json │ │ │ ├── FontAwesome-4.5 │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── LICENSE.md │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── h5p-font-awesome.min.css │ │ │ │ └── library.json │ │ │ ├── H5P.FontIcons-1.0 │ │ │ │ ├── fonts │ │ │ │ │ ├── h5p.eot │ │ │ │ │ ├── h5p.svg │ │ │ │ │ ├── h5p.ttf │ │ │ │ │ └── h5p.woff │ │ │ │ ├── library.json │ │ │ │ └── styles │ │ │ │ │ └── h5p-font-icons.css │ │ │ ├── H5P.JoubelUI-1.3 │ │ │ │ ├── css │ │ │ │ │ ├── joubel-help-dialog.css │ │ │ │ │ ├── joubel-icon.css │ │ │ │ │ ├── joubel-message-dialog.css │ │ │ │ │ ├── joubel-progress-circle.css │ │ │ │ │ ├── joubel-progressbar.css │ │ │ │ │ ├── joubel-score-bar.css │ │ │ │ │ ├── joubel-simple-rounded-button.css │ │ │ │ │ ├── joubel-slider.css │ │ │ │ │ ├── joubel-speech-bubble.css │ │ │ │ │ ├── joubel-tip.css │ │ │ │ │ └── joubel-ui.css │ │ │ │ ├── fonts │ │ │ │ │ ├── joubel.eot │ │ │ │ │ ├── joubel.svg │ │ │ │ │ ├── joubel.ttf │ │ │ │ │ └── joubel.woff │ │ │ │ ├── js │ │ │ │ │ ├── joubel-help-dialog.js │ │ │ │ │ ├── joubel-message-dialog.js │ │ │ │ │ ├── joubel-progress-circle.js │ │ │ │ │ ├── joubel-progressbar.js │ │ │ │ │ ├── joubel-score-bar.js │ │ │ │ │ ├── joubel-simple-rounded-button.js │ │ │ │ │ ├── joubel-slider.js │ │ │ │ │ ├── joubel-speech-bubble.js │ │ │ │ │ ├── joubel-throbber.js │ │ │ │ │ ├── joubel-tip.js │ │ │ │ │ └── joubel-ui.js │ │ │ │ └── library.json │ │ │ ├── H5P.MultiChoice-1.14 │ │ │ │ ├── css │ │ │ │ │ └── multichoice.css │ │ │ │ ├── fonts │ │ │ │ │ ├── icomoon.eot │ │ │ │ │ ├── icomoon.svg │ │ │ │ │ ├── icomoon.ttf │ │ │ │ │ └── icomoon.woff │ │ │ │ ├── icon.svg │ │ │ │ ├── js │ │ │ │ │ └── multichoice.js │ │ │ │ ├── language │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── bs.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── da.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── fi.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── ga.json │ │ │ │ │ ├── he.json │ │ │ │ │ ├── hi.json │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── km.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nb.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── nn.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt-br.json │ │ │ │ │ ├── pt.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ ├── smj.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── tr.json │ │ │ │ │ ├── uk.json │ │ │ │ │ ├── vi.json │ │ │ │ │ ├── zh-hans.json │ │ │ │ │ ├── zh-hant.json │ │ │ │ │ └── zh-tw.json │ │ │ │ ├── library.json │ │ │ │ ├── presave.js │ │ │ │ ├── semantics.json │ │ │ │ └── upgrades.js │ │ │ ├── H5P.Question-1.4 │ │ │ │ ├── images │ │ │ │ │ ├── minus-one.svg │ │ │ │ │ └── plus-one.svg │ │ │ │ ├── library.json │ │ │ │ ├── scripts │ │ │ │ │ ├── explainer.js │ │ │ │ │ ├── question.js │ │ │ │ │ └── score-points.js │ │ │ │ └── styles │ │ │ │ │ ├── explainer.css │ │ │ │ │ └── question.css │ │ │ ├── H5P.QuestionSet-1.17 │ │ │ │ ├── css │ │ │ │ │ └── questionset.css │ │ │ │ ├── icon.svg │ │ │ │ ├── js │ │ │ │ │ └── questionset.js │ │ │ │ ├── language │ │ │ │ │ ├── af.json │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── bs.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── da.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── fa.json │ │ │ │ │ ├── fi.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── ga.json │ │ │ │ │ ├── gl.json │ │ │ │ │ ├── he.json │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── km.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nb.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── nn.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt.json │ │ │ │ │ ├── ro.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ ├── smj.json │ │ │ │ │ ├── sr.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── tr.json │ │ │ │ │ ├── uk.json │ │ │ │ │ ├── vi.json │ │ │ │ │ ├── zh-tw.json │ │ │ │ │ └── zh.json │ │ │ │ ├── library.json │ │ │ │ ├── presave.js │ │ │ │ ├── semantics.json │ │ │ │ └── upgrades.js │ │ │ ├── H5P.Transition-1.0 │ │ │ │ ├── library.json │ │ │ │ └── transition.js │ │ │ ├── H5P.Video-1.5 │ │ │ │ ├── language │ │ │ │ │ ├── af.json │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── bs.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── da.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── fi.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── he.json │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── km.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nb.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── nn.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt-br.json │ │ │ │ │ ├── pt.json │ │ │ │ │ ├── ro.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ ├── smj.json │ │ │ │ │ ├── sr.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── tr.json │ │ │ │ │ ├── vi.json │ │ │ │ │ ├── zh-hans.json │ │ │ │ │ └── zh-hant.json │ │ │ │ ├── library.json │ │ │ │ ├── scripts │ │ │ │ │ ├── flash.js │ │ │ │ │ ├── html5.js │ │ │ │ │ ├── panopto.js │ │ │ │ │ ├── video.js │ │ │ │ │ └── youtube.js │ │ │ │ ├── semantics.json │ │ │ │ ├── styles │ │ │ │ │ └── video.css │ │ │ │ └── upgrades.js │ │ │ ├── H5PEditor.QuestionSetTextualEditor-1.3 │ │ │ │ ├── language │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── en.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ ├── smj.json │ │ │ │ │ └── sv.json │ │ │ │ └── library.json │ │ │ ├── H5PEditor.RangeList-1.0 │ │ │ │ ├── h5p-editor-range-list.css │ │ │ │ ├── h5p-editor-range-list.js │ │ │ │ ├── language │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── en.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── fi.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt-br.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ ├── smj.json │ │ │ │ │ └── sv.json │ │ │ │ └── library.json │ │ │ ├── H5PEditor.ShowWhen-1.0 │ │ │ │ ├── h5p-show-when.css │ │ │ │ ├── h5p-show-when.js │ │ │ │ └── library.json │ │ │ ├── H5PEditor.TableList-1.0 │ │ │ │ ├── h5p-editor-table-list.css │ │ │ │ ├── h5p-editor-table-list.js │ │ │ │ └── library.json │ │ │ ├── H5PEditor.VerticalTabs-1.3 │ │ │ │ ├── library.json │ │ │ │ ├── styles │ │ │ │ │ └── css │ │ │ │ │ │ └── vertical-tabs.css │ │ │ │ └── vertical-tabs.js │ │ │ ├── Tether-1.0 │ │ │ │ ├── library.json │ │ │ │ ├── scripts │ │ │ │ │ └── tether.min.js │ │ │ │ └── styles │ │ │ │ │ └── tether.min.css │ │ │ ├── content │ │ │ │ └── content.json │ │ │ ├── flowplayer-1.0 │ │ │ │ ├── library.json │ │ │ │ └── scripts │ │ │ │ │ └── flowplayer-3.2.12.min.js │ │ │ └── h5p.json │ │ ├── M1-BlochcianandCosmos-Scaling.h5p │ │ ├── M1-BlochcianandCosmos-Scaling │ │ │ ├── FontAwesome-4.5 │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── LICENSE.md │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── h5p-font-awesome.min.css │ │ │ │ └── library.json │ │ │ ├── H5P.Accordion-1.0 │ │ │ │ ├── h5p-accordion.css │ │ │ │ ├── h5p-accordion.js │ │ │ │ ├── icon.svg │ │ │ │ ├── language │ │ │ │ │ ├── af.json │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── bs.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── da.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── fi.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── he.json │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nb.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── nn.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt-br.json │ │ │ │ │ ├── pt.json │ │ │ │ │ ├── ro.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ ├── smj.json │ │ │ │ │ ├── sr.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── tr.json │ │ │ │ │ ├── uk.json │ │ │ │ │ ├── vi.json │ │ │ │ │ ├── zh-cn.json │ │ │ │ │ ├── zh-hans.json │ │ │ │ │ └── zh-hant.json │ │ │ │ ├── library.json │ │ │ │ └── semantics.json │ │ │ ├── H5P.AdvancedText-1.1 │ │ │ │ ├── language │ │ │ │ │ ├── af.json │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── da.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── fi.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── he.json │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── km.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nb.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── nn.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt.json │ │ │ │ │ ├── ro.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ ├── smj.json │ │ │ │ │ ├── sr.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── tr.json │ │ │ │ │ ├── uk.json │ │ │ │ │ └── vi.json │ │ │ │ ├── library.json │ │ │ │ ├── semantics.json │ │ │ │ ├── text.css │ │ │ │ └── text.js │ │ │ ├── content │ │ │ │ └── content.json │ │ │ └── h5p.json │ │ ├── M1-BlockchainandCosmos-skinnytendermint-AC.h5p │ │ ├── M1-BlockchainandCosmos-skinnytendermint-AC │ │ │ ├── FontAwesome-4.5 │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── LICENSE.md │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── h5p-font-awesome.min.css │ │ │ │ └── library.json │ │ │ ├── H5P.Accordion-1.0 │ │ │ │ ├── h5p-accordion.css │ │ │ │ ├── h5p-accordion.js │ │ │ │ ├── icon.svg │ │ │ │ ├── language │ │ │ │ │ ├── af.json │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── bs.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── da.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── fi.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── he.json │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nb.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── nn.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt-br.json │ │ │ │ │ ├── pt.json │ │ │ │ │ ├── ro.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ ├── smj.json │ │ │ │ │ ├── sr.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── tr.json │ │ │ │ │ ├── uk.json │ │ │ │ │ ├── vi.json │ │ │ │ │ ├── zh-cn.json │ │ │ │ │ ├── zh-hans.json │ │ │ │ │ └── zh-hant.json │ │ │ │ ├── library.json │ │ │ │ └── semantics.json │ │ │ ├── H5P.AdvancedText-1.1 │ │ │ │ ├── language │ │ │ │ │ ├── af.json │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── da.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── fi.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── he.json │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── km.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nb.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── nn.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt.json │ │ │ │ │ ├── ro.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ ├── smj.json │ │ │ │ │ ├── sr.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── tr.json │ │ │ │ │ ├── uk.json │ │ │ │ │ └── vi.json │ │ │ │ ├── library.json │ │ │ │ ├── semantics.json │ │ │ │ ├── text.css │ │ │ │ └── text.js │ │ │ ├── content │ │ │ │ └── content.json │ │ │ └── h5p.json │ │ ├── M1-Ecosystem-SDK-AC.h5p │ │ ├── M1-Ecosystem-SDK-AC │ │ │ ├── FontAwesome-4.5 │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── LICENSE.md │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── h5p-font-awesome.min.css │ │ │ │ └── library.json │ │ │ ├── H5P.Accordion-1.0 │ │ │ │ ├── h5p-accordion.css │ │ │ │ ├── h5p-accordion.js │ │ │ │ ├── icon.svg │ │ │ │ ├── language │ │ │ │ │ ├── af.json │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── bs.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── da.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── fi.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── he.json │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nb.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── nn.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt-br.json │ │ │ │ │ ├── pt.json │ │ │ │ │ ├── ro.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ ├── smj.json │ │ │ │ │ ├── sr.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── tr.json │ │ │ │ │ ├── uk.json │ │ │ │ │ ├── vi.json │ │ │ │ │ ├── zh-cn.json │ │ │ │ │ ├── zh-hans.json │ │ │ │ │ └── zh-hant.json │ │ │ │ ├── library.json │ │ │ │ └── semantics.json │ │ │ ├── H5P.AdvancedText-1.1 │ │ │ │ ├── language │ │ │ │ │ ├── af.json │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── da.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── fi.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── he.json │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── km.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nb.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── nn.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt.json │ │ │ │ │ ├── ro.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ ├── smj.json │ │ │ │ │ ├── sr.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── tr.json │ │ │ │ │ ├── uk.json │ │ │ │ │ └── vi.json │ │ │ │ ├── library.json │ │ │ │ ├── semantics.json │ │ │ │ ├── text.css │ │ │ │ └── text.js │ │ │ ├── content │ │ │ │ └── content.json │ │ │ └── h5p.json │ │ ├── M1-ecosystem-constellation-HS.h5p │ │ ├── M1-ecosystem-constellation-HS │ │ │ ├── FontAwesome-4.5 │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── LICENSE.md │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── h5p-font-awesome.min.css │ │ │ │ └── library.json │ │ │ ├── H5P.ImageHotspots-1.9 │ │ │ │ ├── close.svg │ │ │ │ ├── icon.svg │ │ │ │ ├── language │ │ │ │ │ ├── af.json │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── bs.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── da.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── fa.json │ │ │ │ │ ├── fi.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── gl.json │ │ │ │ │ ├── he.json │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── km.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nb.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── nn.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt-br.json │ │ │ │ │ ├── pt.json │ │ │ │ │ ├── ro.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ ├── smj.json │ │ │ │ │ ├── sr.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── tr.json │ │ │ │ │ ├── uk.json │ │ │ │ │ ├── vi.json │ │ │ │ │ ├── zh-hans.json │ │ │ │ │ ├── zh-hant.json │ │ │ │ │ └── zh-tw.json │ │ │ │ ├── library.json │ │ │ │ ├── scripts │ │ │ │ │ ├── hotspot.js │ │ │ │ │ ├── image-hotspots.js │ │ │ │ │ └── popup.js │ │ │ │ ├── semantics.json │ │ │ │ ├── styles │ │ │ │ │ └── image-hotspots.css │ │ │ │ └── upgrades.js │ │ │ ├── H5P.Text-1.1 │ │ │ │ ├── language │ │ │ │ │ ├── af.json │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── bs.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── cy.json │ │ │ │ │ ├── da.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── fi.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── he.json │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── km.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nb.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── nn.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt.json │ │ │ │ │ ├── ro.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ ├── smj.json │ │ │ │ │ ├── sr.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── tr.json │ │ │ │ │ ├── vi.json │ │ │ │ │ └── zh.json │ │ │ │ ├── library.json │ │ │ │ ├── scripts │ │ │ │ │ └── text.js │ │ │ │ ├── semantics.json │ │ │ │ └── styles │ │ │ │ │ └── text.css │ │ │ ├── H5P.Transition-1.0 │ │ │ │ ├── library.json │ │ │ │ └── transition.js │ │ │ ├── H5PEditor.ColorSelector-1.3 │ │ │ │ ├── library.json │ │ │ │ ├── scripts │ │ │ │ │ ├── color-selector.js │ │ │ │ │ └── spectrum.js │ │ │ │ └── styles │ │ │ │ │ ├── color-selector.css │ │ │ │ │ └── spectrum.css │ │ │ ├── H5PEditor.ImageCoordinateSelector-1.2 │ │ │ │ ├── language │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── cy.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── en.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ └── smj.json │ │ │ │ ├── library.json │ │ │ │ ├── scripts │ │ │ │ │ └── image-coordinate-selector.js │ │ │ │ └── styles │ │ │ │ │ └── image-coordinate-selector.css │ │ │ ├── H5PEditor.ShowWhen-1.0 │ │ │ │ ├── h5p-show-when.css │ │ │ │ ├── h5p-show-when.js │ │ │ │ └── library.json │ │ │ ├── content │ │ │ │ ├── content.json │ │ │ │ └── images │ │ │ │ │ └── image-3zHrTkiC.png │ │ │ └── h5p.json │ │ ├── M1_zones_hubs.h5p │ │ ├── M1_zones_hubs │ │ │ ├── FontAwesome-4.5 │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── LICENSE.md │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── h5p-font-awesome.min.css │ │ │ │ └── library.json │ │ │ ├── H5P.ImageHotspots-1.9 │ │ │ │ ├── close.svg │ │ │ │ ├── icon.svg │ │ │ │ ├── language │ │ │ │ │ ├── af.json │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── bs.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── da.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── fa.json │ │ │ │ │ ├── fi.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── gl.json │ │ │ │ │ ├── he.json │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── km.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nb.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── nn.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt-br.json │ │ │ │ │ ├── pt.json │ │ │ │ │ ├── ro.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ ├── smj.json │ │ │ │ │ ├── sr.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── tr.json │ │ │ │ │ ├── uk.json │ │ │ │ │ ├── vi.json │ │ │ │ │ ├── zh-hans.json │ │ │ │ │ ├── zh-hant.json │ │ │ │ │ └── zh-tw.json │ │ │ │ ├── library.json │ │ │ │ ├── scripts │ │ │ │ │ ├── hotspot.js │ │ │ │ │ ├── image-hotspots.js │ │ │ │ │ └── popup.js │ │ │ │ ├── semantics.json │ │ │ │ ├── styles │ │ │ │ │ └── image-hotspots.css │ │ │ │ └── upgrades.js │ │ │ ├── H5P.Text-1.1 │ │ │ │ ├── language │ │ │ │ │ ├── af.json │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── bs.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── cy.json │ │ │ │ │ ├── da.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── fi.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── he.json │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── km.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nb.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── nn.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt.json │ │ │ │ │ ├── ro.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ ├── smj.json │ │ │ │ │ ├── sr.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── tr.json │ │ │ │ │ ├── vi.json │ │ │ │ │ └── zh.json │ │ │ │ ├── library.json │ │ │ │ ├── scripts │ │ │ │ │ └── text.js │ │ │ │ ├── semantics.json │ │ │ │ └── styles │ │ │ │ │ └── text.css │ │ │ ├── H5P.Transition-1.0 │ │ │ │ ├── library.json │ │ │ │ └── transition.js │ │ │ ├── H5PEditor.ColorSelector-1.3 │ │ │ │ ├── library.json │ │ │ │ ├── scripts │ │ │ │ │ ├── color-selector.js │ │ │ │ │ └── spectrum.js │ │ │ │ └── styles │ │ │ │ │ ├── color-selector.css │ │ │ │ │ └── spectrum.css │ │ │ ├── H5PEditor.ImageCoordinateSelector-1.2 │ │ │ │ ├── language │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── cy.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── en.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ └── smj.json │ │ │ │ ├── library.json │ │ │ │ ├── scripts │ │ │ │ │ └── image-coordinate-selector.js │ │ │ │ └── styles │ │ │ │ │ └── image-coordinate-selector.css │ │ │ ├── H5PEditor.ShowWhen-1.0 │ │ │ │ ├── h5p-show-when.css │ │ │ │ ├── h5p-show-when.js │ │ │ │ └── library.json │ │ │ ├── content │ │ │ │ ├── content.json │ │ │ │ └── images │ │ │ │ │ └── image-sTWSA-mx-7T9i39Uy.png │ │ │ └── h5p.json │ │ ├── M2-accounts-secp-HS.h5p │ │ ├── M2-accounts-secp-HS │ │ │ ├── FontAwesome-4.5 │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── LICENSE.md │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── h5p-font-awesome.min.css │ │ │ │ └── library.json │ │ │ ├── H5P.ImageHotspots-1.9 │ │ │ │ ├── close.svg │ │ │ │ ├── icon.svg │ │ │ │ ├── language │ │ │ │ │ ├── af.json │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── bs.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── da.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── fa.json │ │ │ │ │ ├── fi.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── gl.json │ │ │ │ │ ├── he.json │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── km.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nb.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── nn.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt-br.json │ │ │ │ │ ├── pt.json │ │ │ │ │ ├── ro.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ ├── smj.json │ │ │ │ │ ├── sr.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── tr.json │ │ │ │ │ ├── uk.json │ │ │ │ │ ├── vi.json │ │ │ │ │ ├── zh-hans.json │ │ │ │ │ ├── zh-hant.json │ │ │ │ │ └── zh-tw.json │ │ │ │ ├── library.json │ │ │ │ ├── scripts │ │ │ │ │ ├── hotspot.js │ │ │ │ │ ├── image-hotspots.js │ │ │ │ │ └── popup.js │ │ │ │ ├── semantics.json │ │ │ │ ├── styles │ │ │ │ │ └── image-hotspots.css │ │ │ │ └── upgrades.js │ │ │ ├── H5P.Text-1.1 │ │ │ │ ├── language │ │ │ │ │ ├── af.json │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── bs.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── cy.json │ │ │ │ │ ├── da.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── fi.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── he.json │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── km.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nb.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── nn.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt.json │ │ │ │ │ ├── ro.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ ├── smj.json │ │ │ │ │ ├── sr.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── tr.json │ │ │ │ │ ├── vi.json │ │ │ │ │ └── zh.json │ │ │ │ ├── library.json │ │ │ │ ├── scripts │ │ │ │ │ └── text.js │ │ │ │ ├── semantics.json │ │ │ │ └── styles │ │ │ │ │ └── text.css │ │ │ ├── H5P.Transition-1.0 │ │ │ │ ├── library.json │ │ │ │ └── transition.js │ │ │ ├── H5PEditor.ColorSelector-1.3 │ │ │ │ ├── library.json │ │ │ │ ├── scripts │ │ │ │ │ ├── color-selector.js │ │ │ │ │ └── spectrum.js │ │ │ │ └── styles │ │ │ │ │ ├── color-selector.css │ │ │ │ │ └── spectrum.css │ │ │ ├── H5PEditor.ImageCoordinateSelector-1.2 │ │ │ │ ├── language │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── cy.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── en.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ └── smj.json │ │ │ │ ├── library.json │ │ │ │ ├── scripts │ │ │ │ │ └── image-coordinate-selector.js │ │ │ │ └── styles │ │ │ │ │ └── image-coordinate-selector.css │ │ │ ├── H5PEditor.ShowWhen-1.0 │ │ │ │ ├── h5p-show-when.css │ │ │ │ ├── h5p-show-when.js │ │ │ │ └── library.json │ │ │ ├── content │ │ │ │ ├── content.json │ │ │ │ └── images │ │ │ │ │ └── image-z5lfWbd6.png │ │ │ └── h5p.json │ │ ├── M2-architecture-statemachines-HS.h5p │ │ ├── M2-architecture-statemachines-HS │ │ │ ├── FontAwesome-4.5 │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── LICENSE.md │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── h5p-font-awesome.min.css │ │ │ │ └── library.json │ │ │ ├── H5P.ImageHotspots-1.9 │ │ │ │ ├── close.svg │ │ │ │ ├── icon.svg │ │ │ │ ├── language │ │ │ │ │ ├── af.json │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── bs.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── da.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── fa.json │ │ │ │ │ ├── fi.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── gl.json │ │ │ │ │ ├── he.json │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── km.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nb.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── nn.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt-br.json │ │ │ │ │ ├── pt.json │ │ │ │ │ ├── ro.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ ├── smj.json │ │ │ │ │ ├── sr.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── tr.json │ │ │ │ │ ├── uk.json │ │ │ │ │ ├── vi.json │ │ │ │ │ ├── zh-hans.json │ │ │ │ │ ├── zh-hant.json │ │ │ │ │ └── zh-tw.json │ │ │ │ ├── library.json │ │ │ │ ├── scripts │ │ │ │ │ ├── hotspot.js │ │ │ │ │ ├── image-hotspots.js │ │ │ │ │ └── popup.js │ │ │ │ ├── semantics.json │ │ │ │ ├── styles │ │ │ │ │ └── image-hotspots.css │ │ │ │ └── upgrades.js │ │ │ ├── H5P.Text-1.1 │ │ │ │ ├── language │ │ │ │ │ ├── af.json │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── bs.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── cy.json │ │ │ │ │ ├── da.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── fi.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── he.json │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── km.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nb.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── nn.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt.json │ │ │ │ │ ├── ro.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ ├── smj.json │ │ │ │ │ ├── sr.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── tr.json │ │ │ │ │ ├── vi.json │ │ │ │ │ └── zh.json │ │ │ │ ├── library.json │ │ │ │ ├── scripts │ │ │ │ │ └── text.js │ │ │ │ ├── semantics.json │ │ │ │ └── styles │ │ │ │ │ └── text.css │ │ │ ├── H5P.Transition-1.0 │ │ │ │ ├── library.json │ │ │ │ └── transition.js │ │ │ ├── H5PEditor.ColorSelector-1.3 │ │ │ │ ├── library.json │ │ │ │ ├── scripts │ │ │ │ │ ├── color-selector.js │ │ │ │ │ └── spectrum.js │ │ │ │ └── styles │ │ │ │ │ ├── color-selector.css │ │ │ │ │ └── spectrum.css │ │ │ ├── H5PEditor.ImageCoordinateSelector-1.2 │ │ │ │ ├── language │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── cy.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── en.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ └── smj.json │ │ │ │ ├── library.json │ │ │ │ ├── scripts │ │ │ │ │ └── image-coordinate-selector.js │ │ │ │ └── styles │ │ │ │ │ └── image-coordinate-selector.css │ │ │ ├── H5PEditor.ShowWhen-1.0 │ │ │ │ ├── h5p-show-when.css │ │ │ │ ├── h5p-show-when.js │ │ │ │ └── library.json │ │ │ ├── content │ │ │ │ ├── content.json │ │ │ │ └── images │ │ │ │ │ └── image-1njucHos-744-247z.png │ │ │ └── h5p.json │ │ ├── M2-architecture-statemachines2-HS.h5p │ │ ├── M2-architecture-statemachines2-HS │ │ │ ├── FontAwesome-4.5 │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── LICENSE.md │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── h5p-font-awesome.min.css │ │ │ │ └── library.json │ │ │ ├── H5P.ImageHotspots-1.9 │ │ │ │ ├── close.svg │ │ │ │ ├── icon.svg │ │ │ │ ├── language │ │ │ │ │ ├── af.json │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── bs.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── da.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── fa.json │ │ │ │ │ ├── fi.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── gl.json │ │ │ │ │ ├── he.json │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── km.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nb.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── nn.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt-br.json │ │ │ │ │ ├── pt.json │ │ │ │ │ ├── ro.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ ├── smj.json │ │ │ │ │ ├── sr.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── tr.json │ │ │ │ │ ├── uk.json │ │ │ │ │ ├── vi.json │ │ │ │ │ ├── zh-hans.json │ │ │ │ │ ├── zh-hant.json │ │ │ │ │ └── zh-tw.json │ │ │ │ ├── library.json │ │ │ │ ├── scripts │ │ │ │ │ ├── hotspot.js │ │ │ │ │ ├── image-hotspots.js │ │ │ │ │ └── popup.js │ │ │ │ ├── semantics.json │ │ │ │ ├── styles │ │ │ │ │ └── image-hotspots.css │ │ │ │ └── upgrades.js │ │ │ ├── H5P.Text-1.1 │ │ │ │ ├── language │ │ │ │ │ ├── af.json │ │ │ │ │ ├── ar.json │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── bs.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── cy.json │ │ │ │ │ ├── da.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── fi.json │ │ │ │ │ ├── fr.json │ │ │ │ │ ├── he.json │ │ │ │ │ ├── hu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ja.json │ │ │ │ │ ├── km.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nb.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── nn.json │ │ │ │ │ ├── pl.json │ │ │ │ │ ├── pt.json │ │ │ │ │ ├── ro.json │ │ │ │ │ ├── ru.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ ├── smj.json │ │ │ │ │ ├── sr.json │ │ │ │ │ ├── sv.json │ │ │ │ │ ├── tr.json │ │ │ │ │ ├── vi.json │ │ │ │ │ └── zh.json │ │ │ │ ├── library.json │ │ │ │ ├── scripts │ │ │ │ │ └── text.js │ │ │ │ ├── semantics.json │ │ │ │ └── styles │ │ │ │ │ └── text.css │ │ │ ├── H5P.Transition-1.0 │ │ │ │ ├── library.json │ │ │ │ └── transition.js │ │ │ ├── H5PEditor.ColorSelector-1.3 │ │ │ │ ├── library.json │ │ │ │ ├── scripts │ │ │ │ │ ├── color-selector.js │ │ │ │ │ └── spectrum.js │ │ │ │ └── styles │ │ │ │ │ ├── color-selector.css │ │ │ │ │ └── spectrum.css │ │ │ ├── H5PEditor.ImageCoordinateSelector-1.2 │ │ │ │ ├── language │ │ │ │ │ ├── bg.json │ │ │ │ │ ├── ca.json │ │ │ │ │ ├── cs.json │ │ │ │ │ ├── cy.json │ │ │ │ │ ├── de.json │ │ │ │ │ ├── el.json │ │ │ │ │ ├── en.json │ │ │ │ │ ├── es-mx.json │ │ │ │ │ ├── es.json │ │ │ │ │ ├── et.json │ │ │ │ │ ├── eu.json │ │ │ │ │ ├── it.json │ │ │ │ │ ├── ko.json │ │ │ │ │ ├── nl.json │ │ │ │ │ ├── sl.json │ │ │ │ │ ├── sma.json │ │ │ │ │ ├── sme.json │ │ │ │ │ └── smj.json │ │ │ │ ├── library.json │ │ │ │ ├── scripts │ │ │ │ │ └── image-coordinate-selector.js │ │ │ │ └── styles │ │ │ │ │ └── image-coordinate-selector.css │ │ │ ├── H5PEditor.ShowWhen-1.0 │ │ │ │ ├── h5p-show-when.css │ │ │ │ ├── h5p-show-when.js │ │ │ │ └── library.json │ │ │ ├── content │ │ │ │ ├── content.json │ │ │ │ └── images │ │ │ │ │ └── image-ZMFBNP9O.png │ │ │ └── h5p.json │ │ ├── M2-modules-designprinciples-ac.h5p │ │ └── M2-modules-designprinciples-ac │ │ │ ├── FontAwesome-4.5 │ │ │ ├── FontAwesome.otf │ │ │ ├── LICENSE.md │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── h5p-font-awesome.min.css │ │ │ └── library.json │ │ │ ├── H5P.Accordion-1.0 │ │ │ ├── h5p-accordion.css │ │ │ ├── h5p-accordion.js │ │ │ ├── icon.svg │ │ │ ├── language │ │ │ │ ├── af.json │ │ │ │ ├── ar.json │ │ │ │ ├── bg.json │ │ │ │ ├── bs.json │ │ │ │ ├── ca.json │ │ │ │ ├── cs.json │ │ │ │ ├── da.json │ │ │ │ ├── de.json │ │ │ │ ├── el.json │ │ │ │ ├── es-mx.json │ │ │ │ ├── es.json │ │ │ │ ├── et.json │ │ │ │ ├── eu.json │ │ │ │ ├── fi.json │ │ │ │ ├── fr.json │ │ │ │ ├── he.json │ │ │ │ ├── hu.json │ │ │ │ ├── it.json │ │ │ │ ├── ja.json │ │ │ │ ├── ko.json │ │ │ │ ├── nb.json │ │ │ │ ├── nl.json │ │ │ │ ├── nn.json │ │ │ │ ├── pl.json │ │ │ │ ├── pt-br.json │ │ │ │ ├── pt.json │ │ │ │ ├── ro.json │ │ │ │ ├── ru.json │ │ │ │ ├── sl.json │ │ │ │ ├── sma.json │ │ │ │ ├── sme.json │ │ │ │ ├── smj.json │ │ │ │ ├── sr.json │ │ │ │ ├── sv.json │ │ │ │ ├── tr.json │ │ │ │ ├── uk.json │ │ │ │ ├── vi.json │ │ │ │ ├── zh-cn.json │ │ │ │ ├── zh-hans.json │ │ │ │ └── zh-hant.json │ │ │ ├── library.json │ │ │ └── semantics.json │ │ │ ├── H5P.AdvancedText-1.1 │ │ │ ├── language │ │ │ │ ├── af.json │ │ │ │ ├── ar.json │ │ │ │ ├── bg.json │ │ │ │ ├── ca.json │ │ │ │ ├── cs.json │ │ │ │ ├── da.json │ │ │ │ ├── de.json │ │ │ │ ├── el.json │ │ │ │ ├── es-mx.json │ │ │ │ ├── es.json │ │ │ │ ├── et.json │ │ │ │ ├── eu.json │ │ │ │ ├── fi.json │ │ │ │ ├── fr.json │ │ │ │ ├── he.json │ │ │ │ ├── hu.json │ │ │ │ ├── it.json │ │ │ │ ├── ja.json │ │ │ │ ├── km.json │ │ │ │ ├── ko.json │ │ │ │ ├── nb.json │ │ │ │ ├── nl.json │ │ │ │ ├── nn.json │ │ │ │ ├── pl.json │ │ │ │ ├── pt.json │ │ │ │ ├── ro.json │ │ │ │ ├── ru.json │ │ │ │ ├── sl.json │ │ │ │ ├── sma.json │ │ │ │ ├── sme.json │ │ │ │ ├── smj.json │ │ │ │ ├── sr.json │ │ │ │ ├── sv.json │ │ │ │ ├── tr.json │ │ │ │ ├── uk.json │ │ │ │ └── vi.json │ │ │ ├── library.json │ │ │ ├── semantics.json │ │ │ ├── text.css │ │ │ └── text.js │ │ │ ├── content │ │ │ └── content.json │ │ │ └── h5p.json │ ├── hi-coffee-icon.svg │ ├── hi-info-icon.svg │ ├── hi-note-icon.svg │ ├── hi-prerequesite-icon.svg │ ├── hi-reading-icon.svg │ ├── hi-star-icon.svg │ ├── hi-target-icon.svg │ ├── hi-tip-icon.svg │ ├── hi-warn-icon.svg │ ├── ibc-icon.svg │ ├── ida-timeline.png │ ├── ida-timeline.svg │ ├── ignitecli-icon.svg │ ├── logo-bw.svg │ ├── logo.svg │ ├── lp-images │ │ ├── cosmos_dev_portal_module-03-lp-new.png │ │ ├── cosmos_dev_portal_module-04-lp.png │ │ ├── cosmos_dev_portal_module-05-lp.png │ │ ├── go-lp.svg │ │ ├── green-planet.svg │ │ ├── ida_dev_portal_lp_background-00.png │ │ ├── ida_dev_portal_lp_hero-02.png │ │ ├── ida_dev_portal_lp_hero-03.png │ │ ├── ida_dev_portal_lp_hero-04-b.png │ │ ├── ida_dev_portal_lp_hero-04.png │ │ ├── ida_dev_portal_lp_hero-05.png │ │ ├── ida_dev_portal_lp_hero-06.png │ │ ├── ida_dev_portal_lp_hero-07.png │ │ ├── ida_dev_portal_lp_hero-08.png │ │ ├── ida_dev_portal_lp_hero-09.png │ │ ├── moving-objects.svg │ │ └── universe.png │ ├── mstile-150x150.png │ ├── planet-collection.svg │ ├── planet-pod.svg │ ├── planets-large.svg │ ├── safari-pinned-tab.svg │ ├── signup-mails.svg │ ├── site.webmanifest │ ├── success-mails.svg │ ├── support-image.png │ ├── tendermint-icon.svg │ └── tutorial-bg-image.png ├── redirects └── styles │ └── index.styl ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── TECHNICAL-SETUP.md ├── academy ├── 0-welcome │ └── index.md ├── 1-what-is-cosmos │ ├── 1-blockchain-and-cosmos.md │ ├── 2-cosmos-ecosystem.md │ ├── 3-interchain-use-cases.md │ ├── 4-atom-staking.md │ ├── images │ │ ├── constellation.png │ │ ├── hub-zones.png │ │ ├── keplr-account-created.png │ │ ├── keplr-accruing-good-rewards.png │ │ ├── keplr-accruing-rewards.png │ │ ├── keplr-add-confirmation.png │ │ ├── keplr-address-copiable.png │ │ ├── keplr-address-zone.png │ │ ├── keplr-as-extension.png │ │ ├── keplr-chain-addresses.png │ │ ├── keplr-claim-rewards.png │ │ ├── keplr-cosmos-address-copied.png │ │ ├── keplr-create-menu.png │ │ ├── keplr-dashboard-chains.png │ │ ├── keplr-dashboard-empty.png │ │ ├── keplr-dashboard-stake.png │ │ ├── keplr-delegate-confirm-fee.png │ │ ├── keplr-delegate-confirm.png │ │ ├── keplr-delegate-params.png │ │ ├── keplr-in-marketplace.png │ │ ├── keplr-increased-available.png │ │ ├── keplr-link-chains.png │ │ ├── keplr-mnemonic-recall-prompt.png │ │ ├── keplr-mnemonic-step.png │ │ ├── keplr-name-wallet.png │ │ ├── keplr-stake-chains.png │ │ ├── keplr-undertand-warning.png │ │ ├── keplr-use-recovery-phrase.png │ │ ├── keplr-validator-list.png │ │ ├── keplr-validator-selected.png │ │ ├── keplr-wallet-link-out.png │ │ ├── keplr-with-atom-proper.png │ │ ├── keplr-with-atom.png │ │ ├── kraken-add-address.png │ │ ├── kraken-exchange-params.png │ │ ├── kraken-one-atom.png │ │ ├── mintscan-crediting-tx.png │ │ └── timeline.png │ └── index.md ├── 2-cosmos-concepts │ ├── 1-architecture.md │ ├── 10-events.md │ ├── 11-context.md │ ├── 12-testing.md │ ├── 13-relayer-intro.md │ ├── 14-interchain-security.md │ ├── 15-bridges.md │ ├── 16-migrations.md │ ├── 2-accounts.md │ ├── 3-transactions.md │ ├── 4-messages.md │ ├── 5-modules.md │ ├── 6-protobuf.md │ ├── 7-multistore-keepers.md │ ├── 8-base-app.md │ ├── 9-queries.md │ ├── images │ │ ├── .gitkeep │ │ ├── ABCI_3.png │ │ ├── IBC-relay.png │ │ ├── abci-messages.jpg │ │ ├── architecture-overview.jpg │ │ ├── architecture_overview.png │ │ ├── delayed-execution-model.png │ │ ├── delayed-execution-simple.jpg │ │ ├── delegated-reward.png │ │ ├── hd-accounts.png │ │ ├── interchain_security.png │ │ ├── keeper.png │ │ ├── message_processing.png │ │ ├── minting-validation.png │ │ ├── module_overview.png │ │ ├── next-validator-pick.png │ │ ├── signature_schemes.png │ │ ├── state_beginBlock.png │ │ ├── state_checkTx.png │ │ ├── state_commit.png │ │ ├── state_deliverTx.png │ │ ├── state_machine_1.png │ │ ├── state_machine_2.png │ │ ├── state_updates.png │ │ ├── states.png │ │ └── upgrades.png │ └── index.md ├── 3-ibc │ ├── 1-what-is-ibc.md │ ├── 10-ibc-mw-develop.md │ ├── 11-ibc-mw-integrate.md │ ├── 12-ibc-tooling.md │ ├── 2-connections.md │ ├── 3-channels.md │ ├── 4-clients.md │ ├── 5-light-client-dev.md │ ├── 6-solomachine.md │ ├── 7-token-transfer.md │ ├── 8-ica.md │ ├── 9-ibc-mw-intro.md │ ├── images │ │ ├── app.png │ │ ├── applicationlogic.png │ │ ├── channelhandshake.png │ │ ├── channelsstate.png │ │ ├── connectionstate.png │ │ ├── cosmoschannels.png │ │ ├── cosmosconnections.png │ │ ├── cosmososmasischannels.png │ │ ├── dataflow.png │ │ ├── detailscosmoszone.png │ │ ├── ftstx1.png │ │ ├── ftstx2.png │ │ ├── ibchandler.png │ │ ├── ibcmodule.png │ │ ├── ibcoverview.png │ │ ├── icaoverview.png │ │ ├── icaregister.png │ │ ├── icasendtx.png │ │ ├── internetofchains.png │ │ ├── iobscan1.png │ │ ├── iobscan2.png │ │ ├── lightclient.png │ │ ├── mapofzones1.png │ │ ├── mapofzones2.png │ │ ├── mintscanIBC.png │ │ ├── mintscanchanneloevrview.png │ │ ├── mintscanosmosis1.png │ │ ├── mintscanosmosis2.png │ │ ├── mintscanoverview.png │ │ ├── mostactivezones.png │ │ ├── onchannel1.png │ │ ├── onchannel2.png │ │ ├── onchannel3.png │ │ ├── onchannel4.png │ │ ├── onchannel5.png │ │ ├── open_ack.png │ │ ├── open_confirm.png │ │ ├── open_init.png │ │ ├── open_try.png │ │ ├── packetflow.png │ │ ├── path.png │ │ ├── sinktosource.png │ │ ├── solomachine.png │ │ ├── sourcechain.png │ │ ├── sourcesinklogic.png │ │ ├── sourcetosink.png │ │ ├── tao.png │ │ └── transferoverview.png │ └── index.md ├── archive-content │ ├── 3-my-own-chain │ │ ├── cosmwasm.md │ │ ├── images │ │ │ ├── faucet-request-1.png │ │ │ ├── go_test_debug_suite_test.png │ │ │ ├── ignite-vue-keplr-no-assets.png │ │ │ └── ignite-vue-keplr-with-tokens.png │ │ ├── index.md │ │ ├── node-api-and-cli.md │ │ └── setup.md │ ├── course-ida │ │ ├── discord-info.md │ │ ├── images │ │ │ ├── discord-auto.png │ │ │ ├── discord-channel.png │ │ │ ├── discord-close-notification.png │ │ │ ├── discord-close.png │ │ │ ├── discord-question-add.png │ │ │ ├── discord-question.png │ │ │ └── discord-tricia-pm.png │ │ ├── landingpages │ │ │ ├── week0-lp.md │ │ │ ├── week1-lp.md │ │ │ ├── week2-lp.md │ │ │ ├── week3-lp.md │ │ │ ├── week4-lp.md │ │ │ ├── week5-lp.md │ │ │ └── week6-lp.md │ │ ├── quiz-week1.md │ │ ├── setup.md │ │ └── welcome │ │ │ └── index.md │ ├── ibc-dev │ │ ├── custom-ibc-application.md │ │ └── ibc-app-app-vs-ica.md │ └── my-own-chain-exer │ │ ├── can-play-exer.md │ │ ├── create-handling-exer.md │ │ ├── create-message-exer.md │ │ ├── events-exer.md │ │ ├── exercise-intro.md │ │ ├── game-fifo-exer.md │ │ ├── game-wager-exer.md │ │ ├── gas-meter-exer.md │ │ ├── migration-exer.md │ │ ├── play-game-exer.md │ │ ├── stored-game-exer.md │ │ ├── wager-denom-exer.md │ │ └── week2-exercise.md └── whats-next │ └── index.md ├── build-versions.sh ├── check-config.js ├── create-ida-file.sh ├── deploy-preview.png ├── docs ├── b9lab-processes.md ├── deployment.md └── platform-features.md ├── feature-test ├── images │ ├── constellation.png │ └── menu.png └── index.md ├── hands-on-exercise ├── 0-native │ ├── 1-preparation.md │ ├── 2-build-module.md │ ├── 3-add-game.md │ ├── 4-add-message.md │ ├── 5-add-query.md │ ├── images │ │ └── cosmos_dev_portal_module-04-lp.png │ └── index.md ├── 1-ignite-cli │ ├── 1-ignitecli.md │ ├── 2-exercise-intro.md │ ├── 3-stored-game.md │ ├── 4-create-message.md │ ├── 5-create-handling.md │ ├── 6-play-game.md │ ├── 7-events.md │ ├── 8-game-winner.md │ ├── images │ │ ├── faucet-request-1.png │ │ ├── go_test_debug_breakpoint.png │ │ ├── go_test_debug_button.png │ │ ├── go_test_debug_event_attributes.png │ │ ├── go_test_debug_stopped_at_breakpoint.png │ │ ├── ignite-vue-keplr-no-assets.png │ │ └── ignite-vue-keplr-with-tokens.png │ └── index.md ├── 2-ignite-cli-adv │ ├── 1-game-deadline.md │ ├── 10-wager-denom.md │ ├── 2-move-count.md │ ├── 3-game-fifo.md │ ├── 4-game-forfeit.md │ ├── 5-game-wager.md │ ├── 6-payment-winning.md │ ├── 7-integration-tests.md │ ├── 8-gas-meter.md │ ├── 9-can-play.md │ ├── images │ │ ├── go_test_debug_suite.png │ │ └── go_test_debug_suite_test.png │ └── index.md ├── 3-cosmjs-adv │ ├── 1-cosmjs-objects.md │ ├── 2-cosmjs-messages.md │ ├── 3-external-gui.md │ ├── 4-cosmjs-gui.md │ ├── 5-server-side.md │ ├── images │ │ ├── black-moves-first-piece.png │ │ ├── checkers-access-address.png │ │ ├── checkers-add-support.png │ │ ├── list-games-1.png │ │ ├── list-keplr-beta-support.png │ │ ├── show-game-1-move.png │ │ └── window-create-game.png │ └── index.md ├── 4-run-in-prod │ ├── 1-run-prod-docker.md │ ├── 2-migration-info.md │ ├── 3-add-leaderboard.md │ ├── 4-migration-leaderboard.md │ ├── 5-migration-prod.md │ └── index.md └── 5-ibc-adv │ ├── 1-go-relayer.md │ ├── 2-hermes-relayer.md │ ├── 3-ibc-app-intro.md │ ├── 4-ibc-app-steps.md │ ├── 5-ibc-app-packets.md │ ├── 6-ibc-app-checkers.md │ ├── 7-ibc-app-leaderboard.md │ ├── images │ ├── middleware-stack.png │ └── packetflow.png │ └── index.md ├── ida-customizations ├── .vuepress │ └── config.js ├── README.md ├── academy │ ├── 0-welcome │ │ └── index.md │ └── whats-next │ │ └── index.md ├── docs │ └── emails │ │ └── final-exam │ │ ├── email-exam-deadline-reminder.md │ │ ├── email-exam-failed.md │ │ ├── email-exam-ibc-detected.md │ │ ├── email-exam-open.md │ │ └── email-exam-passed.md ├── ida-course │ ├── 0-blockchain-basics │ │ ├── 1-blockchain.md │ │ ├── 2-history.md │ │ ├── 3-deployment-patterns.md │ │ ├── 4-consensus.md │ │ ├── 5-crypto.md │ │ ├── 6-quiz.md │ │ ├── 6-quiz.txt │ │ └── images │ │ │ ├── 00_02_p2p_network_dark.png │ │ │ ├── 00_03_network_structures_dark_notitle-01.png │ │ │ ├── 00_04_double_spending-01.png │ │ │ ├── 00_05_genesis_block_dark_notitle-01.png │ │ │ ├── 00_06_byzantine_generals_dark_notitle-01.png │ │ │ ├── 00_07_delegated_pos-01.png │ │ │ ├── 00_08_public_vs_private_comparison-01.png │ │ │ ├── 00_09_computing_paradigms.png │ │ │ ├── 00_10_public_vs_private_comparison_table.png │ │ │ ├── 00_11_rsa_keys_v1.png │ │ │ ├── 00_12_digital_signature_keys_v2.png │ │ │ ├── 00_13_mix_n_match_keys_v3.png │ │ │ ├── 00_14_double_spending_v2-01.png │ │ │ ├── 00_15_ethereum_virtual_machine.png │ │ │ ├── 00_16_bitcoin_block_headers_literal.png │ │ │ └── 00_17_mining-01.png │ ├── LPs │ │ ├── week-0 │ │ │ └── index.md │ │ ├── week-1 │ │ │ └── index.md │ │ ├── week-2 │ │ │ └── index.md │ │ ├── week-3 │ │ │ └── index.md │ │ ├── week-4 │ │ │ └── index.md │ │ ├── week-5 │ │ │ └── index.md │ │ ├── week-6 │ │ │ └── index.md │ │ └── week-7 │ │ │ └── index.md │ ├── discord-info.md │ ├── exercise-week2.md │ ├── exercise-week3.md │ ├── exercise-week4.md │ ├── exercise-week5.md │ ├── exercise-week6.md │ ├── final-exam │ │ └── index.md │ ├── images │ │ ├── discord-auto.png │ │ ├── discord-channel.png │ │ ├── discord-close-notification.png │ │ ├── discord-close.png │ │ ├── discord-howto-supportforum.jpg │ │ ├── discord-howto-supportforum2023.png │ │ ├── discord-ida-c3-channels.jpg │ │ ├── discord-ida-c5-channels.png │ │ ├── discord-question-add.png │ │ ├── discord-question.png │ │ └── discord-tricia-pm.png │ └── quiz-week1.md └── versions.txt ├── lgtm.yml ├── mlc_config.json ├── netlify.toml ├── package-lock.json ├── package.json ├── tutorials ├── 1-tech-terms │ └── index.md ├── 2-setup │ └── index.md ├── 3-run-node │ └── index.md ├── 4-golang-intro │ ├── 1-install.md │ ├── 2-basics.md │ ├── 3-interfaces.md │ ├── 4-control.md │ ├── 5-arrays.md │ ├── 6-packages.md │ ├── 7-concurrency.md │ └── index.md ├── 5-docker-intro │ └── index.md ├── 6-ibc-dev │ ├── images │ │ └── ibc_token.png │ └── index.md ├── 7-cosmjs │ ├── 1-cosmjs-intro.md │ ├── 2-first-steps.md │ ├── 3-multi-msg.md │ ├── 4-with-keplr.md │ ├── 5-create-custom.md │ ├── images │ │ ├── cosmjs-tree.png │ │ ├── keplr_send_to_faucet.png │ │ ├── keplr_share_account.png │ │ └── keplr_testnet_addition.png │ └── index.md ├── 8-understand-sdk-modules │ ├── 1-authz.md │ ├── 2-feegrant.md │ ├── 3-group.md │ ├── 4-gov.md │ └── index.md ├── 9-path-to-prod │ ├── 1-overview.md │ ├── 2-software.md │ ├── 3-keys.md │ ├── 4-genesis.md │ ├── 5-network.md │ ├── 6-run.md │ ├── 7-migration.md │ └── index.md └── how-to-use-ipfs │ └── index.md ├── versions.md └── versions.txt /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # CODEOWNERS: https://help.github.com/articles/about-codeowners/ 2 | 3 | # Docs 4 | *.md @citmc @nooomski @xavierlepretre @coldice 5 | 6 | # Primary repo maintainers 7 | * @coldice @xavierlepretre @gioelebonifetto @8bitpal 8 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule ".vuepress/theme"] 2 | path = .vuepress/theme 3 | url = https://github.com/b9lab/vuepress-theme-cosmos.git 4 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- 1 | linters: 2 | enable-all: true 3 | disable: 4 | - golint 5 | - unparam 6 | - gochecknoinits 7 | - gochecknoglobals 8 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 14.18.2 -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["DavidAnson.vscode-markdownlint"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/spellright.dict: -------------------------------------------------------------------------------- 1 | Golang 2 | Homebrew 3 | Keplr 4 | Protobuf 5 | Tendermint 6 | testnet 7 | Vue.js 8 | multistore 9 | ignitecli.md 10 | create-message.md 11 | protobuf.md 12 | CosmJS 13 | Node.js 14 | mainnet 15 | -------------------------------------------------------------------------------- /.vuepress/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /.vuepress/public/android-chrome-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/android-chrome-256x256.png -------------------------------------------------------------------------------- /.vuepress/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /.vuepress/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/apple-touch-icon.png -------------------------------------------------------------------------------- /.vuepress/public/article-banner-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/article-banner-01.png -------------------------------------------------------------------------------- /.vuepress/public/article-banner-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/article-banner-02.png -------------------------------------------------------------------------------- /.vuepress/public/article-banner-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/article-banner-03.jpg -------------------------------------------------------------------------------- /.vuepress/public/article-banner-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/article-banner-04.jpg -------------------------------------------------------------------------------- /.vuepress/public/brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/brand.png -------------------------------------------------------------------------------- /.vuepress/public/cosmos_dev_portal_module-02-lp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/cosmos_dev_portal_module-02-lp.png -------------------------------------------------------------------------------- /.vuepress/public/cosmos_dev_portal_module-03-lp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/cosmos_dev_portal_module-03-lp.png -------------------------------------------------------------------------------- /.vuepress/public/cosmos_dev_portal_module-04-lp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/cosmos_dev_portal_module-04-lp.png -------------------------------------------------------------------------------- /.vuepress/public/cosmos_dev_portal_whats_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/cosmos_dev_portal_whats_next.png -------------------------------------------------------------------------------- /.vuepress/public/discord-support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/discord-support.png -------------------------------------------------------------------------------- /.vuepress/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/favicon-16x16.png -------------------------------------------------------------------------------- /.vuepress/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/favicon-32x32.png -------------------------------------------------------------------------------- /.vuepress/public/graphics-sdk-course-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/graphics-sdk-course-1.png -------------------------------------------------------------------------------- /.vuepress/public/graphics-sdk-course.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/graphics-sdk-course.png -------------------------------------------------------------------------------- /.vuepress/public/h5p/M0-quiz-blockchain-intro.h5p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M0-quiz-blockchain-intro.h5p -------------------------------------------------------------------------------- /.vuepress/public/h5p/M0-quiz-blockchain-intro/FontAwesome-4.5/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M0-quiz-blockchain-intro/FontAwesome-4.5/FontAwesome.otf -------------------------------------------------------------------------------- /.vuepress/public/h5p/M0-quiz-blockchain-intro/FontAwesome-4.5/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M0-quiz-blockchain-intro/FontAwesome-4.5/fontawesome-webfont.eot -------------------------------------------------------------------------------- /.vuepress/public/h5p/M0-quiz-blockchain-intro/FontAwesome-4.5/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M0-quiz-blockchain-intro/FontAwesome-4.5/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /.vuepress/public/h5p/M0-quiz-blockchain-intro/FontAwesome-4.5/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M0-quiz-blockchain-intro/FontAwesome-4.5/fontawesome-webfont.woff -------------------------------------------------------------------------------- /.vuepress/public/h5p/M0-quiz-blockchain-intro/FontAwesome-4.5/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M0-quiz-blockchain-intro/FontAwesome-4.5/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /.vuepress/public/h5p/M0-quiz-blockchain-intro/H5P.FontIcons-1.0/fonts/h5p.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M0-quiz-blockchain-intro/H5P.FontIcons-1.0/fonts/h5p.eot -------------------------------------------------------------------------------- /.vuepress/public/h5p/M0-quiz-blockchain-intro/H5P.FontIcons-1.0/fonts/h5p.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M0-quiz-blockchain-intro/H5P.FontIcons-1.0/fonts/h5p.ttf -------------------------------------------------------------------------------- /.vuepress/public/h5p/M0-quiz-blockchain-intro/H5P.FontIcons-1.0/fonts/h5p.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M0-quiz-blockchain-intro/H5P.FontIcons-1.0/fonts/h5p.woff -------------------------------------------------------------------------------- /.vuepress/public/h5p/M0-quiz-blockchain-intro/H5P.FontIcons-1.0/library.json: -------------------------------------------------------------------------------- 1 | {"title":"H5P.FontIcons","majorVersion":1,"minorVersion":0,"patchVersion":6,"runnable":0,"machineName":"H5P.FontIcons","author":"Joubel","preloadedCss":[{"path":"styles/h5p-font-icons.css"}]} 2 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M0-quiz-blockchain-intro/H5P.JoubelUI-1.3/fonts/joubel.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M0-quiz-blockchain-intro/H5P.JoubelUI-1.3/fonts/joubel.eot -------------------------------------------------------------------------------- /.vuepress/public/h5p/M0-quiz-blockchain-intro/H5P.JoubelUI-1.3/fonts/joubel.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M0-quiz-blockchain-intro/H5P.JoubelUI-1.3/fonts/joubel.ttf -------------------------------------------------------------------------------- /.vuepress/public/h5p/M0-quiz-blockchain-intro/H5P.JoubelUI-1.3/fonts/joubel.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M0-quiz-blockchain-intro/H5P.JoubelUI-1.3/fonts/joubel.woff -------------------------------------------------------------------------------- /.vuepress/public/h5p/M0-quiz-blockchain-intro/H5P.MultiChoice-1.14/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M0-quiz-blockchain-intro/H5P.MultiChoice-1.14/fonts/icomoon.eot -------------------------------------------------------------------------------- /.vuepress/public/h5p/M0-quiz-blockchain-intro/H5P.MultiChoice-1.14/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M0-quiz-blockchain-intro/H5P.MultiChoice-1.14/fonts/icomoon.ttf -------------------------------------------------------------------------------- /.vuepress/public/h5p/M0-quiz-blockchain-intro/H5P.MultiChoice-1.14/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M0-quiz-blockchain-intro/H5P.MultiChoice-1.14/fonts/icomoon.woff -------------------------------------------------------------------------------- /.vuepress/public/h5p/M0-quiz-blockchain-intro/H5PEditor.ShowWhen-1.0/h5p-show-when.css: -------------------------------------------------------------------------------- 1 | .h5p-editor-widget-show-when.hidden { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling.h5p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling.h5p -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/FontAwesome-4.5/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/FontAwesome-4.5/FontAwesome.otf -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/FontAwesome-4.5/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/FontAwesome-4.5/fontawesome-webfont.eot -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/FontAwesome-4.5/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/FontAwesome-4.5/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/af.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/ar.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"النص" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/bg.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Текст" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/cs.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/el.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Κείμενο" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/es-mx.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texto" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texto" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/eu.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Testua" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Teksti" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texte" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/he.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/hu.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Testo" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/ja.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"テキスト" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/km.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "អត្ថបទ" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"텍스트" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/nb.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/nn.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/pl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/pt.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texto" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/ro.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/sl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Besedilo" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/sma.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/sme.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/smj.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/sr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/sv.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/tr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/uk.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlochcianandCosmos-Scaling/H5P.AdvancedText-1.1/language/vi.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC.h5p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC.h5p -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/af.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/ar.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"النص" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/bg.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Текст" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/cs.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/el.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Κείμενο" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/es-mx.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texto" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texto" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/eu.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Testua" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Teksti" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texte" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/he.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/hu.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Testo" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/ja.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"テキスト" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/km.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "អត្ថបទ" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"텍스트" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/nb.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/nn.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/pl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/pt.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texto" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/ro.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/sl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Besedilo" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/sma.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/sme.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/smj.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/sr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/sv.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/tr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/uk.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-BlockchainandCosmos-skinnytendermint-AC/H5P.AdvancedText-1.1/language/vi.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC.h5p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M1-Ecosystem-SDK-AC.h5p -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/FontAwesome-4.5/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M1-Ecosystem-SDK-AC/FontAwesome-4.5/FontAwesome.otf -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/FontAwesome-4.5/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M1-Ecosystem-SDK-AC/FontAwesome-4.5/fontawesome-webfont.eot -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/FontAwesome-4.5/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M1-Ecosystem-SDK-AC/FontAwesome-4.5/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/FontAwesome-4.5/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M1-Ecosystem-SDK-AC/FontAwesome-4.5/fontawesome-webfont.woff -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/FontAwesome-4.5/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M1-Ecosystem-SDK-AC/FontAwesome-4.5/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/af.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/ar.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"النص" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/bg.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Текст" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/cs.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/el.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Κείμενο" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/es-mx.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texto" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texto" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/eu.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Testua" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Teksti" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texte" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/he.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/hu.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Testo" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/ja.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"テキスト" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/km.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "អត្ថបទ" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"텍스트" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/nb.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/nn.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/pl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/pt.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texto" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/ro.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/sl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Besedilo" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/sma.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/sme.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/smj.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/sr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/sv.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/tr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/uk.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-Ecosystem-SDK-AC/H5P.AdvancedText-1.1/language/vi.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS.h5p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M1-ecosystem-constellation-HS.h5p -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/FontAwesome-4.5/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M1-ecosystem-constellation-HS/FontAwesome-4.5/FontAwesome.otf -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/af.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/ar.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"النص" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/bg.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Текст" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/bs.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/cs.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/cy.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Testun" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/el.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Κείμενο" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/es-mx.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texto" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texto" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/eu.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Testua" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Teksti" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texte" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/he.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/hu.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Testo" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/ja.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"テキスト" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/km.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "អត្ថបទ" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"텍스트" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/nb.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/nn.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/pl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/pt.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Mensagem" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/ro.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/sl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Besedilo" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/sma.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/sme.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/smj.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/sr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/sv.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/tr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/vi.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5P.Text-1.1/language/zh.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "文字" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5PEditor.ImageCoordinateSelector-1.2/language/bg.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Преоразмеряване" 4 | } 5 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5PEditor.ImageCoordinateSelector-1.2/language/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Redimensiona" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5PEditor.ImageCoordinateSelector-1.2/language/cs.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Změnit velikost" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5PEditor.ImageCoordinateSelector-1.2/language/cy.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Ailfeintio" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5PEditor.ImageCoordinateSelector-1.2/language/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Größe ändern" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5PEditor.ImageCoordinateSelector-1.2/language/el.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Αλλαγή μεγέθους" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5PEditor.ImageCoordinateSelector-1.2/language/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Resize" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5PEditor.ImageCoordinateSelector-1.2/language/es-mx.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Cambiar tamaño" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5PEditor.ImageCoordinateSelector-1.2/language/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Cambiar tamaño" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5PEditor.ImageCoordinateSelector-1.2/language/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Muuda suurust" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5PEditor.ImageCoordinateSelector-1.2/language/eu.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Egokitu tamaina" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5PEditor.ImageCoordinateSelector-1.2/language/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Ridimensiona" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5PEditor.ImageCoordinateSelector-1.2/language/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "크기 재조정" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5PEditor.ImageCoordinateSelector-1.2/language/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Herschalen" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5PEditor.ImageCoordinateSelector-1.2/language/sl.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Spremeni velikost" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5PEditor.ImageCoordinateSelector-1.2/language/sma.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Resize" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5PEditor.ImageCoordinateSelector-1.2/language/sme.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Resize" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5PEditor.ImageCoordinateSelector-1.2/language/smj.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Resize" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/H5PEditor.ShowWhen-1.0/h5p-show-when.css: -------------------------------------------------------------------------------- 1 | .h5p-editor-widget-show-when.hidden { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1-ecosystem-constellation-HS/content/images/image-3zHrTkiC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M1-ecosystem-constellation-HS/content/images/image-3zHrTkiC.png -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs.h5p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M1_zones_hubs.h5p -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/FontAwesome-4.5/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M1_zones_hubs/FontAwesome-4.5/FontAwesome.otf -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/FontAwesome-4.5/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M1_zones_hubs/FontAwesome-4.5/fontawesome-webfont.eot -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/FontAwesome-4.5/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M1_zones_hubs/FontAwesome-4.5/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/FontAwesome-4.5/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M1_zones_hubs/FontAwesome-4.5/fontawesome-webfont.woff -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/FontAwesome-4.5/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M1_zones_hubs/FontAwesome-4.5/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/af.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/ar.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"النص" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/bg.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Текст" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/bs.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/cs.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/cy.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Testun" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/el.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Κείμενο" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/es-mx.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texto" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texto" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/eu.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Testua" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Teksti" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texte" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/he.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/hu.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Testo" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/ja.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"テキスト" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/km.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "អត្ថបទ" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"텍스트" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/nb.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/nn.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/pl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/pt.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Mensagem" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/ro.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/sl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Besedilo" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/sma.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/sme.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/smj.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/sr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/sv.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/tr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/vi.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5P.Text-1.1/language/zh.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "文字" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5PEditor.ImageCoordinateSelector-1.2/language/bg.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Преоразмеряване" 4 | } 5 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5PEditor.ImageCoordinateSelector-1.2/language/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Redimensiona" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5PEditor.ImageCoordinateSelector-1.2/language/cs.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Změnit velikost" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5PEditor.ImageCoordinateSelector-1.2/language/cy.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Ailfeintio" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5PEditor.ImageCoordinateSelector-1.2/language/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Größe ändern" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5PEditor.ImageCoordinateSelector-1.2/language/el.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Αλλαγή μεγέθους" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5PEditor.ImageCoordinateSelector-1.2/language/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Resize" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5PEditor.ImageCoordinateSelector-1.2/language/es-mx.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Cambiar tamaño" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5PEditor.ImageCoordinateSelector-1.2/language/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Cambiar tamaño" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5PEditor.ImageCoordinateSelector-1.2/language/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Muuda suurust" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5PEditor.ImageCoordinateSelector-1.2/language/eu.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Egokitu tamaina" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5PEditor.ImageCoordinateSelector-1.2/language/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Ridimensiona" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5PEditor.ImageCoordinateSelector-1.2/language/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "크기 재조정" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5PEditor.ImageCoordinateSelector-1.2/language/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Herschalen" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5PEditor.ImageCoordinateSelector-1.2/language/sl.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Spremeni velikost" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5PEditor.ImageCoordinateSelector-1.2/language/sma.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Resize" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5PEditor.ImageCoordinateSelector-1.2/language/sme.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Resize" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5PEditor.ImageCoordinateSelector-1.2/language/smj.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Resize" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/H5PEditor.ShowWhen-1.0/h5p-show-when.css: -------------------------------------------------------------------------------- 1 | .h5p-editor-widget-show-when.hidden { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M1_zones_hubs/content/images/image-sTWSA-mx-7T9i39Uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M1_zones_hubs/content/images/image-sTWSA-mx-7T9i39Uy.png -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS.h5p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M2-accounts-secp-HS.h5p -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/FontAwesome-4.5/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M2-accounts-secp-HS/FontAwesome-4.5/FontAwesome.otf -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/FontAwesome-4.5/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M2-accounts-secp-HS/FontAwesome-4.5/fontawesome-webfont.eot -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/FontAwesome-4.5/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M2-accounts-secp-HS/FontAwesome-4.5/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/FontAwesome-4.5/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M2-accounts-secp-HS/FontAwesome-4.5/fontawesome-webfont.woff -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/FontAwesome-4.5/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M2-accounts-secp-HS/FontAwesome-4.5/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/af.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/ar.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"النص" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/bg.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Текст" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/bs.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/cs.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/cy.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Testun" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/el.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Κείμενο" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/es-mx.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texto" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texto" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/eu.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Testua" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Teksti" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texte" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/he.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/hu.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Testo" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/ja.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"テキスト" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/km.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "អត្ថបទ" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"텍스트" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/nb.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/nn.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/pl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/pt.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Mensagem" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/ro.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/sl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Besedilo" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/sma.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/sme.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/smj.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/sr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/sv.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/tr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/vi.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5P.Text-1.1/language/zh.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "文字" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5PEditor.ImageCoordinateSelector-1.2/language/bg.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Преоразмеряване" 4 | } 5 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5PEditor.ImageCoordinateSelector-1.2/language/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Redimensiona" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5PEditor.ImageCoordinateSelector-1.2/language/cs.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Změnit velikost" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5PEditor.ImageCoordinateSelector-1.2/language/cy.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Ailfeintio" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5PEditor.ImageCoordinateSelector-1.2/language/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Größe ändern" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5PEditor.ImageCoordinateSelector-1.2/language/el.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Αλλαγή μεγέθους" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5PEditor.ImageCoordinateSelector-1.2/language/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Resize" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5PEditor.ImageCoordinateSelector-1.2/language/es-mx.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Cambiar tamaño" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5PEditor.ImageCoordinateSelector-1.2/language/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Cambiar tamaño" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5PEditor.ImageCoordinateSelector-1.2/language/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Muuda suurust" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5PEditor.ImageCoordinateSelector-1.2/language/eu.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Egokitu tamaina" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5PEditor.ImageCoordinateSelector-1.2/language/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Ridimensiona" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5PEditor.ImageCoordinateSelector-1.2/language/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "크기 재조정" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5PEditor.ImageCoordinateSelector-1.2/language/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Herschalen" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5PEditor.ImageCoordinateSelector-1.2/language/sl.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Spremeni velikost" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5PEditor.ImageCoordinateSelector-1.2/language/sma.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Resize" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5PEditor.ImageCoordinateSelector-1.2/language/sme.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Resize" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5PEditor.ImageCoordinateSelector-1.2/language/smj.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Resize" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/H5PEditor.ShowWhen-1.0/h5p-show-when.css: -------------------------------------------------------------------------------- 1 | .h5p-editor-widget-show-when.hidden { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-accounts-secp-HS/content/images/image-z5lfWbd6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M2-accounts-secp-HS/content/images/image-z5lfWbd6.png -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS.h5p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M2-architecture-statemachines-HS.h5p -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/FontAwesome-4.5/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M2-architecture-statemachines-HS/FontAwesome-4.5/FontAwesome.otf -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/af.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/ar.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"النص" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/bg.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Текст" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/bs.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/cs.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/cy.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Testun" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/el.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Κείμενο" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/es-mx.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texto" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texto" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/eu.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Testua" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Teksti" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texte" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/he.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/hu.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Testo" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/ja.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"テキスト" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/km.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "អត្ថបទ" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"텍스트" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/nb.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/nn.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/pl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/pt.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Mensagem" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/ro.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/sl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Besedilo" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/sma.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/sme.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/smj.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/sr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/sv.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/tr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/vi.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5P.Text-1.1/language/zh.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "文字" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5PEditor.ImageCoordinateSelector-1.2/language/bg.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Преоразмеряване" 4 | } 5 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5PEditor.ImageCoordinateSelector-1.2/language/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Redimensiona" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5PEditor.ImageCoordinateSelector-1.2/language/cs.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Změnit velikost" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5PEditor.ImageCoordinateSelector-1.2/language/cy.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Ailfeintio" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5PEditor.ImageCoordinateSelector-1.2/language/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Größe ändern" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5PEditor.ImageCoordinateSelector-1.2/language/el.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Αλλαγή μεγέθους" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5PEditor.ImageCoordinateSelector-1.2/language/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Resize" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5PEditor.ImageCoordinateSelector-1.2/language/es-mx.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Cambiar tamaño" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5PEditor.ImageCoordinateSelector-1.2/language/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Cambiar tamaño" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5PEditor.ImageCoordinateSelector-1.2/language/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Muuda suurust" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5PEditor.ImageCoordinateSelector-1.2/language/eu.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Egokitu tamaina" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5PEditor.ImageCoordinateSelector-1.2/language/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Ridimensiona" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5PEditor.ImageCoordinateSelector-1.2/language/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "크기 재조정" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5PEditor.ImageCoordinateSelector-1.2/language/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Herschalen" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5PEditor.ImageCoordinateSelector-1.2/language/sl.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Spremeni velikost" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5PEditor.ImageCoordinateSelector-1.2/language/sma.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Resize" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5PEditor.ImageCoordinateSelector-1.2/language/sme.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Resize" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5PEditor.ImageCoordinateSelector-1.2/language/smj.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Resize" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines-HS/H5PEditor.ShowWhen-1.0/h5p-show-when.css: -------------------------------------------------------------------------------- 1 | .h5p-editor-widget-show-when.hidden { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS.h5p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M2-architecture-statemachines2-HS.h5p -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/FontAwesome-4.5/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M2-architecture-statemachines2-HS/FontAwesome-4.5/FontAwesome.otf -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/af.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/ar.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"النص" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/bg.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Текст" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/bs.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/cs.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/cy.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Testun" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/el.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Κείμενο" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/es-mx.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texto" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texto" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/eu.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Testua" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Teksti" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texte" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/he.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/hu.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Testo" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/ja.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"テキスト" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/km.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "អត្ថបទ" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"텍스트" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/nb.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/nn.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/pl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/pt.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Mensagem" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/ro.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/sl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Besedilo" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/sma.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/sme.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/smj.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/sr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/sv.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/tr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/vi.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5P.Text-1.1/language/zh.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "文字" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5PEditor.ImageCoordinateSelector-1.2/language/bg.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Преоразмеряване" 4 | } 5 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5PEditor.ImageCoordinateSelector-1.2/language/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Redimensiona" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5PEditor.ImageCoordinateSelector-1.2/language/cs.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Změnit velikost" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5PEditor.ImageCoordinateSelector-1.2/language/cy.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Ailfeintio" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5PEditor.ImageCoordinateSelector-1.2/language/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Größe ändern" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5PEditor.ImageCoordinateSelector-1.2/language/el.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Αλλαγή μεγέθους" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5PEditor.ImageCoordinateSelector-1.2/language/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Resize" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5PEditor.ImageCoordinateSelector-1.2/language/es-mx.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Cambiar tamaño" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5PEditor.ImageCoordinateSelector-1.2/language/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Cambiar tamaño" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5PEditor.ImageCoordinateSelector-1.2/language/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Muuda suurust" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5PEditor.ImageCoordinateSelector-1.2/language/eu.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Egokitu tamaina" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5PEditor.ImageCoordinateSelector-1.2/language/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Ridimensiona" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5PEditor.ImageCoordinateSelector-1.2/language/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "크기 재조정" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5PEditor.ImageCoordinateSelector-1.2/language/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Herschalen" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5PEditor.ImageCoordinateSelector-1.2/language/sl.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Spremeni velikost" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5PEditor.ImageCoordinateSelector-1.2/language/sma.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Resize" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5PEditor.ImageCoordinateSelector-1.2/language/sme.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Resize" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5PEditor.ImageCoordinateSelector-1.2/language/smj.json: -------------------------------------------------------------------------------- 1 | { 2 | "libraryStrings": { 3 | "resize": "Resize" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/H5PEditor.ShowWhen-1.0/h5p-show-when.css: -------------------------------------------------------------------------------- 1 | .h5p-editor-widget-show-when.hidden { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-architecture-statemachines2-HS/content/images/image-ZMFBNP9O.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M2-architecture-statemachines2-HS/content/images/image-ZMFBNP9O.png -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac.h5p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M2-modules-designprinciples-ac.h5p -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/FontAwesome-4.5/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/h5p/M2-modules-designprinciples-ac/FontAwesome-4.5/FontAwesome.otf -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/af.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/ar.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"النص" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/bg.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Текст" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/cs.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/el.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Κείμενο" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/es-mx.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texto" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texto" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/eu.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Testua" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Teksti" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texte" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/he.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/hu.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Testo" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/ja.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"テキスト" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/km.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "អត្ថបទ" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"텍스트" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/nb.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Tekst" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/nn.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/pl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/pt.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Texto" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/ro.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/sl.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Besedilo" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/sma.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/sme.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/smj.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics": [ 3 | { 4 | "label": "Text" 5 | } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/sr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/sv.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/tr.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/uk.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/h5p/M2-modules-designprinciples-ac/H5P.AdvancedText-1.1/language/vi.json: -------------------------------------------------------------------------------- 1 | { 2 | "semantics":[ 3 | { 4 | "label":"Text" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /.vuepress/public/ida-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/ida-timeline.png -------------------------------------------------------------------------------- /.vuepress/public/lp-images/cosmos_dev_portal_module-03-lp-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/lp-images/cosmos_dev_portal_module-03-lp-new.png -------------------------------------------------------------------------------- /.vuepress/public/lp-images/cosmos_dev_portal_module-04-lp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/lp-images/cosmos_dev_portal_module-04-lp.png -------------------------------------------------------------------------------- /.vuepress/public/lp-images/cosmos_dev_portal_module-05-lp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/lp-images/cosmos_dev_portal_module-05-lp.png -------------------------------------------------------------------------------- /.vuepress/public/lp-images/ida_dev_portal_lp_background-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/lp-images/ida_dev_portal_lp_background-00.png -------------------------------------------------------------------------------- /.vuepress/public/lp-images/ida_dev_portal_lp_hero-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/lp-images/ida_dev_portal_lp_hero-02.png -------------------------------------------------------------------------------- /.vuepress/public/lp-images/ida_dev_portal_lp_hero-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/lp-images/ida_dev_portal_lp_hero-03.png -------------------------------------------------------------------------------- /.vuepress/public/lp-images/ida_dev_portal_lp_hero-04-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/lp-images/ida_dev_portal_lp_hero-04-b.png -------------------------------------------------------------------------------- /.vuepress/public/lp-images/ida_dev_portal_lp_hero-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/lp-images/ida_dev_portal_lp_hero-04.png -------------------------------------------------------------------------------- /.vuepress/public/lp-images/ida_dev_portal_lp_hero-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/lp-images/ida_dev_portal_lp_hero-05.png -------------------------------------------------------------------------------- /.vuepress/public/lp-images/ida_dev_portal_lp_hero-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/lp-images/ida_dev_portal_lp_hero-06.png -------------------------------------------------------------------------------- /.vuepress/public/lp-images/ida_dev_portal_lp_hero-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/lp-images/ida_dev_portal_lp_hero-07.png -------------------------------------------------------------------------------- /.vuepress/public/lp-images/ida_dev_portal_lp_hero-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/lp-images/ida_dev_portal_lp_hero-08.png -------------------------------------------------------------------------------- /.vuepress/public/lp-images/ida_dev_portal_lp_hero-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/lp-images/ida_dev_portal_lp_hero-09.png -------------------------------------------------------------------------------- /.vuepress/public/lp-images/universe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/lp-images/universe.png -------------------------------------------------------------------------------- /.vuepress/public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/mstile-150x150.png -------------------------------------------------------------------------------- /.vuepress/public/support-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/support-image.png -------------------------------------------------------------------------------- /.vuepress/public/tutorial-bg-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/.vuepress/public/tutorial-bg-image.png -------------------------------------------------------------------------------- /.vuepress/styles/index.styl: -------------------------------------------------------------------------------- 1 | :root 2 | --color-primary #5064fb 3 | --color-link #5064fb -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | # These owners are the default owners for technical content in 2 | # the repo. 3 | * @toschdev @barriebyron 4 | -------------------------------------------------------------------------------- /academy/0-welcome/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/0-welcome/index.md -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/constellation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/constellation.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/hub-zones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/hub-zones.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-account-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-account-created.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-accruing-good-rewards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-accruing-good-rewards.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-accruing-rewards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-accruing-rewards.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-add-confirmation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-add-confirmation.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-address-copiable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-address-copiable.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-address-zone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-address-zone.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-as-extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-as-extension.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-chain-addresses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-chain-addresses.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-claim-rewards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-claim-rewards.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-cosmos-address-copied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-cosmos-address-copied.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-create-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-create-menu.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-dashboard-chains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-dashboard-chains.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-dashboard-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-dashboard-empty.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-dashboard-stake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-dashboard-stake.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-delegate-confirm-fee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-delegate-confirm-fee.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-delegate-confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-delegate-confirm.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-delegate-params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-delegate-params.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-in-marketplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-in-marketplace.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-increased-available.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-increased-available.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-link-chains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-link-chains.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-mnemonic-recall-prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-mnemonic-recall-prompt.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-mnemonic-step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-mnemonic-step.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-name-wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-name-wallet.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-stake-chains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-stake-chains.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-undertand-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-undertand-warning.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-use-recovery-phrase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-use-recovery-phrase.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-validator-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-validator-list.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-validator-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-validator-selected.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-wallet-link-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-wallet-link-out.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-with-atom-proper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-with-atom-proper.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/keplr-with-atom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/keplr-with-atom.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/kraken-add-address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/kraken-add-address.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/kraken-exchange-params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/kraken-exchange-params.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/kraken-one-atom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/kraken-one-atom.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/mintscan-crediting-tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/mintscan-crediting-tx.png -------------------------------------------------------------------------------- /academy/1-what-is-cosmos/images/timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/1-what-is-cosmos/images/timeline.png -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/.gitkeep -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/ABCI_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/ABCI_3.png -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/IBC-relay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/IBC-relay.png -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/abci-messages.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/abci-messages.jpg -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/architecture-overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/architecture-overview.jpg -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/architecture_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/architecture_overview.png -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/delayed-execution-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/delayed-execution-model.png -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/delayed-execution-simple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/delayed-execution-simple.jpg -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/delegated-reward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/delegated-reward.png -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/hd-accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/hd-accounts.png -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/interchain_security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/interchain_security.png -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/keeper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/keeper.png -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/message_processing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/message_processing.png -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/minting-validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/minting-validation.png -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/module_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/module_overview.png -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/next-validator-pick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/next-validator-pick.png -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/signature_schemes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/signature_schemes.png -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/state_beginBlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/state_beginBlock.png -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/state_checkTx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/state_checkTx.png -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/state_commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/state_commit.png -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/state_deliverTx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/state_deliverTx.png -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/state_machine_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/state_machine_1.png -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/state_machine_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/state_machine_2.png -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/state_updates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/state_updates.png -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/states.png -------------------------------------------------------------------------------- /academy/2-cosmos-concepts/images/upgrades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/2-cosmos-concepts/images/upgrades.png -------------------------------------------------------------------------------- /academy/3-ibc/images/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/app.png -------------------------------------------------------------------------------- /academy/3-ibc/images/applicationlogic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/applicationlogic.png -------------------------------------------------------------------------------- /academy/3-ibc/images/channelhandshake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/channelhandshake.png -------------------------------------------------------------------------------- /academy/3-ibc/images/channelsstate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/channelsstate.png -------------------------------------------------------------------------------- /academy/3-ibc/images/connectionstate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/connectionstate.png -------------------------------------------------------------------------------- /academy/3-ibc/images/cosmoschannels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/cosmoschannels.png -------------------------------------------------------------------------------- /academy/3-ibc/images/cosmosconnections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/cosmosconnections.png -------------------------------------------------------------------------------- /academy/3-ibc/images/cosmososmasischannels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/cosmososmasischannels.png -------------------------------------------------------------------------------- /academy/3-ibc/images/dataflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/dataflow.png -------------------------------------------------------------------------------- /academy/3-ibc/images/detailscosmoszone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/detailscosmoszone.png -------------------------------------------------------------------------------- /academy/3-ibc/images/ftstx1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/ftstx1.png -------------------------------------------------------------------------------- /academy/3-ibc/images/ftstx2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/ftstx2.png -------------------------------------------------------------------------------- /academy/3-ibc/images/ibchandler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/ibchandler.png -------------------------------------------------------------------------------- /academy/3-ibc/images/ibcmodule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/ibcmodule.png -------------------------------------------------------------------------------- /academy/3-ibc/images/ibcoverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/ibcoverview.png -------------------------------------------------------------------------------- /academy/3-ibc/images/icaoverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/icaoverview.png -------------------------------------------------------------------------------- /academy/3-ibc/images/icaregister.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/icaregister.png -------------------------------------------------------------------------------- /academy/3-ibc/images/icasendtx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/icasendtx.png -------------------------------------------------------------------------------- /academy/3-ibc/images/internetofchains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/internetofchains.png -------------------------------------------------------------------------------- /academy/3-ibc/images/iobscan1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/iobscan1.png -------------------------------------------------------------------------------- /academy/3-ibc/images/iobscan2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/iobscan2.png -------------------------------------------------------------------------------- /academy/3-ibc/images/lightclient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/lightclient.png -------------------------------------------------------------------------------- /academy/3-ibc/images/mapofzones1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/mapofzones1.png -------------------------------------------------------------------------------- /academy/3-ibc/images/mapofzones2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/mapofzones2.png -------------------------------------------------------------------------------- /academy/3-ibc/images/mintscanIBC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/mintscanIBC.png -------------------------------------------------------------------------------- /academy/3-ibc/images/mintscanchanneloevrview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/mintscanchanneloevrview.png -------------------------------------------------------------------------------- /academy/3-ibc/images/mintscanosmosis1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/mintscanosmosis1.png -------------------------------------------------------------------------------- /academy/3-ibc/images/mintscanosmosis2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/mintscanosmosis2.png -------------------------------------------------------------------------------- /academy/3-ibc/images/mintscanoverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/mintscanoverview.png -------------------------------------------------------------------------------- /academy/3-ibc/images/mostactivezones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/mostactivezones.png -------------------------------------------------------------------------------- /academy/3-ibc/images/onchannel1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/onchannel1.png -------------------------------------------------------------------------------- /academy/3-ibc/images/onchannel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/onchannel2.png -------------------------------------------------------------------------------- /academy/3-ibc/images/onchannel3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/onchannel3.png -------------------------------------------------------------------------------- /academy/3-ibc/images/onchannel4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/onchannel4.png -------------------------------------------------------------------------------- /academy/3-ibc/images/onchannel5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/onchannel5.png -------------------------------------------------------------------------------- /academy/3-ibc/images/open_ack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/open_ack.png -------------------------------------------------------------------------------- /academy/3-ibc/images/open_confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/open_confirm.png -------------------------------------------------------------------------------- /academy/3-ibc/images/open_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/open_init.png -------------------------------------------------------------------------------- /academy/3-ibc/images/open_try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/open_try.png -------------------------------------------------------------------------------- /academy/3-ibc/images/packetflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/packetflow.png -------------------------------------------------------------------------------- /academy/3-ibc/images/path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/path.png -------------------------------------------------------------------------------- /academy/3-ibc/images/sinktosource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/sinktosource.png -------------------------------------------------------------------------------- /academy/3-ibc/images/solomachine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/solomachine.png -------------------------------------------------------------------------------- /academy/3-ibc/images/sourcechain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/sourcechain.png -------------------------------------------------------------------------------- /academy/3-ibc/images/sourcesinklogic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/sourcesinklogic.png -------------------------------------------------------------------------------- /academy/3-ibc/images/sourcetosink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/sourcetosink.png -------------------------------------------------------------------------------- /academy/3-ibc/images/tao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/tao.png -------------------------------------------------------------------------------- /academy/3-ibc/images/transferoverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/3-ibc/images/transferoverview.png -------------------------------------------------------------------------------- /academy/archive-content/3-my-own-chain/images/faucet-request-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/archive-content/3-my-own-chain/images/faucet-request-1.png -------------------------------------------------------------------------------- /academy/archive-content/3-my-own-chain/images/go_test_debug_suite_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/archive-content/3-my-own-chain/images/go_test_debug_suite_test.png -------------------------------------------------------------------------------- /academy/archive-content/3-my-own-chain/images/ignite-vue-keplr-no-assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/archive-content/3-my-own-chain/images/ignite-vue-keplr-no-assets.png -------------------------------------------------------------------------------- /academy/archive-content/3-my-own-chain/images/ignite-vue-keplr-with-tokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/archive-content/3-my-own-chain/images/ignite-vue-keplr-with-tokens.png -------------------------------------------------------------------------------- /academy/archive-content/course-ida/images/discord-auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/archive-content/course-ida/images/discord-auto.png -------------------------------------------------------------------------------- /academy/archive-content/course-ida/images/discord-channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/archive-content/course-ida/images/discord-channel.png -------------------------------------------------------------------------------- /academy/archive-content/course-ida/images/discord-close-notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/archive-content/course-ida/images/discord-close-notification.png -------------------------------------------------------------------------------- /academy/archive-content/course-ida/images/discord-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/archive-content/course-ida/images/discord-close.png -------------------------------------------------------------------------------- /academy/archive-content/course-ida/images/discord-question-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/archive-content/course-ida/images/discord-question-add.png -------------------------------------------------------------------------------- /academy/archive-content/course-ida/images/discord-question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/archive-content/course-ida/images/discord-question.png -------------------------------------------------------------------------------- /academy/archive-content/course-ida/images/discord-tricia-pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/archive-content/course-ida/images/discord-tricia-pm.png -------------------------------------------------------------------------------- /academy/archive-content/course-ida/welcome/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/archive-content/course-ida/welcome/index.md -------------------------------------------------------------------------------- /academy/archive-content/ibc-dev/ibc-app-app-vs-ica.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/academy/archive-content/ibc-dev/ibc-app-app-vs-ica.md -------------------------------------------------------------------------------- /deploy-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/deploy-preview.png -------------------------------------------------------------------------------- /docs/deployment.md: -------------------------------------------------------------------------------- 1 | # Deployment 2 | 3 | WIP 4 | -------------------------------------------------------------------------------- /feature-test/images/constellation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/feature-test/images/constellation.png -------------------------------------------------------------------------------- /feature-test/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/feature-test/images/menu.png -------------------------------------------------------------------------------- /hands-on-exercise/0-native/images/cosmos_dev_portal_module-04-lp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/hands-on-exercise/0-native/images/cosmos_dev_portal_module-04-lp.png -------------------------------------------------------------------------------- /hands-on-exercise/1-ignite-cli/images/faucet-request-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/hands-on-exercise/1-ignite-cli/images/faucet-request-1.png -------------------------------------------------------------------------------- /hands-on-exercise/1-ignite-cli/images/go_test_debug_breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/hands-on-exercise/1-ignite-cli/images/go_test_debug_breakpoint.png -------------------------------------------------------------------------------- /hands-on-exercise/1-ignite-cli/images/go_test_debug_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/hands-on-exercise/1-ignite-cli/images/go_test_debug_button.png -------------------------------------------------------------------------------- /hands-on-exercise/1-ignite-cli/images/go_test_debug_event_attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/hands-on-exercise/1-ignite-cli/images/go_test_debug_event_attributes.png -------------------------------------------------------------------------------- /hands-on-exercise/1-ignite-cli/images/go_test_debug_stopped_at_breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/hands-on-exercise/1-ignite-cli/images/go_test_debug_stopped_at_breakpoint.png -------------------------------------------------------------------------------- /hands-on-exercise/1-ignite-cli/images/ignite-vue-keplr-no-assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/hands-on-exercise/1-ignite-cli/images/ignite-vue-keplr-no-assets.png -------------------------------------------------------------------------------- /hands-on-exercise/1-ignite-cli/images/ignite-vue-keplr-with-tokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/hands-on-exercise/1-ignite-cli/images/ignite-vue-keplr-with-tokens.png -------------------------------------------------------------------------------- /hands-on-exercise/2-ignite-cli-adv/images/go_test_debug_suite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/hands-on-exercise/2-ignite-cli-adv/images/go_test_debug_suite.png -------------------------------------------------------------------------------- /hands-on-exercise/2-ignite-cli-adv/images/go_test_debug_suite_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/hands-on-exercise/2-ignite-cli-adv/images/go_test_debug_suite_test.png -------------------------------------------------------------------------------- /hands-on-exercise/3-cosmjs-adv/images/black-moves-first-piece.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/hands-on-exercise/3-cosmjs-adv/images/black-moves-first-piece.png -------------------------------------------------------------------------------- /hands-on-exercise/3-cosmjs-adv/images/checkers-access-address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/hands-on-exercise/3-cosmjs-adv/images/checkers-access-address.png -------------------------------------------------------------------------------- /hands-on-exercise/3-cosmjs-adv/images/checkers-add-support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/hands-on-exercise/3-cosmjs-adv/images/checkers-add-support.png -------------------------------------------------------------------------------- /hands-on-exercise/3-cosmjs-adv/images/list-games-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/hands-on-exercise/3-cosmjs-adv/images/list-games-1.png -------------------------------------------------------------------------------- /hands-on-exercise/3-cosmjs-adv/images/list-keplr-beta-support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/hands-on-exercise/3-cosmjs-adv/images/list-keplr-beta-support.png -------------------------------------------------------------------------------- /hands-on-exercise/3-cosmjs-adv/images/show-game-1-move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/hands-on-exercise/3-cosmjs-adv/images/show-game-1-move.png -------------------------------------------------------------------------------- /hands-on-exercise/3-cosmjs-adv/images/window-create-game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/hands-on-exercise/3-cosmjs-adv/images/window-create-game.png -------------------------------------------------------------------------------- /hands-on-exercise/5-ibc-adv/images/middleware-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/hands-on-exercise/5-ibc-adv/images/middleware-stack.png -------------------------------------------------------------------------------- /hands-on-exercise/5-ibc-adv/images/packetflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/hands-on-exercise/5-ibc-adv/images/packetflow.png -------------------------------------------------------------------------------- /ida-customizations/docs/emails/final-exam/email-exam-deadline-reminder.md: -------------------------------------------------------------------------------- 1 | # Hey there! 2 | 3 | A gentle reminder to let you know that the [exam](https://interchainacademy.cosmos.network/ida-course/final-exam.html)'s deadline is in one week's time on 2nd of March. 4 | -------------------------------------------------------------------------------- /ida-customizations/ida-course/0-blockchain-basics/images/00_02_p2p_network_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/ida-customizations/ida-course/0-blockchain-basics/images/00_02_p2p_network_dark.png -------------------------------------------------------------------------------- /ida-customizations/ida-course/0-blockchain-basics/images/00_04_double_spending-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/ida-customizations/ida-course/0-blockchain-basics/images/00_04_double_spending-01.png -------------------------------------------------------------------------------- /ida-customizations/ida-course/0-blockchain-basics/images/00_07_delegated_pos-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/ida-customizations/ida-course/0-blockchain-basics/images/00_07_delegated_pos-01.png -------------------------------------------------------------------------------- /ida-customizations/ida-course/0-blockchain-basics/images/00_09_computing_paradigms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/ida-customizations/ida-course/0-blockchain-basics/images/00_09_computing_paradigms.png -------------------------------------------------------------------------------- /ida-customizations/ida-course/0-blockchain-basics/images/00_11_rsa_keys_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/ida-customizations/ida-course/0-blockchain-basics/images/00_11_rsa_keys_v1.png -------------------------------------------------------------------------------- /ida-customizations/ida-course/0-blockchain-basics/images/00_13_mix_n_match_keys_v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/ida-customizations/ida-course/0-blockchain-basics/images/00_13_mix_n_match_keys_v3.png -------------------------------------------------------------------------------- /ida-customizations/ida-course/0-blockchain-basics/images/00_14_double_spending_v2-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/ida-customizations/ida-course/0-blockchain-basics/images/00_14_double_spending_v2-01.png -------------------------------------------------------------------------------- /ida-customizations/ida-course/0-blockchain-basics/images/00_17_mining-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/ida-customizations/ida-course/0-blockchain-basics/images/00_17_mining-01.png -------------------------------------------------------------------------------- /ida-customizations/ida-course/images/discord-auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/ida-customizations/ida-course/images/discord-auto.png -------------------------------------------------------------------------------- /ida-customizations/ida-course/images/discord-channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/ida-customizations/ida-course/images/discord-channel.png -------------------------------------------------------------------------------- /ida-customizations/ida-course/images/discord-close-notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/ida-customizations/ida-course/images/discord-close-notification.png -------------------------------------------------------------------------------- /ida-customizations/ida-course/images/discord-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/ida-customizations/ida-course/images/discord-close.png -------------------------------------------------------------------------------- /ida-customizations/ida-course/images/discord-howto-supportforum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/ida-customizations/ida-course/images/discord-howto-supportforum.jpg -------------------------------------------------------------------------------- /ida-customizations/ida-course/images/discord-howto-supportforum2023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/ida-customizations/ida-course/images/discord-howto-supportforum2023.png -------------------------------------------------------------------------------- /ida-customizations/ida-course/images/discord-ida-c3-channels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/ida-customizations/ida-course/images/discord-ida-c3-channels.jpg -------------------------------------------------------------------------------- /ida-customizations/ida-course/images/discord-ida-c5-channels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/ida-customizations/ida-course/images/discord-ida-c5-channels.png -------------------------------------------------------------------------------- /ida-customizations/ida-course/images/discord-question-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/ida-customizations/ida-course/images/discord-question-add.png -------------------------------------------------------------------------------- /ida-customizations/ida-course/images/discord-question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/ida-customizations/ida-course/images/discord-question.png -------------------------------------------------------------------------------- /ida-customizations/ida-course/images/discord-tricia-pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/ida-customizations/ida-course/images/discord-tricia-pm.png -------------------------------------------------------------------------------- /ida-customizations/versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/ida-customizations/versions.txt -------------------------------------------------------------------------------- /lgtm.yml: -------------------------------------------------------------------------------- 1 | extraction: 2 | javascript: 3 | index: 4 | exclude: 5 | - node_modules -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [context.deploy-preview.environment] 2 | NPM_VERSION = "8" 3 | 4 | [build.environment] 5 | NPM_VERSION = "8" -------------------------------------------------------------------------------- /tutorials/6-ibc-dev/images/ibc_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/tutorials/6-ibc-dev/images/ibc_token.png -------------------------------------------------------------------------------- /tutorials/7-cosmjs/images/cosmjs-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/tutorials/7-cosmjs/images/cosmjs-tree.png -------------------------------------------------------------------------------- /tutorials/7-cosmjs/images/keplr_send_to_faucet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/tutorials/7-cosmjs/images/keplr_send_to_faucet.png -------------------------------------------------------------------------------- /tutorials/7-cosmjs/images/keplr_share_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/tutorials/7-cosmjs/images/keplr_share_account.png -------------------------------------------------------------------------------- /tutorials/7-cosmjs/images/keplr_testnet_addition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/developer-portal/45fb61fb136539e33da2ff67e53b274af06d28b1/tutorials/7-cosmjs/images/keplr_testnet_addition.png -------------------------------------------------------------------------------- /versions.txt: -------------------------------------------------------------------------------- 1 | v1-content v2-content --------------------------------------------------------------------------------