├── .gitignore ├── LICENCE ├── README.md ├── app ├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .postcssrc.js ├── README.md ├── build │ ├── build.js │ ├── check-versions.js │ ├── dev-client.js │ ├── dev-server.js │ ├── utils.js │ ├── vue-loader.conf.js │ ├── webpack.base.conf.js │ ├── webpack.dev.conf.js │ ├── webpack.prod.conf.js │ └── webpack.test.conf.js ├── config │ ├── dev.env.js │ ├── index.js │ ├── prod.env.js │ └── test.env.js ├── index.html ├── package-lock.json ├── package.json ├── src │ ├── App.vue │ ├── assets │ │ ├── LogoRedSponsors_v1_small-01.png │ │ └── g-logo.png │ ├── components │ │ ├── Assessment.vue │ │ ├── BuildTraining.vue │ │ ├── Classify.vue │ │ ├── EmailAddress.vue │ │ ├── Export.vue │ │ ├── FocusRegion.vue │ │ ├── GMap.vue │ │ ├── Layer.vue │ │ ├── Loader.vue │ │ ├── MapControl.vue │ │ ├── OpacityControl.vue │ │ ├── PastSwitch.vue │ │ ├── Results.vue │ │ ├── SearchBox.vue │ │ ├── SelectPredictors.vue │ │ ├── Sidebar.vue │ │ ├── doDownload.js │ │ └── modals │ │ │ ├── ModalAssessment.vue │ │ │ ├── ModalClass.vue │ │ │ ├── ModalHelp.vue │ │ │ ├── ModalResults.vue │ │ │ ├── ModalUpload.vue │ │ │ └── Status.vue │ ├── main.js │ └── store │ │ ├── index.js │ │ └── modules │ │ ├── AuthModule.js │ │ ├── ClassModule.js │ │ └── MapModule.js ├── static │ ├── .gitkeep │ ├── css │ │ └── materialize.css │ ├── fonts │ │ └── roboto │ │ │ ├── Roboto-Bold.eot │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-Bold.woff │ │ │ ├── Roboto-Bold.woff2 │ │ │ ├── Roboto-Light.eot │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-Light.woff │ │ │ ├── Roboto-Light.woff2 │ │ │ ├── Roboto-Medium.eot │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-Medium.woff │ │ │ ├── Roboto-Medium.woff2 │ │ │ ├── Roboto-Regular.eot │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Regular.woff │ │ │ ├── Roboto-Regular.woff2 │ │ │ ├── Roboto-Thin.eot │ │ │ ├── Roboto-Thin.ttf │ │ │ ├── Roboto-Thin.woff │ │ │ └── Roboto-Thin.woff2 │ └── js │ │ └── materialize.min.js └── test │ ├── e2e │ ├── custom-assertions │ │ └── elementCount.js │ ├── nightwatch.conf.js │ ├── runner.js │ └── specs │ │ └── test.js │ └── unit │ ├── .eslintrc │ ├── index.js │ ├── karma.conf.js │ └── specs │ └── Hello.spec.js ├── backend ├── app.yaml ├── bower_components │ ├── jquery │ │ ├── .bower.json │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── core.js │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ │ ├── external │ │ │ └── sizzle │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ ├── sizzle.js │ │ │ │ ├── sizzle.min.js │ │ │ │ └── sizzle.min.map │ │ └── src │ │ │ ├── .eslintrc.json │ │ │ ├── ajax.js │ │ │ ├── ajax │ │ │ ├── jsonp.js │ │ │ ├── load.js │ │ │ ├── parseXML.js │ │ │ ├── script.js │ │ │ ├── var │ │ │ │ ├── location.js │ │ │ │ ├── nonce.js │ │ │ │ └── rquery.js │ │ │ └── xhr.js │ │ │ ├── attributes.js │ │ │ ├── attributes │ │ │ ├── attr.js │ │ │ ├── classes.js │ │ │ ├── prop.js │ │ │ ├── support.js │ │ │ └── val.js │ │ │ ├── callbacks.js │ │ │ ├── core.js │ │ │ ├── core │ │ │ ├── DOMEval.js │ │ │ ├── access.js │ │ │ ├── init.js │ │ │ ├── parseHTML.js │ │ │ ├── ready-no-deferred.js │ │ │ ├── ready.js │ │ │ ├── readyException.js │ │ │ ├── stripAndCollapse.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ └── rsingleTag.js │ │ │ ├── css.js │ │ │ ├── css │ │ │ ├── addGetHookIf.js │ │ │ ├── adjustCSS.js │ │ │ ├── curCSS.js │ │ │ ├── hiddenVisibleSelectors.js │ │ │ ├── showHide.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ ├── cssExpand.js │ │ │ │ ├── getStyles.js │ │ │ │ ├── isHiddenWithinTree.js │ │ │ │ ├── rmargin.js │ │ │ │ ├── rnumnonpx.js │ │ │ │ └── swap.js │ │ │ ├── data.js │ │ │ ├── data │ │ │ ├── Data.js │ │ │ └── var │ │ │ │ ├── acceptData.js │ │ │ │ ├── dataPriv.js │ │ │ │ └── dataUser.js │ │ │ ├── deferred.js │ │ │ ├── deferred │ │ │ └── exceptionHook.js │ │ │ ├── deprecated.js │ │ │ ├── dimensions.js │ │ │ ├── effects.js │ │ │ ├── effects │ │ │ ├── Tween.js │ │ │ └── animatedSelector.js │ │ │ ├── event.js │ │ │ ├── event │ │ │ ├── ajax.js │ │ │ ├── alias.js │ │ │ ├── focusin.js │ │ │ ├── support.js │ │ │ └── trigger.js │ │ │ ├── exports │ │ │ ├── amd.js │ │ │ └── global.js │ │ │ ├── jquery.js │ │ │ ├── manipulation.js │ │ │ ├── manipulation │ │ │ ├── _evalUrl.js │ │ │ ├── buildFragment.js │ │ │ ├── getAll.js │ │ │ ├── setGlobalEval.js │ │ │ ├── support.js │ │ │ ├── var │ │ │ │ ├── rcheckableType.js │ │ │ │ ├── rscriptType.js │ │ │ │ └── rtagName.js │ │ │ └── wrapMap.js │ │ │ ├── offset.js │ │ │ ├── queue.js │ │ │ ├── queue │ │ │ └── delay.js │ │ │ ├── selector-native.js │ │ │ ├── selector-sizzle.js │ │ │ ├── selector.js │ │ │ ├── serialize.js │ │ │ ├── traversing.js │ │ │ ├── traversing │ │ │ ├── findFilter.js │ │ │ └── var │ │ │ │ ├── dir.js │ │ │ │ ├── rneedsContext.js │ │ │ │ └── siblings.js │ │ │ ├── var │ │ │ ├── ObjectFunctionString.js │ │ │ ├── arr.js │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── document.js │ │ │ ├── documentElement.js │ │ │ ├── fnToString.js │ │ │ ├── getProto.js │ │ │ ├── hasOwn.js │ │ │ ├── indexOf.js │ │ │ ├── pnum.js │ │ │ ├── push.js │ │ │ ├── rcssNum.js │ │ │ ├── rnothtmlwhite.js │ │ │ ├── slice.js │ │ │ ├── support.js │ │ │ └── toString.js │ │ │ └── wrap.js │ └── materialize │ │ ├── .bower.json │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── ISSUE_TEMPLATE.md │ │ ├── LICENSE │ │ ├── bin │ │ ├── materialize.css │ │ └── materialize.js │ │ ├── bower.json │ │ ├── dist │ │ ├── css │ │ │ ├── materialize.css │ │ │ └── materialize.min.css │ │ ├── fonts │ │ │ └── roboto │ │ │ │ ├── Roboto-Bold.eot │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ ├── Roboto-Bold.woff │ │ │ │ ├── Roboto-Bold.woff2 │ │ │ │ ├── Roboto-Light.eot │ │ │ │ ├── Roboto-Light.ttf │ │ │ │ ├── Roboto-Light.woff │ │ │ │ ├── Roboto-Light.woff2 │ │ │ │ ├── Roboto-Medium.eot │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ ├── Roboto-Medium.woff │ │ │ │ ├── Roboto-Medium.woff2 │ │ │ │ ├── Roboto-Regular.eot │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ ├── Roboto-Regular.woff │ │ │ │ ├── Roboto-Regular.woff2 │ │ │ │ ├── Roboto-Thin.eot │ │ │ │ ├── Roboto-Thin.ttf │ │ │ │ ├── Roboto-Thin.woff │ │ │ │ └── Roboto-Thin.woff2 │ │ └── js │ │ │ ├── materialize.js │ │ │ └── materialize.min.js │ │ ├── extras │ │ └── noUiSlider │ │ │ ├── nouislider.css │ │ │ ├── nouislider.js │ │ │ └── nouislider.min.js │ │ ├── fonts │ │ └── roboto │ │ │ ├── Roboto-Bold.eot │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-Bold.woff │ │ │ ├── Roboto-Bold.woff2 │ │ │ ├── Roboto-Light.eot │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-Light.woff │ │ │ ├── Roboto-Light.woff2 │ │ │ ├── Roboto-Medium.eot │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-Medium.woff │ │ │ ├── Roboto-Medium.woff2 │ │ │ ├── Roboto-Regular.eot │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Regular.woff │ │ │ ├── Roboto-Regular.woff2 │ │ │ ├── Roboto-Thin.eot │ │ │ ├── Roboto-Thin.ttf │ │ │ ├── Roboto-Thin.woff │ │ │ └── Roboto-Thin.woff2 │ │ ├── js │ │ ├── animation.js │ │ ├── buttons.js │ │ ├── cards.js │ │ ├── carousel.js │ │ ├── character_counter.js │ │ ├── chips.js │ │ ├── collapsible.js │ │ ├── date_picker │ │ │ ├── picker.date.js │ │ │ └── picker.js │ │ ├── dropdown.js │ │ ├── forms.js │ │ ├── global.js │ │ ├── hammer.min.js │ │ ├── initial.js │ │ ├── jquery.easing.1.3.js │ │ ├── jquery.hammer.js │ │ ├── jquery.timeago.min.js │ │ ├── materialbox.js │ │ ├── modal.js │ │ ├── parallax.js │ │ ├── pushpin.js │ │ ├── scrollFire.js │ │ ├── scrollspy.js │ │ ├── sideNav.js │ │ ├── slider.js │ │ ├── tabs.js │ │ ├── toasts.js │ │ ├── tooltip.js │ │ ├── transitions.js │ │ ├── velocity.min.js │ │ └── waves.js │ │ ├── package.js │ │ ├── sass │ │ ├── .sass-cache │ │ │ ├── 3c8504f995d2a24120ee71ee3d235ed34a9df2c9 │ │ │ │ ├── _badges.scssc │ │ │ │ ├── _buttons.scssc │ │ │ │ ├── _cards.scssc │ │ │ │ ├── _carousel.scssc │ │ │ │ ├── _chips.scssc │ │ │ │ ├── _collapsible.scssc │ │ │ │ ├── _color.scssc │ │ │ │ ├── _dropdown.scssc │ │ │ │ ├── _global.scssc │ │ │ │ ├── _grid.scssc │ │ │ │ ├── _icons-material-design.scssc │ │ │ │ ├── _materialbox.scssc │ │ │ │ ├── _mixins.scssc │ │ │ │ ├── _modal.scssc │ │ │ │ ├── _navbar.scssc │ │ │ │ ├── _normalize.scssc │ │ │ │ ├── _preloader.scssc │ │ │ │ ├── _roboto.scssc │ │ │ │ ├── _sideNav.scssc │ │ │ │ ├── _slider.scssc │ │ │ │ ├── _table_of_contents.scssc │ │ │ │ ├── _tabs.scssc │ │ │ │ ├── _toast.scssc │ │ │ │ ├── _tooltip.scssc │ │ │ │ ├── _transitions.scssc │ │ │ │ ├── _typography.scssc │ │ │ │ ├── _variables.scssc │ │ │ │ └── _waves.scssc │ │ │ ├── 523224110bc93ab02c944292763811490b5409df │ │ │ │ ├── _default.date.scssc │ │ │ │ ├── _default.scssc │ │ │ │ └── _default.time.scssc │ │ │ ├── a5c4f5566e80ded4feafdd9a0d28651c22bdeb30 │ │ │ │ ├── _checkboxes.scssc │ │ │ │ ├── _file-input.scssc │ │ │ │ ├── _forms.scssc │ │ │ │ ├── _input-fields.scssc │ │ │ │ ├── _radio-buttons.scssc │ │ │ │ ├── _range.scssc │ │ │ │ ├── _select.scssc │ │ │ │ └── _switches.scssc │ │ │ └── c60c5d1649fadcb01dbb0df88f2ea19b7ad3d405 │ │ │ │ └── materialize.scssc │ │ ├── _style.scss │ │ ├── components │ │ │ ├── _badges.scss │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _carousel.scss │ │ │ ├── _chips.scss │ │ │ ├── _collapsible.scss │ │ │ ├── _color.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _global.scss │ │ │ ├── _grid.scss │ │ │ ├── _icons-material-design.scss │ │ │ ├── _materialbox.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _navbar.scss │ │ │ ├── _normalize.scss │ │ │ ├── _prefixer.scss │ │ │ ├── _preloader.scss │ │ │ ├── _roboto.scss │ │ │ ├── _sideNav.scss │ │ │ ├── _slider.scss │ │ │ ├── _table_of_contents.scss │ │ │ ├── _tabs.scss │ │ │ ├── _toast.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _typography.scss │ │ │ ├── _variables.scss │ │ │ ├── _waves.scss │ │ │ ├── date_picker │ │ │ │ ├── _default.date.scss │ │ │ │ ├── _default.scss │ │ │ │ └── _default.time.scss │ │ │ └── forms │ │ │ │ ├── _checkboxes.scss │ │ │ │ ├── _file-input.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _input-fields.scss │ │ │ │ ├── _radio-buttons.scss │ │ │ │ ├── _range.scss │ │ │ │ ├── _select.scss │ │ │ │ └── _switches.scss │ │ ├── materialize.css.map │ │ └── materialize.scss │ │ ├── templates │ │ ├── masonry-template │ │ │ ├── LICENSE │ │ │ ├── background1.jpg │ │ │ ├── background2.jpg │ │ │ ├── background3.jpg │ │ │ ├── css │ │ │ │ └── style.css │ │ │ └── js │ │ │ │ ├── init.js │ │ │ │ └── masonry.pkgd.min.js │ │ ├── parallax-template │ │ │ ├── LICENSE │ │ │ ├── background1.jpg │ │ │ ├── background2.jpg │ │ │ ├── background3.jpg │ │ │ ├── css │ │ │ │ └── style.css │ │ │ └── js │ │ │ │ └── init.js │ │ └── starter-template │ │ │ ├── LICENSE │ │ │ ├── css │ │ │ └── style.css │ │ │ └── js │ │ │ └── init.js │ │ └── tests │ │ └── spec │ │ ├── autocomplete │ │ └── autocompleteSpec.js │ │ ├── cards │ │ └── cardsSpec.js │ │ ├── chips │ │ └── chipsSpec.js │ │ ├── collapsible │ │ └── collapsibleSpec.js │ │ ├── dropdown │ │ └── dropdownSpec.js │ │ ├── helper.js │ │ ├── materialbox │ │ └── materialboxSpec.js │ │ ├── scrollFire │ │ └── scrollFireSpec.js │ │ ├── select │ │ └── selectSpec.js │ │ ├── sideNav │ │ └── sideNavSpec.js │ │ ├── tabs │ │ └── tabsSpec.js │ │ ├── toast │ │ └── toastSpec.js │ │ └── tooltip │ │ └── tooltipSpec.js ├── config.py ├── cron.yaml ├── dist │ ├── index.html │ └── static │ │ ├── css │ │ ├── app.66a85ee3d68fe1fdedd69d114506f268.css │ │ ├── app.66a85ee3d68fe1fdedd69d114506f268.css.map │ │ ├── app.750a8af0a4d5b859a3b5573aa2e7547f.css │ │ ├── app.750a8af0a4d5b859a3b5573aa2e7547f.css.map │ │ └── materialize.css │ │ ├── fonts │ │ └── roboto │ │ │ ├── Roboto-Bold.eot │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-Bold.woff │ │ │ ├── Roboto-Bold.woff2 │ │ │ ├── Roboto-Light.eot │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-Light.woff │ │ │ ├── Roboto-Light.woff2 │ │ │ ├── Roboto-Medium.eot │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-Medium.woff │ │ │ ├── Roboto-Medium.woff2 │ │ │ ├── Roboto-Regular.eot │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Regular.woff │ │ │ ├── Roboto-Regular.woff2 │ │ │ ├── Roboto-Thin.eot │ │ │ ├── Roboto-Thin.ttf │ │ │ ├── Roboto-Thin.woff │ │ │ └── Roboto-Thin.woff2 │ │ ├── img │ │ └── LogoRedSponsors_v1_small-01.6ae2363.png │ │ └── js │ │ ├── app.d01868c28f9d0e561fd0.js │ │ ├── app.d01868c28f9d0e561fd0.js.map │ │ ├── manifest.3baddefc5e03320cea18.js │ │ ├── manifest.3baddefc5e03320cea18.js.map │ │ ├── materialize.min.js │ │ ├── vendor.100e94904da11ff6f096.js │ │ ├── vendor.100e94904da11ff6f096.js.map │ │ ├── vendor.15c2d5430a2db0fec105.js │ │ └── vendor.15c2d5430a2db0fec105.js.map ├── gulpfile.js ├── lib │ ├── OpenSSL │ │ ├── SSL.py │ │ ├── __init__.py │ │ ├── _util.py │ │ ├── crypto.py │ │ ├── debug.py │ │ ├── tsafe.py │ │ └── version.py │ ├── __init__.py │ ├── _cffi_backend.so │ ├── apiclient │ │ └── __init__.py │ ├── asn1crypto-0.23.0.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ ├── asn1crypto │ │ ├── __init__.py │ │ ├── _elliptic_curve.py │ │ ├── _errors.py │ │ ├── _ffi.py │ │ ├── _inet.py │ │ ├── _int.py │ │ ├── _iri.py │ │ ├── _ordereddict.py │ │ ├── _perf │ │ │ ├── __init__.py │ │ │ └── _big_num_ctypes.py │ │ ├── _teletex_codec.py │ │ ├── _types.py │ │ ├── algos.py │ │ ├── cms.py │ │ ├── core.py │ │ ├── crl.py │ │ ├── csr.py │ │ ├── keys.py │ │ ├── ocsp.py │ │ ├── parser.py │ │ ├── pdf.py │ │ ├── pem.py │ │ ├── pkcs12.py │ │ ├── tsp.py │ │ ├── util.py │ │ ├── version.py │ │ └── x509.py │ ├── cffi-1.11.2.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ ├── metadata.json │ │ └── top_level.txt │ ├── cffi │ │ ├── __init__.py │ │ ├── _cffi_errors.h │ │ ├── _cffi_include.h │ │ ├── _embedding.h │ │ ├── api.py │ │ ├── backend_ctypes.py │ │ ├── cffi_opcode.py │ │ ├── commontypes.py │ │ ├── cparser.py │ │ ├── error.py │ │ ├── ffiplatform.py │ │ ├── lock.py │ │ ├── model.py │ │ ├── parse_c_type.h │ │ ├── recompiler.py │ │ ├── setuptools_ext.py │ │ ├── vengine_cpy.py │ │ ├── vengine_gen.py │ │ └── verifier.py │ ├── cryptography-2.1.1.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ ├── cryptography │ │ ├── __about__.py │ │ ├── __init__.py │ │ ├── exceptions.py │ │ ├── fernet.py │ │ ├── hazmat │ │ │ ├── __init__.py │ │ │ ├── backends │ │ │ │ ├── __init__.py │ │ │ │ ├── interfaces.py │ │ │ │ └── openssl │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── aead.py │ │ │ │ │ ├── backend.py │ │ │ │ │ ├── ciphers.py │ │ │ │ │ ├── cmac.py │ │ │ │ │ ├── decode_asn1.py │ │ │ │ │ ├── dh.py │ │ │ │ │ ├── dsa.py │ │ │ │ │ ├── ec.py │ │ │ │ │ ├── encode_asn1.py │ │ │ │ │ ├── hashes.py │ │ │ │ │ ├── hmac.py │ │ │ │ │ ├── rsa.py │ │ │ │ │ ├── utils.py │ │ │ │ │ ├── x25519.py │ │ │ │ │ └── x509.py │ │ │ ├── bindings │ │ │ │ ├── __init__.py │ │ │ │ ├── _constant_time.so │ │ │ │ ├── _openssl.so │ │ │ │ ├── _padding.so │ │ │ │ └── openssl │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _conditional.py │ │ │ │ │ └── binding.py │ │ │ └── primitives │ │ │ │ ├── __init__.py │ │ │ │ ├── asymmetric │ │ │ │ ├── __init__.py │ │ │ │ ├── dh.py │ │ │ │ ├── dsa.py │ │ │ │ ├── ec.py │ │ │ │ ├── padding.py │ │ │ │ ├── rsa.py │ │ │ │ ├── utils.py │ │ │ │ └── x25519.py │ │ │ │ ├── ciphers │ │ │ │ ├── __init__.py │ │ │ │ ├── aead.py │ │ │ │ ├── algorithms.py │ │ │ │ ├── base.py │ │ │ │ └── modes.py │ │ │ │ ├── cmac.py │ │ │ │ ├── constant_time.py │ │ │ │ ├── hashes.py │ │ │ │ ├── hmac.py │ │ │ │ ├── kdf │ │ │ │ ├── __init__.py │ │ │ │ ├── concatkdf.py │ │ │ │ ├── hkdf.py │ │ │ │ ├── kbkdf.py │ │ │ │ ├── pbkdf2.py │ │ │ │ ├── scrypt.py │ │ │ │ └── x963kdf.py │ │ │ │ ├── keywrap.py │ │ │ │ ├── mac.py │ │ │ │ ├── padding.py │ │ │ │ ├── serialization.py │ │ │ │ └── twofactor │ │ │ │ ├── __init__.py │ │ │ │ ├── hotp.py │ │ │ │ ├── totp.py │ │ │ │ └── utils.py │ │ ├── utils.py │ │ └── x509 │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── certificate_transparency.py │ │ │ ├── extensions.py │ │ │ ├── general_name.py │ │ │ ├── name.py │ │ │ └── oid.py │ ├── drive.py │ ├── earthengine_api-0.1.126-py2.7.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── entry_points.txt │ │ ├── installed-files.txt │ │ ├── requires.txt │ │ └── top_level.txt │ ├── ee │ │ ├── __init__.py │ │ ├── _helpers.py │ │ ├── apifunction.py │ │ ├── apitestcase.py │ │ ├── batch.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── commands.py │ │ │ ├── eecli.py │ │ │ ├── eecli_wrapper.py │ │ │ └── utils.py │ │ ├── collection.py │ │ ├── computedobject.py │ │ ├── customfunction.py │ │ ├── data.py │ │ ├── deprecation.py │ │ ├── deserializer.py │ │ ├── dictionary.py │ │ ├── ee_date.py │ │ ├── ee_exception.py │ │ ├── ee_list.py │ │ ├── ee_number.py │ │ ├── ee_string.py │ │ ├── ee_types.py │ │ ├── element.py │ │ ├── encodable.py │ │ ├── feature.py │ │ ├── featurecollection.py │ │ ├── filter.py │ │ ├── function.py │ │ ├── geometry.py │ │ ├── image.py │ │ ├── imagecollection.py │ │ ├── mapclient.py │ │ ├── oauth.py │ │ ├── serializer.py │ │ ├── terrain.py │ │ └── tests │ │ │ ├── _helpers_test.py │ │ │ ├── apifunction_test.py │ │ │ ├── batch_test.py │ │ │ ├── collection_test.py │ │ │ ├── computedobject_test.py │ │ │ ├── data_test.py │ │ │ ├── date_test.py │ │ │ ├── deserializer_test.py │ │ │ ├── dictionary_test.py │ │ │ ├── ee_test.py │ │ │ ├── element_test.py │ │ │ ├── feature_test.py │ │ │ ├── featurecollection_test.py │ │ │ ├── filter_test.py │ │ │ ├── function_test.py │ │ │ ├── geometry_test.py │ │ │ ├── image_test.py │ │ │ ├── imagecollection_test.py │ │ │ ├── list_test.py │ │ │ ├── number_test.py │ │ │ ├── oauth_test.py │ │ │ ├── serializer_test.py │ │ │ └── string_test.py │ ├── enum │ │ ├── LICENSE │ │ ├── README │ │ └── __init__.py │ ├── enum34-1.1.6.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ ├── google_api_python_client-1.6.4.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ ├── googleapiclient │ │ ├── __init__.py │ │ ├── _auth.py │ │ ├── channel.py │ │ ├── discovery.py │ │ ├── discovery_cache │ │ │ ├── __init__.py │ │ │ ├── appengine_memcache.py │ │ │ ├── base.py │ │ │ └── file_cache.py │ │ ├── errors.py │ │ ├── http.py │ │ ├── mimeparse.py │ │ ├── model.py │ │ ├── sample_tools.py │ │ └── schema.py │ ├── httplib2-0.10.3.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ ├── httplib2 │ │ ├── __init__.py │ │ ├── cacerts.txt │ │ ├── iri2uri.py │ │ └── socks.py │ ├── idna-2.6.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ ├── idna │ │ ├── __init__.py │ │ ├── codec.py │ │ ├── compat.py │ │ ├── core.py │ │ ├── idnadata.py │ │ ├── intranges.py │ │ ├── package_data.py │ │ └── uts46data.py │ ├── ipaddress-1.0.18.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ ├── ipaddress.py │ ├── oauth2client-4.1.2.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ ├── oauth2client │ │ ├── __init__.py │ │ ├── _helpers.py │ │ ├── _openssl_crypt.py │ │ ├── _pkce.py │ │ ├── _pure_python_crypt.py │ │ ├── _pycrypto_crypt.py │ │ ├── client.py │ │ ├── clientsecrets.py │ │ ├── contrib │ │ │ ├── __init__.py │ │ │ ├── _appengine_ndb.py │ │ │ ├── _metadata.py │ │ │ ├── appengine.py │ │ │ ├── devshell.py │ │ │ ├── dictionary_storage.py │ │ │ ├── django_util │ │ │ │ ├── __init__.py │ │ │ │ ├── apps.py │ │ │ │ ├── decorators.py │ │ │ │ ├── models.py │ │ │ │ ├── signals.py │ │ │ │ ├── site.py │ │ │ │ ├── storage.py │ │ │ │ └── views.py │ │ │ ├── flask_util.py │ │ │ ├── gce.py │ │ │ ├── keyring_storage.py │ │ │ ├── multiprocess_file_storage.py │ │ │ ├── sqlalchemy.py │ │ │ └── xsrfutil.py │ │ ├── crypt.py │ │ ├── file.py │ │ ├── service_account.py │ │ ├── tools.py │ │ └── transport.py │ ├── pyOpenSSL-17.3.0.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ ├── pyasn1-0.3.7.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ ├── top_level.txt │ │ └── zip-safe │ ├── pyasn1 │ │ ├── __init__.py │ │ ├── codec │ │ │ ├── __init__.py │ │ │ ├── ber │ │ │ │ ├── __init__.py │ │ │ │ ├── decoder.py │ │ │ │ ├── encoder.py │ │ │ │ └── eoo.py │ │ │ ├── cer │ │ │ │ ├── __init__.py │ │ │ │ ├── decoder.py │ │ │ │ └── encoder.py │ │ │ ├── der │ │ │ │ ├── __init__.py │ │ │ │ ├── decoder.py │ │ │ │ └── encoder.py │ │ │ └── native │ │ │ │ ├── __init__.py │ │ │ │ ├── decoder.py │ │ │ │ └── encoder.py │ │ ├── compat │ │ │ ├── __init__.py │ │ │ ├── binary.py │ │ │ ├── calling.py │ │ │ ├── dateandtime.py │ │ │ ├── integer.py │ │ │ ├── octets.py │ │ │ └── string.py │ │ ├── debug.py │ │ ├── error.py │ │ └── type │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── char.py │ │ │ ├── constraint.py │ │ │ ├── error.py │ │ │ ├── namedtype.py │ │ │ ├── namedval.py │ │ │ ├── tag.py │ │ │ ├── tagmap.py │ │ │ ├── univ.py │ │ │ └── useful.py │ ├── pyasn1_modules-0.1.5.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ ├── top_level.txt │ │ └── zip-safe │ ├── pyasn1_modules │ │ ├── __init__.py │ │ ├── pem.py │ │ ├── rfc1155.py │ │ ├── rfc1157.py │ │ ├── rfc1901.py │ │ ├── rfc1902.py │ │ ├── rfc1905.py │ │ ├── rfc2251.py │ │ ├── rfc2314.py │ │ ├── rfc2315.py │ │ ├── rfc2437.py │ │ ├── rfc2459.py │ │ ├── rfc2511.py │ │ ├── rfc2560.py │ │ ├── rfc3279.py │ │ ├── rfc3280.py │ │ ├── rfc3281.py │ │ ├── rfc3412.py │ │ ├── rfc3414.py │ │ ├── rfc3447.py │ │ ├── rfc3852.py │ │ ├── rfc4210.py │ │ ├── rfc4211.py │ │ ├── rfc5208.py │ │ ├── rfc5280.py │ │ ├── rfc5652.py │ │ └── rfc6402.py │ ├── pycparser-2.18.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ ├── pycparser │ │ ├── __init__.py │ │ ├── _ast_gen.py │ │ ├── _build_tables.py │ │ ├── _c_ast.cfg │ │ ├── ast_transforms.py │ │ ├── c_ast.py │ │ ├── c_generator.py │ │ ├── c_lexer.py │ │ ├── c_parser.py │ │ ├── lextab.py │ │ ├── ply │ │ │ ├── __init__.py │ │ │ ├── cpp.py │ │ │ ├── ctokens.py │ │ │ ├── lex.py │ │ │ ├── yacc.py │ │ │ └── ygen.py │ │ ├── plyparser.py │ │ └── yacctab.py │ ├── rsa-3.4.2.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ ├── metadata.json │ │ └── top_level.txt │ ├── rsa │ │ ├── __init__.py │ │ ├── _compat.py │ │ ├── _version133.py │ │ ├── _version200.py │ │ ├── asn1.py │ │ ├── bigfile.py │ │ ├── cli.py │ │ ├── common.py │ │ ├── core.py │ │ ├── key.py │ │ ├── parallel.py │ │ ├── pem.py │ │ ├── pkcs1.py │ │ ├── prime.py │ │ ├── randnum.py │ │ ├── transform.py │ │ ├── util.py │ │ └── varblock.py │ ├── six-1.11.0.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ ├── six.py │ ├── uritemplate-3.0.0.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ └── uritemplate │ │ ├── __init__.py │ │ ├── api.py │ │ ├── template.py │ │ └── variable.py ├── main │ ├── __init__.py │ ├── auth.py │ ├── datastore.py │ ├── remap_api.py │ └── shared.py ├── package.json ├── remap │ ├── __init__.py │ ├── assessment.py │ ├── classification.py │ ├── parameters.py │ ├── predictor_image.py │ └── predictors.py ├── server.py ├── static │ ├── css │ │ ├── home-style.css │ │ ├── jquery.minicolors.css │ │ ├── materialize.css │ │ ├── materialize_default.min.css │ │ └── nouislider.css │ ├── data │ │ ├── remap_points_Dubai_2003.csv │ │ ├── remap_points_Dubai_2017.csv │ │ ├── remap_points_amazonDeforestation.csv │ │ ├── remap_points_carpentariaMangroves.csv │ │ ├── remap_points_chedubaMyanmar.csv │ │ ├── remap_training_Dubai_2003.json │ │ ├── remap_training_Dubai_2017.json │ │ ├── remap_training_amazonDeforestation.json │ │ ├── remap_training_carpentariaMangroves.json │ │ └── remap_training_chedubaMyanmar.json │ ├── favicons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-256x256.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── manifest.json │ │ ├── mstile-150x150.png │ │ └── safari-pinned-tab.svg │ ├── fonts │ │ └── roboto │ │ │ ├── Roboto-Bold.eot │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-Bold.woff │ │ │ ├── Roboto-Bold.woff2 │ │ │ ├── Roboto-Light.eot │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-Light.woff │ │ │ ├── Roboto-Light.woff2 │ │ │ ├── Roboto-Medium.eot │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-Medium.woff │ │ │ ├── Roboto-Medium.woff2 │ │ │ ├── Roboto-Regular.eot │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Regular.woff │ │ │ ├── Roboto-Regular.woff2 │ │ │ ├── Roboto-Thin.eot │ │ │ ├── Roboto-Thin.ttf │ │ │ ├── Roboto-Thin.woff │ │ │ └── Roboto-Thin.woff2 │ ├── g-logo.png │ ├── images │ │ ├── Baobabs_Logo_v1_Sponsors-01.png │ │ ├── Baobabs_Logo_v2.png │ │ ├── Baobabs_Logo_v3_Sponsors-01.png │ │ ├── Caracara.jpg │ │ ├── CurlewSand.jpg │ │ ├── GentooPenguin.jpg │ │ ├── GoogleEarthEngine_Grey_108.png │ │ ├── GoogleEarthEngine_v1.png │ │ ├── Logo_v4_RLE_trans-01.png │ │ ├── Logo_v4c_RLE_red-01.png │ │ ├── Logv7-01.png │ │ ├── Murray-23.jpg │ │ ├── NickMurray-10.jpg │ │ ├── NickMurray-19.jpg │ │ ├── NickMurray-41.jpg │ │ ├── NickMurray-62.jpg │ │ ├── NickMurray-77.jpg │ │ ├── ShyAlbatross.jpg │ │ ├── YellowEyedPenguin.jpg │ │ ├── cem-white.png │ │ ├── iucn-white.png │ │ ├── logo_RLE_website.jpg │ │ └── raw │ │ │ ├── Caracara.jpg │ │ │ ├── CurlewSand.jpg │ │ │ ├── GentooPenguin.jpg │ │ │ ├── Murray-23.jpg │ │ │ ├── NickMurray-10.jpg │ │ │ ├── NickMurray-19.jpg │ │ │ ├── NickMurray-41.jpg │ │ │ ├── NickMurray-62.jpg │ │ │ ├── NickMurray-77.jpg │ │ │ ├── ShyAlbatross.jpg │ │ │ ├── YellowEyedPenguin.jpg │ │ │ └── logo_RLE_website.jpg │ ├── js │ │ ├── app-min.js │ │ ├── app.js │ │ ├── app │ │ │ ├── class.js │ │ │ ├── data.js │ │ │ ├── init.js │ │ │ ├── map.js │ │ │ ├── oauth.js │ │ │ └── region.js │ │ ├── home.js │ │ ├── jquery.minicolors.js │ │ ├── materialize.min.js │ │ ├── nouislider.js │ │ ├── nouislider.min.js │ │ ├── scrollspy.js │ │ ├── togeojson-min.js │ │ ├── togeojson.js │ │ ├── wNumb-min.js │ │ └── wNumb.js │ ├── logo.png │ ├── logos │ │ ├── Baobabs_Logo_v2_Outline_Red-01.png │ │ ├── Baobabs_Logo_v2_Outline_White-01.png │ │ ├── LogoRedSponsors_v1_small-01.png │ │ └── Logo_Red_v1_small-01.png │ ├── sitemap.xml │ └── tutorials │ │ ├── RemapTutorial1-v1-2.pdf │ │ ├── RemapTutorial2-v1-2.pdf │ │ └── RemapUserGuide-v1-2.pdf └── templates │ ├── about.html │ ├── faq.html │ ├── home.html │ ├── layout.html │ ├── methods.html │ ├── privacy.html │ └── tutorials.html ├── das.sh ├── deploy.sh └── remap_dev.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/README.md -------------------------------------------------------------------------------- /app/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/.babelrc -------------------------------------------------------------------------------- /app/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/.editorconfig -------------------------------------------------------------------------------- /app/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/.eslintignore -------------------------------------------------------------------------------- /app/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/.eslintrc.js -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/.postcssrc.js -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/README.md -------------------------------------------------------------------------------- /app/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/build/build.js -------------------------------------------------------------------------------- /app/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/build/check-versions.js -------------------------------------------------------------------------------- /app/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/build/dev-client.js -------------------------------------------------------------------------------- /app/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/build/dev-server.js -------------------------------------------------------------------------------- /app/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/build/utils.js -------------------------------------------------------------------------------- /app/build/vue-loader.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/build/vue-loader.conf.js -------------------------------------------------------------------------------- /app/build/webpack.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/build/webpack.base.conf.js -------------------------------------------------------------------------------- /app/build/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/build/webpack.dev.conf.js -------------------------------------------------------------------------------- /app/build/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/build/webpack.prod.conf.js -------------------------------------------------------------------------------- /app/build/webpack.test.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/build/webpack.test.conf.js -------------------------------------------------------------------------------- /app/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/config/dev.env.js -------------------------------------------------------------------------------- /app/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/config/index.js -------------------------------------------------------------------------------- /app/config/prod.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/config/prod.env.js -------------------------------------------------------------------------------- /app/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/config/test.env.js -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/index.html -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/package.json -------------------------------------------------------------------------------- /app/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/App.vue -------------------------------------------------------------------------------- /app/src/assets/LogoRedSponsors_v1_small-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/assets/LogoRedSponsors_v1_small-01.png -------------------------------------------------------------------------------- /app/src/assets/g-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/assets/g-logo.png -------------------------------------------------------------------------------- /app/src/components/Assessment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/components/Assessment.vue -------------------------------------------------------------------------------- /app/src/components/BuildTraining.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/components/BuildTraining.vue -------------------------------------------------------------------------------- /app/src/components/Classify.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/components/Classify.vue -------------------------------------------------------------------------------- /app/src/components/EmailAddress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/components/EmailAddress.vue -------------------------------------------------------------------------------- /app/src/components/Export.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/components/Export.vue -------------------------------------------------------------------------------- /app/src/components/FocusRegion.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/components/FocusRegion.vue -------------------------------------------------------------------------------- /app/src/components/GMap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/components/GMap.vue -------------------------------------------------------------------------------- /app/src/components/Layer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/components/Layer.vue -------------------------------------------------------------------------------- /app/src/components/Loader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/components/Loader.vue -------------------------------------------------------------------------------- /app/src/components/MapControl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/components/MapControl.vue -------------------------------------------------------------------------------- /app/src/components/OpacityControl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/components/OpacityControl.vue -------------------------------------------------------------------------------- /app/src/components/PastSwitch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/components/PastSwitch.vue -------------------------------------------------------------------------------- /app/src/components/Results.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/components/Results.vue -------------------------------------------------------------------------------- /app/src/components/SearchBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/components/SearchBox.vue -------------------------------------------------------------------------------- /app/src/components/SelectPredictors.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/components/SelectPredictors.vue -------------------------------------------------------------------------------- /app/src/components/Sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/components/Sidebar.vue -------------------------------------------------------------------------------- /app/src/components/doDownload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/components/doDownload.js -------------------------------------------------------------------------------- /app/src/components/modals/ModalAssessment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/components/modals/ModalAssessment.vue -------------------------------------------------------------------------------- /app/src/components/modals/ModalClass.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/components/modals/ModalClass.vue -------------------------------------------------------------------------------- /app/src/components/modals/ModalHelp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/components/modals/ModalHelp.vue -------------------------------------------------------------------------------- /app/src/components/modals/ModalResults.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/components/modals/ModalResults.vue -------------------------------------------------------------------------------- /app/src/components/modals/ModalUpload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/components/modals/ModalUpload.vue -------------------------------------------------------------------------------- /app/src/components/modals/Status.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/components/modals/Status.vue -------------------------------------------------------------------------------- /app/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/main.js -------------------------------------------------------------------------------- /app/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/store/index.js -------------------------------------------------------------------------------- /app/src/store/modules/AuthModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/store/modules/AuthModule.js -------------------------------------------------------------------------------- /app/src/store/modules/ClassModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/store/modules/ClassModule.js -------------------------------------------------------------------------------- /app/src/store/modules/MapModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/src/store/modules/MapModule.js -------------------------------------------------------------------------------- /app/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/css/materialize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/static/css/materialize.css -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/static/fonts/roboto/Roboto-Bold.eot -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/static/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/static/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/static/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/static/fonts/roboto/Roboto-Light.eot -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/static/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/static/fonts/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/static/fonts/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/static/fonts/roboto/Roboto-Medium.eot -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/static/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/static/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/static/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/static/fonts/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/static/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/static/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/static/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/static/fonts/roboto/Roboto-Thin.eot -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/static/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/static/fonts/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /app/static/fonts/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/static/fonts/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /app/static/js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/static/js/materialize.min.js -------------------------------------------------------------------------------- /app/test/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/test/e2e/custom-assertions/elementCount.js -------------------------------------------------------------------------------- /app/test/e2e/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/test/e2e/nightwatch.conf.js -------------------------------------------------------------------------------- /app/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/test/e2e/runner.js -------------------------------------------------------------------------------- /app/test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/test/e2e/specs/test.js -------------------------------------------------------------------------------- /app/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/test/unit/.eslintrc -------------------------------------------------------------------------------- /app/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/test/unit/index.js -------------------------------------------------------------------------------- /app/test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/test/unit/karma.conf.js -------------------------------------------------------------------------------- /app/test/unit/specs/Hello.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/app/test/unit/specs/Hello.spec.js -------------------------------------------------------------------------------- /backend/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/app.yaml -------------------------------------------------------------------------------- /backend/bower_components/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/.bower.json -------------------------------------------------------------------------------- /backend/bower_components/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /backend/bower_components/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/LICENSE.txt -------------------------------------------------------------------------------- /backend/bower_components/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/README.md -------------------------------------------------------------------------------- /backend/bower_components/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/bower.json -------------------------------------------------------------------------------- /backend/bower_components/jquery/dist/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/dist/core.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/dist/jquery.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /backend/bower_components/jquery/dist/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/dist/jquery.slim.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/dist/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/dist/jquery.slim.min.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/dist/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/dist/jquery.slim.min.map -------------------------------------------------------------------------------- /backend/bower_components/jquery/external/sizzle/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/external/sizzle/LICENSE.txt -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/.eslintrc.json -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/ajax.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/ajax/load.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/ajax/parseXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/ajax/parseXML.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return window.location; 5 | } ); 6 | -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/ajax/var/nonce.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/ajax/var/rquery.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/attributes.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/attributes/attr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/attributes/attr.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/attributes/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/attributes/classes.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/attributes/prop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/attributes/prop.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/attributes/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/attributes/support.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/attributes/val.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/attributes/val.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/callbacks.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/core.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/core/DOMEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/core/DOMEval.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/core/access.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/core/init.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/core/parseHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/core/parseHTML.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/core/ready.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/core/readyException.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/core/readyException.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/core/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/core/support.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/core/var/rsingleTag.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/css.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/css/addGetHookIf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/css/addGetHookIf.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/css/adjustCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/css/adjustCSS.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/css/curCSS.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/css/showHide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/css/showHide.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/css/support.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/css/var/cssExpand.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/css/var/getStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/css/var/getStyles.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/css/var/rmargin.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/css/var/rnumnonpx.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/css/var/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/css/var/swap.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/data.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/data/Data.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/data/var/acceptData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/data/var/acceptData.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/data/var/dataPriv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/data/var/dataPriv.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/data/var/dataUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/data/var/dataUser.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/deferred.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/deprecated.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/dimensions.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/effects.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/effects/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/effects/Tween.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/event.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/event/ajax.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/event/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/event/alias.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/event/focusin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/event/focusin.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/event/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/event/support.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/event/trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/event/trigger.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/exports/amd.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/exports/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/exports/global.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/jquery.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/manipulation.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/manipulation/getAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/manipulation/getAll.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/offset.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/queue.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/queue/delay.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/selector-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/selector-native.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/selector-sizzle.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() { 2 | "use strict"; 3 | } ); 4 | -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/serialize.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/traversing.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return []; 5 | } ); 6 | -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | // [[Class]] -> type pairs 5 | return {}; 6 | } ); 7 | -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/var/concat.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/var/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/var/document.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/var/fnToString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/var/fnToString.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/var/getProto.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return Object.getPrototypeOf; 5 | } ); 6 | -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/var/push.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/var/rcssNum.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/var/rnothtmlwhite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/var/rnothtmlwhite.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/var/slice.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/var/support.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/var/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/var/toString.js -------------------------------------------------------------------------------- /backend/bower_components/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/jquery/src/wrap.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/.bower.json -------------------------------------------------------------------------------- /backend/bower_components/materialize/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/.editorconfig -------------------------------------------------------------------------------- /backend/bower_components/materialize/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/.gitattributes -------------------------------------------------------------------------------- /backend/bower_components/materialize/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/.npmignore -------------------------------------------------------------------------------- /backend/bower_components/materialize/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/.travis.yml -------------------------------------------------------------------------------- /backend/bower_components/materialize/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/CHANGELOG.md -------------------------------------------------------------------------------- /backend/bower_components/materialize/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/CONTRIBUTING.md -------------------------------------------------------------------------------- /backend/bower_components/materialize/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /backend/bower_components/materialize/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/LICENSE -------------------------------------------------------------------------------- /backend/bower_components/materialize/bin/materialize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/bin/materialize.css -------------------------------------------------------------------------------- /backend/bower_components/materialize/bin/materialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/bin/materialize.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/bower.json -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/animation.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/buttons.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/cards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/cards.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/carousel.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/chips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/chips.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/collapsible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/collapsible.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/dropdown.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/forms.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/global.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/hammer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/hammer.min.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/initial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/initial.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/jquery.hammer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/jquery.hammer.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/materialbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/materialbox.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/modal.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/parallax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/parallax.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/pushpin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/pushpin.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/scrollFire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/scrollFire.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/scrollspy.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/sideNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/sideNav.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/slider.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/tabs.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/toasts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/toasts.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/tooltip.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/transitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/transitions.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/velocity.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/velocity.min.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/js/waves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/js/waves.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/package.js -------------------------------------------------------------------------------- /backend/bower_components/materialize/sass/_style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/bower_components/materialize/sass/_style.scss -------------------------------------------------------------------------------- /backend/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/config.py -------------------------------------------------------------------------------- /backend/cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/cron.yaml -------------------------------------------------------------------------------- /backend/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/index.html -------------------------------------------------------------------------------- /backend/dist/static/css/materialize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/css/materialize.css -------------------------------------------------------------------------------- /backend/dist/static/fonts/roboto/Roboto-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/fonts/roboto/Roboto-Bold.eot -------------------------------------------------------------------------------- /backend/dist/static/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /backend/dist/static/fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /backend/dist/static/fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /backend/dist/static/fonts/roboto/Roboto-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/fonts/roboto/Roboto-Light.eot -------------------------------------------------------------------------------- /backend/dist/static/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /backend/dist/static/fonts/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/fonts/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /backend/dist/static/fonts/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/fonts/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /backend/dist/static/fonts/roboto/Roboto-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/fonts/roboto/Roboto-Medium.eot -------------------------------------------------------------------------------- /backend/dist/static/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /backend/dist/static/fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /backend/dist/static/fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /backend/dist/static/fonts/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/fonts/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /backend/dist/static/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /backend/dist/static/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /backend/dist/static/fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /backend/dist/static/fonts/roboto/Roboto-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/fonts/roboto/Roboto-Thin.eot -------------------------------------------------------------------------------- /backend/dist/static/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /backend/dist/static/fonts/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/fonts/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /backend/dist/static/fonts/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/fonts/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /backend/dist/static/js/app.d01868c28f9d0e561fd0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/js/app.d01868c28f9d0e561fd0.js -------------------------------------------------------------------------------- /backend/dist/static/js/app.d01868c28f9d0e561fd0.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/js/app.d01868c28f9d0e561fd0.js.map -------------------------------------------------------------------------------- /backend/dist/static/js/manifest.3baddefc5e03320cea18.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/js/manifest.3baddefc5e03320cea18.js -------------------------------------------------------------------------------- /backend/dist/static/js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/js/materialize.min.js -------------------------------------------------------------------------------- /backend/dist/static/js/vendor.100e94904da11ff6f096.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/js/vendor.100e94904da11ff6f096.js -------------------------------------------------------------------------------- /backend/dist/static/js/vendor.15c2d5430a2db0fec105.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/dist/static/js/vendor.15c2d5430a2db0fec105.js -------------------------------------------------------------------------------- /backend/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/gulpfile.js -------------------------------------------------------------------------------- /backend/lib/OpenSSL/SSL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/OpenSSL/SSL.py -------------------------------------------------------------------------------- /backend/lib/OpenSSL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/OpenSSL/__init__.py -------------------------------------------------------------------------------- /backend/lib/OpenSSL/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/OpenSSL/_util.py -------------------------------------------------------------------------------- /backend/lib/OpenSSL/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/OpenSSL/crypto.py -------------------------------------------------------------------------------- /backend/lib/OpenSSL/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/OpenSSL/debug.py -------------------------------------------------------------------------------- /backend/lib/OpenSSL/tsafe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/OpenSSL/tsafe.py -------------------------------------------------------------------------------- /backend/lib/OpenSSL/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/OpenSSL/version.py -------------------------------------------------------------------------------- /backend/lib/__init__.py: -------------------------------------------------------------------------------- 1 | from drive import * -------------------------------------------------------------------------------- /backend/lib/_cffi_backend.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/_cffi_backend.so -------------------------------------------------------------------------------- /backend/lib/apiclient/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/apiclient/__init__.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto-0.23.0.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto-0.23.0.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /backend/lib/asn1crypto-0.23.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /backend/lib/asn1crypto-0.23.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto-0.23.0.dist-info/METADATA -------------------------------------------------------------------------------- /backend/lib/asn1crypto-0.23.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto-0.23.0.dist-info/RECORD -------------------------------------------------------------------------------- /backend/lib/asn1crypto-0.23.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto-0.23.0.dist-info/WHEEL -------------------------------------------------------------------------------- /backend/lib/asn1crypto-0.23.0.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto-0.23.0.dist-info/metadata.json -------------------------------------------------------------------------------- /backend/lib/asn1crypto-0.23.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | asn1crypto 2 | -------------------------------------------------------------------------------- /backend/lib/asn1crypto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/__init__.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/_elliptic_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/_elliptic_curve.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/_errors.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/_ffi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/_ffi.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/_inet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/_inet.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/_int.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/_iri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/_iri.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/_ordereddict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/_ordereddict.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/_perf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/lib/asn1crypto/_perf/_big_num_ctypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/_perf/_big_num_ctypes.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/_teletex_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/_teletex_codec.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/_types.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/algos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/algos.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/cms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/cms.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/core.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/crl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/crl.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/csr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/csr.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/keys.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/ocsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/ocsp.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/parser.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/pdf.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/pem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/pem.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/pkcs12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/pkcs12.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/tsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/tsp.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/util.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/version.py -------------------------------------------------------------------------------- /backend/lib/asn1crypto/x509.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/asn1crypto/x509.py -------------------------------------------------------------------------------- /backend/lib/cffi-1.11.2.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi-1.11.2.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /backend/lib/cffi-1.11.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /backend/lib/cffi-1.11.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi-1.11.2.dist-info/METADATA -------------------------------------------------------------------------------- /backend/lib/cffi-1.11.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi-1.11.2.dist-info/RECORD -------------------------------------------------------------------------------- /backend/lib/cffi-1.11.2.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi-1.11.2.dist-info/WHEEL -------------------------------------------------------------------------------- /backend/lib/cffi-1.11.2.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi-1.11.2.dist-info/entry_points.txt -------------------------------------------------------------------------------- /backend/lib/cffi-1.11.2.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi-1.11.2.dist-info/metadata.json -------------------------------------------------------------------------------- /backend/lib/cffi-1.11.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi-1.11.2.dist-info/top_level.txt -------------------------------------------------------------------------------- /backend/lib/cffi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi/__init__.py -------------------------------------------------------------------------------- /backend/lib/cffi/_cffi_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi/_cffi_errors.h -------------------------------------------------------------------------------- /backend/lib/cffi/_cffi_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi/_cffi_include.h -------------------------------------------------------------------------------- /backend/lib/cffi/_embedding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi/_embedding.h -------------------------------------------------------------------------------- /backend/lib/cffi/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi/api.py -------------------------------------------------------------------------------- /backend/lib/cffi/backend_ctypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi/backend_ctypes.py -------------------------------------------------------------------------------- /backend/lib/cffi/cffi_opcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi/cffi_opcode.py -------------------------------------------------------------------------------- /backend/lib/cffi/commontypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi/commontypes.py -------------------------------------------------------------------------------- /backend/lib/cffi/cparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi/cparser.py -------------------------------------------------------------------------------- /backend/lib/cffi/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi/error.py -------------------------------------------------------------------------------- /backend/lib/cffi/ffiplatform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi/ffiplatform.py -------------------------------------------------------------------------------- /backend/lib/cffi/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi/lock.py -------------------------------------------------------------------------------- /backend/lib/cffi/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi/model.py -------------------------------------------------------------------------------- /backend/lib/cffi/parse_c_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi/parse_c_type.h -------------------------------------------------------------------------------- /backend/lib/cffi/recompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi/recompiler.py -------------------------------------------------------------------------------- /backend/lib/cffi/setuptools_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi/setuptools_ext.py -------------------------------------------------------------------------------- /backend/lib/cffi/vengine_cpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi/vengine_cpy.py -------------------------------------------------------------------------------- /backend/lib/cffi/vengine_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi/vengine_gen.py -------------------------------------------------------------------------------- /backend/lib/cffi/verifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cffi/verifier.py -------------------------------------------------------------------------------- /backend/lib/cryptography-2.1.1.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography-2.1.1.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /backend/lib/cryptography-2.1.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /backend/lib/cryptography-2.1.1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography-2.1.1.dist-info/METADATA -------------------------------------------------------------------------------- /backend/lib/cryptography-2.1.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography-2.1.1.dist-info/RECORD -------------------------------------------------------------------------------- /backend/lib/cryptography-2.1.1.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography-2.1.1.dist-info/WHEEL -------------------------------------------------------------------------------- /backend/lib/cryptography-2.1.1.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography-2.1.1.dist-info/metadata.json -------------------------------------------------------------------------------- /backend/lib/cryptography-2.1.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _constant_time 2 | _openssl 3 | _padding 4 | cryptography 5 | -------------------------------------------------------------------------------- /backend/lib/cryptography/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/__about__.py -------------------------------------------------------------------------------- /backend/lib/cryptography/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/__init__.py -------------------------------------------------------------------------------- /backend/lib/cryptography/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/exceptions.py -------------------------------------------------------------------------------- /backend/lib/cryptography/fernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/fernet.py -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/__init__.py -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/backends/__init__.py -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/backends/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/backends/interfaces.py -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/backends/openssl/aead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/backends/openssl/aead.py -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/backends/openssl/cmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/backends/openssl/cmac.py -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/backends/openssl/dh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/backends/openssl/dh.py -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/backends/openssl/dsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/backends/openssl/dsa.py -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/backends/openssl/ec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/backends/openssl/ec.py -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/backends/openssl/hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/backends/openssl/hmac.py -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/backends/openssl/rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/backends/openssl/rsa.py -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/backends/openssl/x509.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/backends/openssl/x509.py -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/bindings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/bindings/__init__.py -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/bindings/_openssl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/bindings/_openssl.so -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/bindings/_padding.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/bindings/_padding.so -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/primitives/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/primitives/__init__.py -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/primitives/cmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/primitives/cmac.py -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/primitives/hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/primitives/hashes.py -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/primitives/hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/primitives/hmac.py -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/primitives/kdf/hkdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/primitives/kdf/hkdf.py -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/primitives/kdf/kbkdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/primitives/kdf/kbkdf.py -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/primitives/kdf/pbkdf2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/primitives/kdf/pbkdf2.py -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/primitives/kdf/scrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/primitives/kdf/scrypt.py -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/primitives/keywrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/primitives/keywrap.py -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/primitives/mac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/primitives/mac.py -------------------------------------------------------------------------------- /backend/lib/cryptography/hazmat/primitives/padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/hazmat/primitives/padding.py -------------------------------------------------------------------------------- /backend/lib/cryptography/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/utils.py -------------------------------------------------------------------------------- /backend/lib/cryptography/x509/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/x509/__init__.py -------------------------------------------------------------------------------- /backend/lib/cryptography/x509/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/x509/base.py -------------------------------------------------------------------------------- /backend/lib/cryptography/x509/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/x509/extensions.py -------------------------------------------------------------------------------- /backend/lib/cryptography/x509/general_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/x509/general_name.py -------------------------------------------------------------------------------- /backend/lib/cryptography/x509/name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/x509/name.py -------------------------------------------------------------------------------- /backend/lib/cryptography/x509/oid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/cryptography/x509/oid.py -------------------------------------------------------------------------------- /backend/lib/drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/drive.py -------------------------------------------------------------------------------- /backend/lib/earthengine_api-0.1.126-py2.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /backend/lib/earthengine_api-0.1.126-py2.7.egg-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | earthengine = ee.cli.eecli:main 3 | 4 | -------------------------------------------------------------------------------- /backend/lib/earthengine_api-0.1.126-py2.7.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | google-api-python-client 2 | pyOpenSSL>=0.11 3 | -------------------------------------------------------------------------------- /backend/lib/earthengine_api-0.1.126-py2.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ee 2 | -------------------------------------------------------------------------------- /backend/lib/ee/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/__init__.py -------------------------------------------------------------------------------- /backend/lib/ee/_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/_helpers.py -------------------------------------------------------------------------------- /backend/lib/ee/apifunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/apifunction.py -------------------------------------------------------------------------------- /backend/lib/ee/apitestcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/apitestcase.py -------------------------------------------------------------------------------- /backend/lib/ee/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/batch.py -------------------------------------------------------------------------------- /backend/lib/ee/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/cli/__init__.py -------------------------------------------------------------------------------- /backend/lib/ee/cli/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/cli/commands.py -------------------------------------------------------------------------------- /backend/lib/ee/cli/eecli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/cli/eecli.py -------------------------------------------------------------------------------- /backend/lib/ee/cli/eecli_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/cli/eecli_wrapper.py -------------------------------------------------------------------------------- /backend/lib/ee/cli/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/cli/utils.py -------------------------------------------------------------------------------- /backend/lib/ee/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/collection.py -------------------------------------------------------------------------------- /backend/lib/ee/computedobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/computedobject.py -------------------------------------------------------------------------------- /backend/lib/ee/customfunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/customfunction.py -------------------------------------------------------------------------------- /backend/lib/ee/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/data.py -------------------------------------------------------------------------------- /backend/lib/ee/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/deprecation.py -------------------------------------------------------------------------------- /backend/lib/ee/deserializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/deserializer.py -------------------------------------------------------------------------------- /backend/lib/ee/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/dictionary.py -------------------------------------------------------------------------------- /backend/lib/ee/ee_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/ee_date.py -------------------------------------------------------------------------------- /backend/lib/ee/ee_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/ee_exception.py -------------------------------------------------------------------------------- /backend/lib/ee/ee_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/ee_list.py -------------------------------------------------------------------------------- /backend/lib/ee/ee_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/ee_number.py -------------------------------------------------------------------------------- /backend/lib/ee/ee_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/ee_string.py -------------------------------------------------------------------------------- /backend/lib/ee/ee_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/ee_types.py -------------------------------------------------------------------------------- /backend/lib/ee/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/element.py -------------------------------------------------------------------------------- /backend/lib/ee/encodable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/encodable.py -------------------------------------------------------------------------------- /backend/lib/ee/feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/feature.py -------------------------------------------------------------------------------- /backend/lib/ee/featurecollection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/featurecollection.py -------------------------------------------------------------------------------- /backend/lib/ee/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/filter.py -------------------------------------------------------------------------------- /backend/lib/ee/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/function.py -------------------------------------------------------------------------------- /backend/lib/ee/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/geometry.py -------------------------------------------------------------------------------- /backend/lib/ee/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/image.py -------------------------------------------------------------------------------- /backend/lib/ee/imagecollection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/imagecollection.py -------------------------------------------------------------------------------- /backend/lib/ee/mapclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/mapclient.py -------------------------------------------------------------------------------- /backend/lib/ee/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/oauth.py -------------------------------------------------------------------------------- /backend/lib/ee/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/serializer.py -------------------------------------------------------------------------------- /backend/lib/ee/terrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/terrain.py -------------------------------------------------------------------------------- /backend/lib/ee/tests/_helpers_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/tests/_helpers_test.py -------------------------------------------------------------------------------- /backend/lib/ee/tests/apifunction_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/tests/apifunction_test.py -------------------------------------------------------------------------------- /backend/lib/ee/tests/batch_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/tests/batch_test.py -------------------------------------------------------------------------------- /backend/lib/ee/tests/collection_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/tests/collection_test.py -------------------------------------------------------------------------------- /backend/lib/ee/tests/computedobject_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/tests/computedobject_test.py -------------------------------------------------------------------------------- /backend/lib/ee/tests/data_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/tests/data_test.py -------------------------------------------------------------------------------- /backend/lib/ee/tests/date_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/tests/date_test.py -------------------------------------------------------------------------------- /backend/lib/ee/tests/deserializer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/tests/deserializer_test.py -------------------------------------------------------------------------------- /backend/lib/ee/tests/dictionary_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/tests/dictionary_test.py -------------------------------------------------------------------------------- /backend/lib/ee/tests/ee_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/tests/ee_test.py -------------------------------------------------------------------------------- /backend/lib/ee/tests/element_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/tests/element_test.py -------------------------------------------------------------------------------- /backend/lib/ee/tests/feature_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/tests/feature_test.py -------------------------------------------------------------------------------- /backend/lib/ee/tests/featurecollection_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/tests/featurecollection_test.py -------------------------------------------------------------------------------- /backend/lib/ee/tests/filter_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/tests/filter_test.py -------------------------------------------------------------------------------- /backend/lib/ee/tests/function_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/tests/function_test.py -------------------------------------------------------------------------------- /backend/lib/ee/tests/geometry_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/tests/geometry_test.py -------------------------------------------------------------------------------- /backend/lib/ee/tests/image_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/tests/image_test.py -------------------------------------------------------------------------------- /backend/lib/ee/tests/imagecollection_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/tests/imagecollection_test.py -------------------------------------------------------------------------------- /backend/lib/ee/tests/list_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/tests/list_test.py -------------------------------------------------------------------------------- /backend/lib/ee/tests/number_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/tests/number_test.py -------------------------------------------------------------------------------- /backend/lib/ee/tests/oauth_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/tests/oauth_test.py -------------------------------------------------------------------------------- /backend/lib/ee/tests/serializer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/tests/serializer_test.py -------------------------------------------------------------------------------- /backend/lib/ee/tests/string_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ee/tests/string_test.py -------------------------------------------------------------------------------- /backend/lib/enum/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/enum/LICENSE -------------------------------------------------------------------------------- /backend/lib/enum/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/enum/README -------------------------------------------------------------------------------- /backend/lib/enum/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/enum/__init__.py -------------------------------------------------------------------------------- /backend/lib/enum34-1.1.6.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/enum34-1.1.6.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /backend/lib/enum34-1.1.6.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /backend/lib/enum34-1.1.6.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/enum34-1.1.6.dist-info/METADATA -------------------------------------------------------------------------------- /backend/lib/enum34-1.1.6.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/enum34-1.1.6.dist-info/RECORD -------------------------------------------------------------------------------- /backend/lib/enum34-1.1.6.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.29.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | 6 | -------------------------------------------------------------------------------- /backend/lib/enum34-1.1.6.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/enum34-1.1.6.dist-info/metadata.json -------------------------------------------------------------------------------- /backend/lib/enum34-1.1.6.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | enum 2 | -------------------------------------------------------------------------------- /backend/lib/google_api_python_client-1.6.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /backend/lib/googleapiclient/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/googleapiclient/__init__.py -------------------------------------------------------------------------------- /backend/lib/googleapiclient/_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/googleapiclient/_auth.py -------------------------------------------------------------------------------- /backend/lib/googleapiclient/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/googleapiclient/channel.py -------------------------------------------------------------------------------- /backend/lib/googleapiclient/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/googleapiclient/discovery.py -------------------------------------------------------------------------------- /backend/lib/googleapiclient/discovery_cache/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/googleapiclient/discovery_cache/__init__.py -------------------------------------------------------------------------------- /backend/lib/googleapiclient/discovery_cache/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/googleapiclient/discovery_cache/base.py -------------------------------------------------------------------------------- /backend/lib/googleapiclient/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/googleapiclient/errors.py -------------------------------------------------------------------------------- /backend/lib/googleapiclient/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/googleapiclient/http.py -------------------------------------------------------------------------------- /backend/lib/googleapiclient/mimeparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/googleapiclient/mimeparse.py -------------------------------------------------------------------------------- /backend/lib/googleapiclient/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/googleapiclient/model.py -------------------------------------------------------------------------------- /backend/lib/googleapiclient/sample_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/googleapiclient/sample_tools.py -------------------------------------------------------------------------------- /backend/lib/googleapiclient/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/googleapiclient/schema.py -------------------------------------------------------------------------------- /backend/lib/httplib2-0.10.3.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/httplib2-0.10.3.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /backend/lib/httplib2-0.10.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /backend/lib/httplib2-0.10.3.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/httplib2-0.10.3.dist-info/METADATA -------------------------------------------------------------------------------- /backend/lib/httplib2-0.10.3.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/httplib2-0.10.3.dist-info/RECORD -------------------------------------------------------------------------------- /backend/lib/httplib2-0.10.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.29.0) 3 | Root-Is-Purelib: true 4 | Tag: cp27-none-any 5 | 6 | -------------------------------------------------------------------------------- /backend/lib/httplib2-0.10.3.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/httplib2-0.10.3.dist-info/metadata.json -------------------------------------------------------------------------------- /backend/lib/httplib2-0.10.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | httplib2 2 | -------------------------------------------------------------------------------- /backend/lib/httplib2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/httplib2/__init__.py -------------------------------------------------------------------------------- /backend/lib/httplib2/cacerts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/httplib2/cacerts.txt -------------------------------------------------------------------------------- /backend/lib/httplib2/iri2uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/httplib2/iri2uri.py -------------------------------------------------------------------------------- /backend/lib/httplib2/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/httplib2/socks.py -------------------------------------------------------------------------------- /backend/lib/idna-2.6.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/idna-2.6.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /backend/lib/idna-2.6.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /backend/lib/idna-2.6.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/idna-2.6.dist-info/METADATA -------------------------------------------------------------------------------- /backend/lib/idna-2.6.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/idna-2.6.dist-info/RECORD -------------------------------------------------------------------------------- /backend/lib/idna-2.6.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/idna-2.6.dist-info/WHEEL -------------------------------------------------------------------------------- /backend/lib/idna-2.6.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/idna-2.6.dist-info/metadata.json -------------------------------------------------------------------------------- /backend/lib/idna-2.6.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | idna 2 | -------------------------------------------------------------------------------- /backend/lib/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/idna/__init__.py -------------------------------------------------------------------------------- /backend/lib/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/idna/codec.py -------------------------------------------------------------------------------- /backend/lib/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/idna/compat.py -------------------------------------------------------------------------------- /backend/lib/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/idna/core.py -------------------------------------------------------------------------------- /backend/lib/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/idna/idnadata.py -------------------------------------------------------------------------------- /backend/lib/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/idna/intranges.py -------------------------------------------------------------------------------- /backend/lib/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.6' 2 | 3 | -------------------------------------------------------------------------------- /backend/lib/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/idna/uts46data.py -------------------------------------------------------------------------------- /backend/lib/ipaddress-1.0.18.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ipaddress-1.0.18.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /backend/lib/ipaddress-1.0.18.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /backend/lib/ipaddress-1.0.18.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ipaddress-1.0.18.dist-info/METADATA -------------------------------------------------------------------------------- /backend/lib/ipaddress-1.0.18.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ipaddress-1.0.18.dist-info/RECORD -------------------------------------------------------------------------------- /backend/lib/ipaddress-1.0.18.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.29.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | 6 | -------------------------------------------------------------------------------- /backend/lib/ipaddress-1.0.18.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ipaddress-1.0.18.dist-info/metadata.json -------------------------------------------------------------------------------- /backend/lib/ipaddress-1.0.18.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ipaddress 2 | -------------------------------------------------------------------------------- /backend/lib/ipaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/ipaddress.py -------------------------------------------------------------------------------- /backend/lib/oauth2client-4.1.2.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client-4.1.2.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /backend/lib/oauth2client-4.1.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /backend/lib/oauth2client-4.1.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client-4.1.2.dist-info/METADATA -------------------------------------------------------------------------------- /backend/lib/oauth2client-4.1.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client-4.1.2.dist-info/RECORD -------------------------------------------------------------------------------- /backend/lib/oauth2client-4.1.2.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client-4.1.2.dist-info/WHEEL -------------------------------------------------------------------------------- /backend/lib/oauth2client-4.1.2.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client-4.1.2.dist-info/metadata.json -------------------------------------------------------------------------------- /backend/lib/oauth2client-4.1.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | oauth2client 2 | -------------------------------------------------------------------------------- /backend/lib/oauth2client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/__init__.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/_helpers.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/_openssl_crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/_openssl_crypt.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/_pkce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/_pkce.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/_pure_python_crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/_pure_python_crypt.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/_pycrypto_crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/_pycrypto_crypt.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/client.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/clientsecrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/clientsecrets.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/contrib/__init__.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/contrib/_appengine_ndb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/contrib/_appengine_ndb.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/contrib/_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/contrib/_metadata.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/contrib/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/contrib/appengine.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/contrib/devshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/contrib/devshell.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/contrib/dictionary_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/contrib/dictionary_storage.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/contrib/django_util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/contrib/django_util/__init__.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/contrib/django_util/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/contrib/django_util/apps.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/contrib/django_util/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/contrib/django_util/models.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/contrib/django_util/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/contrib/django_util/signals.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/contrib/django_util/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/contrib/django_util/site.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/contrib/django_util/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/contrib/django_util/storage.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/contrib/django_util/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/contrib/django_util/views.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/contrib/flask_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/contrib/flask_util.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/contrib/gce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/contrib/gce.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/contrib/keyring_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/contrib/keyring_storage.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/contrib/sqlalchemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/contrib/sqlalchemy.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/contrib/xsrfutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/contrib/xsrfutil.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/crypt.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/file.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/service_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/service_account.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/tools.py -------------------------------------------------------------------------------- /backend/lib/oauth2client/transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/oauth2client/transport.py -------------------------------------------------------------------------------- /backend/lib/pyOpenSSL-17.3.0.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyOpenSSL-17.3.0.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /backend/lib/pyOpenSSL-17.3.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /backend/lib/pyOpenSSL-17.3.0.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyOpenSSL-17.3.0.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /backend/lib/pyOpenSSL-17.3.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyOpenSSL-17.3.0.dist-info/METADATA -------------------------------------------------------------------------------- /backend/lib/pyOpenSSL-17.3.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyOpenSSL-17.3.0.dist-info/RECORD -------------------------------------------------------------------------------- /backend/lib/pyOpenSSL-17.3.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyOpenSSL-17.3.0.dist-info/WHEEL -------------------------------------------------------------------------------- /backend/lib/pyOpenSSL-17.3.0.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyOpenSSL-17.3.0.dist-info/metadata.json -------------------------------------------------------------------------------- /backend/lib/pyOpenSSL-17.3.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | OpenSSL 2 | -------------------------------------------------------------------------------- /backend/lib/pyasn1-0.3.7.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1-0.3.7.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /backend/lib/pyasn1-0.3.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /backend/lib/pyasn1-0.3.7.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1-0.3.7.dist-info/METADATA -------------------------------------------------------------------------------- /backend/lib/pyasn1-0.3.7.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1-0.3.7.dist-info/RECORD -------------------------------------------------------------------------------- /backend/lib/pyasn1-0.3.7.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1-0.3.7.dist-info/WHEEL -------------------------------------------------------------------------------- /backend/lib/pyasn1-0.3.7.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1-0.3.7.dist-info/metadata.json -------------------------------------------------------------------------------- /backend/lib/pyasn1-0.3.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pyasn1 2 | -------------------------------------------------------------------------------- /backend/lib/pyasn1-0.3.7.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /backend/lib/pyasn1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/__init__.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/codec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/codec/__init__.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/codec/ber/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/codec/ber/__init__.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/codec/ber/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/codec/ber/decoder.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/codec/ber/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/codec/ber/encoder.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/codec/ber/eoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/codec/ber/eoo.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/codec/cer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/codec/cer/__init__.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/codec/cer/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/codec/cer/decoder.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/codec/cer/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/codec/cer/encoder.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/codec/der/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/codec/der/__init__.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/codec/der/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/codec/der/decoder.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/codec/der/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/codec/der/encoder.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/codec/native/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/codec/native/__init__.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/codec/native/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/codec/native/decoder.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/codec/native/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/codec/native/encoder.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/compat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/compat/__init__.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/compat/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/compat/binary.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/compat/calling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/compat/calling.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/compat/dateandtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/compat/dateandtime.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/compat/integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/compat/integer.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/compat/octets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/compat/octets.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/compat/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/compat/string.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/debug.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/error.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/type/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/type/__init__.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/type/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/type/base.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/type/char.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/type/char.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/type/constraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/type/constraint.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/type/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/type/error.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/type/namedtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/type/namedtype.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/type/namedval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/type/namedval.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/type/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/type/tag.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/type/tagmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/type/tagmap.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/type/univ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/type/univ.py -------------------------------------------------------------------------------- /backend/lib/pyasn1/type/useful.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1/type/useful.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules-0.1.5.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules-0.1.5.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules-0.1.5.dist-info/METADATA -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules-0.1.5.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules-0.1.5.dist-info/RECORD -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules-0.1.5.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules-0.1.5.dist-info/WHEEL -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules-0.1.5.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules-0.1.5.dist-info/metadata.json -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules-0.1.5.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pyasn1_modules 2 | -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules-0.1.5.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/__init__.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/pem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/pem.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc1155.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc1155.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc1157.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc1157.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc1901.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc1901.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc1902.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc1902.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc1905.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc1905.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc2251.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc2251.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc2314.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc2314.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc2315.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc2315.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc2437.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc2437.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc2459.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc2459.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc2511.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc2511.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc2560.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc2560.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc3279.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc3279.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc3280.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc3280.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc3281.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc3281.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc3412.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc3412.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc3414.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc3414.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc3447.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc3447.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc3852.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc3852.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc4210.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc4210.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc4211.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc4211.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc5208.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc5208.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc5280.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc5280.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc5652.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc5652.py -------------------------------------------------------------------------------- /backend/lib/pyasn1_modules/rfc6402.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pyasn1_modules/rfc6402.py -------------------------------------------------------------------------------- /backend/lib/pycparser-2.18.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pycparser-2.18.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /backend/lib/pycparser-2.18.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /backend/lib/pycparser-2.18.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pycparser-2.18.dist-info/METADATA -------------------------------------------------------------------------------- /backend/lib/pycparser-2.18.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pycparser-2.18.dist-info/RECORD -------------------------------------------------------------------------------- /backend/lib/pycparser-2.18.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pycparser-2.18.dist-info/WHEEL -------------------------------------------------------------------------------- /backend/lib/pycparser-2.18.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pycparser-2.18.dist-info/metadata.json -------------------------------------------------------------------------------- /backend/lib/pycparser-2.18.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pycparser 2 | -------------------------------------------------------------------------------- /backend/lib/pycparser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pycparser/__init__.py -------------------------------------------------------------------------------- /backend/lib/pycparser/_ast_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pycparser/_ast_gen.py -------------------------------------------------------------------------------- /backend/lib/pycparser/_build_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pycparser/_build_tables.py -------------------------------------------------------------------------------- /backend/lib/pycparser/_c_ast.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pycparser/_c_ast.cfg -------------------------------------------------------------------------------- /backend/lib/pycparser/ast_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pycparser/ast_transforms.py -------------------------------------------------------------------------------- /backend/lib/pycparser/c_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pycparser/c_ast.py -------------------------------------------------------------------------------- /backend/lib/pycparser/c_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pycparser/c_generator.py -------------------------------------------------------------------------------- /backend/lib/pycparser/c_lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pycparser/c_lexer.py -------------------------------------------------------------------------------- /backend/lib/pycparser/c_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pycparser/c_parser.py -------------------------------------------------------------------------------- /backend/lib/pycparser/lextab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pycparser/lextab.py -------------------------------------------------------------------------------- /backend/lib/pycparser/ply/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pycparser/ply/__init__.py -------------------------------------------------------------------------------- /backend/lib/pycparser/ply/cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pycparser/ply/cpp.py -------------------------------------------------------------------------------- /backend/lib/pycparser/ply/ctokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pycparser/ply/ctokens.py -------------------------------------------------------------------------------- /backend/lib/pycparser/ply/lex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pycparser/ply/lex.py -------------------------------------------------------------------------------- /backend/lib/pycparser/ply/yacc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pycparser/ply/yacc.py -------------------------------------------------------------------------------- /backend/lib/pycparser/ply/ygen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pycparser/ply/ygen.py -------------------------------------------------------------------------------- /backend/lib/pycparser/plyparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pycparser/plyparser.py -------------------------------------------------------------------------------- /backend/lib/pycparser/yacctab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/pycparser/yacctab.py -------------------------------------------------------------------------------- /backend/lib/rsa-3.4.2.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | UNKNOWN 2 | 3 | 4 | -------------------------------------------------------------------------------- /backend/lib/rsa-3.4.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /backend/lib/rsa-3.4.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/rsa-3.4.2.dist-info/METADATA -------------------------------------------------------------------------------- /backend/lib/rsa-3.4.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/rsa-3.4.2.dist-info/RECORD -------------------------------------------------------------------------------- /backend/lib/rsa-3.4.2.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/rsa-3.4.2.dist-info/WHEEL -------------------------------------------------------------------------------- /backend/lib/rsa-3.4.2.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/rsa-3.4.2.dist-info/entry_points.txt -------------------------------------------------------------------------------- /backend/lib/rsa-3.4.2.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/rsa-3.4.2.dist-info/metadata.json -------------------------------------------------------------------------------- /backend/lib/rsa-3.4.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | rsa 2 | -------------------------------------------------------------------------------- /backend/lib/rsa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/rsa/__init__.py -------------------------------------------------------------------------------- /backend/lib/rsa/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/rsa/_compat.py -------------------------------------------------------------------------------- /backend/lib/rsa/_version133.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/rsa/_version133.py -------------------------------------------------------------------------------- /backend/lib/rsa/_version200.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/rsa/_version200.py -------------------------------------------------------------------------------- /backend/lib/rsa/asn1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/rsa/asn1.py -------------------------------------------------------------------------------- /backend/lib/rsa/bigfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/rsa/bigfile.py -------------------------------------------------------------------------------- /backend/lib/rsa/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/rsa/cli.py -------------------------------------------------------------------------------- /backend/lib/rsa/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/rsa/common.py -------------------------------------------------------------------------------- /backend/lib/rsa/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/rsa/core.py -------------------------------------------------------------------------------- /backend/lib/rsa/key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/rsa/key.py -------------------------------------------------------------------------------- /backend/lib/rsa/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/rsa/parallel.py -------------------------------------------------------------------------------- /backend/lib/rsa/pem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/rsa/pem.py -------------------------------------------------------------------------------- /backend/lib/rsa/pkcs1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/rsa/pkcs1.py -------------------------------------------------------------------------------- /backend/lib/rsa/prime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/rsa/prime.py -------------------------------------------------------------------------------- /backend/lib/rsa/randnum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/rsa/randnum.py -------------------------------------------------------------------------------- /backend/lib/rsa/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/rsa/transform.py -------------------------------------------------------------------------------- /backend/lib/rsa/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/rsa/util.py -------------------------------------------------------------------------------- /backend/lib/rsa/varblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/rsa/varblock.py -------------------------------------------------------------------------------- /backend/lib/six-1.11.0.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/six-1.11.0.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /backend/lib/six-1.11.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /backend/lib/six-1.11.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/six-1.11.0.dist-info/METADATA -------------------------------------------------------------------------------- /backend/lib/six-1.11.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/six-1.11.0.dist-info/RECORD -------------------------------------------------------------------------------- /backend/lib/six-1.11.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/six-1.11.0.dist-info/WHEEL -------------------------------------------------------------------------------- /backend/lib/six-1.11.0.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/six-1.11.0.dist-info/metadata.json -------------------------------------------------------------------------------- /backend/lib/six-1.11.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | six 2 | -------------------------------------------------------------------------------- /backend/lib/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/six.py -------------------------------------------------------------------------------- /backend/lib/uritemplate-3.0.0.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/uritemplate-3.0.0.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /backend/lib/uritemplate-3.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /backend/lib/uritemplate-3.0.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/uritemplate-3.0.0.dist-info/METADATA -------------------------------------------------------------------------------- /backend/lib/uritemplate-3.0.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/uritemplate-3.0.0.dist-info/RECORD -------------------------------------------------------------------------------- /backend/lib/uritemplate-3.0.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/uritemplate-3.0.0.dist-info/WHEEL -------------------------------------------------------------------------------- /backend/lib/uritemplate-3.0.0.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/uritemplate-3.0.0.dist-info/metadata.json -------------------------------------------------------------------------------- /backend/lib/uritemplate-3.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | uritemplate 2 | -------------------------------------------------------------------------------- /backend/lib/uritemplate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/uritemplate/__init__.py -------------------------------------------------------------------------------- /backend/lib/uritemplate/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/uritemplate/api.py -------------------------------------------------------------------------------- /backend/lib/uritemplate/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/uritemplate/template.py -------------------------------------------------------------------------------- /backend/lib/uritemplate/variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/lib/uritemplate/variable.py -------------------------------------------------------------------------------- /backend/main/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/main/__init__.py -------------------------------------------------------------------------------- /backend/main/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/main/auth.py -------------------------------------------------------------------------------- /backend/main/datastore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/main/datastore.py -------------------------------------------------------------------------------- /backend/main/remap_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/main/remap_api.py -------------------------------------------------------------------------------- /backend/main/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/main/shared.py -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/remap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/remap/__init__.py -------------------------------------------------------------------------------- /backend/remap/assessment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/remap/assessment.py -------------------------------------------------------------------------------- /backend/remap/classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/remap/classification.py -------------------------------------------------------------------------------- /backend/remap/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/remap/parameters.py -------------------------------------------------------------------------------- /backend/remap/predictor_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/remap/predictor_image.py -------------------------------------------------------------------------------- /backend/remap/predictors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/remap/predictors.py -------------------------------------------------------------------------------- /backend/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/server.py -------------------------------------------------------------------------------- /backend/static/css/home-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/css/home-style.css -------------------------------------------------------------------------------- /backend/static/css/jquery.minicolors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/css/jquery.minicolors.css -------------------------------------------------------------------------------- /backend/static/css/materialize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/css/materialize.css -------------------------------------------------------------------------------- /backend/static/css/materialize_default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/css/materialize_default.min.css -------------------------------------------------------------------------------- /backend/static/css/nouislider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/css/nouislider.css -------------------------------------------------------------------------------- /backend/static/data/remap_points_Dubai_2003.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/data/remap_points_Dubai_2003.csv -------------------------------------------------------------------------------- /backend/static/data/remap_points_Dubai_2017.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/data/remap_points_Dubai_2017.csv -------------------------------------------------------------------------------- /backend/static/data/remap_points_amazonDeforestation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/data/remap_points_amazonDeforestation.csv -------------------------------------------------------------------------------- /backend/static/data/remap_points_chedubaMyanmar.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/data/remap_points_chedubaMyanmar.csv -------------------------------------------------------------------------------- /backend/static/data/remap_training_Dubai_2003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/data/remap_training_Dubai_2003.json -------------------------------------------------------------------------------- /backend/static/data/remap_training_Dubai_2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/data/remap_training_Dubai_2017.json -------------------------------------------------------------------------------- /backend/static/data/remap_training_chedubaMyanmar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/data/remap_training_chedubaMyanmar.json -------------------------------------------------------------------------------- /backend/static/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /backend/static/favicons/android-chrome-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/favicons/android-chrome-256x256.png -------------------------------------------------------------------------------- /backend/static/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /backend/static/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/favicons/browserconfig.xml -------------------------------------------------------------------------------- /backend/static/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /backend/static/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /backend/static/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/favicons/favicon.ico -------------------------------------------------------------------------------- /backend/static/favicons/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/favicons/manifest.json -------------------------------------------------------------------------------- /backend/static/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /backend/static/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/favicons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /backend/static/fonts/roboto/Roboto-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/fonts/roboto/Roboto-Bold.eot -------------------------------------------------------------------------------- /backend/static/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /backend/static/fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /backend/static/fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /backend/static/fonts/roboto/Roboto-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/fonts/roboto/Roboto-Light.eot -------------------------------------------------------------------------------- /backend/static/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /backend/static/fonts/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/fonts/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /backend/static/fonts/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/fonts/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /backend/static/fonts/roboto/Roboto-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/fonts/roboto/Roboto-Medium.eot -------------------------------------------------------------------------------- /backend/static/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /backend/static/fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /backend/static/fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /backend/static/fonts/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/fonts/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /backend/static/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /backend/static/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /backend/static/fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /backend/static/fonts/roboto/Roboto-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/fonts/roboto/Roboto-Thin.eot -------------------------------------------------------------------------------- /backend/static/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /backend/static/fonts/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/fonts/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /backend/static/fonts/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/fonts/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /backend/static/g-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/g-logo.png -------------------------------------------------------------------------------- /backend/static/images/Baobabs_Logo_v1_Sponsors-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/Baobabs_Logo_v1_Sponsors-01.png -------------------------------------------------------------------------------- /backend/static/images/Baobabs_Logo_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/Baobabs_Logo_v2.png -------------------------------------------------------------------------------- /backend/static/images/Baobabs_Logo_v3_Sponsors-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/Baobabs_Logo_v3_Sponsors-01.png -------------------------------------------------------------------------------- /backend/static/images/Caracara.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/Caracara.jpg -------------------------------------------------------------------------------- /backend/static/images/CurlewSand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/CurlewSand.jpg -------------------------------------------------------------------------------- /backend/static/images/GentooPenguin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/GentooPenguin.jpg -------------------------------------------------------------------------------- /backend/static/images/GoogleEarthEngine_Grey_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/GoogleEarthEngine_Grey_108.png -------------------------------------------------------------------------------- /backend/static/images/GoogleEarthEngine_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/GoogleEarthEngine_v1.png -------------------------------------------------------------------------------- /backend/static/images/Logo_v4_RLE_trans-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/Logo_v4_RLE_trans-01.png -------------------------------------------------------------------------------- /backend/static/images/Logo_v4c_RLE_red-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/Logo_v4c_RLE_red-01.png -------------------------------------------------------------------------------- /backend/static/images/Logv7-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/Logv7-01.png -------------------------------------------------------------------------------- /backend/static/images/Murray-23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/Murray-23.jpg -------------------------------------------------------------------------------- /backend/static/images/NickMurray-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/NickMurray-10.jpg -------------------------------------------------------------------------------- /backend/static/images/NickMurray-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/NickMurray-19.jpg -------------------------------------------------------------------------------- /backend/static/images/NickMurray-41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/NickMurray-41.jpg -------------------------------------------------------------------------------- /backend/static/images/NickMurray-62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/NickMurray-62.jpg -------------------------------------------------------------------------------- /backend/static/images/NickMurray-77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/NickMurray-77.jpg -------------------------------------------------------------------------------- /backend/static/images/ShyAlbatross.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/ShyAlbatross.jpg -------------------------------------------------------------------------------- /backend/static/images/YellowEyedPenguin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/YellowEyedPenguin.jpg -------------------------------------------------------------------------------- /backend/static/images/cem-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/cem-white.png -------------------------------------------------------------------------------- /backend/static/images/iucn-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/iucn-white.png -------------------------------------------------------------------------------- /backend/static/images/logo_RLE_website.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/logo_RLE_website.jpg -------------------------------------------------------------------------------- /backend/static/images/raw/Caracara.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/raw/Caracara.jpg -------------------------------------------------------------------------------- /backend/static/images/raw/CurlewSand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/raw/CurlewSand.jpg -------------------------------------------------------------------------------- /backend/static/images/raw/GentooPenguin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/raw/GentooPenguin.jpg -------------------------------------------------------------------------------- /backend/static/images/raw/Murray-23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/raw/Murray-23.jpg -------------------------------------------------------------------------------- /backend/static/images/raw/NickMurray-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/raw/NickMurray-10.jpg -------------------------------------------------------------------------------- /backend/static/images/raw/NickMurray-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/raw/NickMurray-19.jpg -------------------------------------------------------------------------------- /backend/static/images/raw/NickMurray-41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/raw/NickMurray-41.jpg -------------------------------------------------------------------------------- /backend/static/images/raw/NickMurray-62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/raw/NickMurray-62.jpg -------------------------------------------------------------------------------- /backend/static/images/raw/NickMurray-77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/raw/NickMurray-77.jpg -------------------------------------------------------------------------------- /backend/static/images/raw/ShyAlbatross.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/raw/ShyAlbatross.jpg -------------------------------------------------------------------------------- /backend/static/images/raw/YellowEyedPenguin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/raw/YellowEyedPenguin.jpg -------------------------------------------------------------------------------- /backend/static/images/raw/logo_RLE_website.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/images/raw/logo_RLE_website.jpg -------------------------------------------------------------------------------- /backend/static/js/app-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/js/app-min.js -------------------------------------------------------------------------------- /backend/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/js/app.js -------------------------------------------------------------------------------- /backend/static/js/app/class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/js/app/class.js -------------------------------------------------------------------------------- /backend/static/js/app/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/js/app/data.js -------------------------------------------------------------------------------- /backend/static/js/app/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/js/app/init.js -------------------------------------------------------------------------------- /backend/static/js/app/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/js/app/map.js -------------------------------------------------------------------------------- /backend/static/js/app/oauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/js/app/oauth.js -------------------------------------------------------------------------------- /backend/static/js/app/region.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/js/app/region.js -------------------------------------------------------------------------------- /backend/static/js/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/js/home.js -------------------------------------------------------------------------------- /backend/static/js/jquery.minicolors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/js/jquery.minicolors.js -------------------------------------------------------------------------------- /backend/static/js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/js/materialize.min.js -------------------------------------------------------------------------------- /backend/static/js/nouislider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/js/nouislider.js -------------------------------------------------------------------------------- /backend/static/js/nouislider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/js/nouislider.min.js -------------------------------------------------------------------------------- /backend/static/js/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/js/scrollspy.js -------------------------------------------------------------------------------- /backend/static/js/togeojson-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/js/togeojson-min.js -------------------------------------------------------------------------------- /backend/static/js/togeojson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/js/togeojson.js -------------------------------------------------------------------------------- /backend/static/js/wNumb-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/js/wNumb-min.js -------------------------------------------------------------------------------- /backend/static/js/wNumb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/js/wNumb.js -------------------------------------------------------------------------------- /backend/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/logo.png -------------------------------------------------------------------------------- /backend/static/logos/Baobabs_Logo_v2_Outline_Red-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/logos/Baobabs_Logo_v2_Outline_Red-01.png -------------------------------------------------------------------------------- /backend/static/logos/LogoRedSponsors_v1_small-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/logos/LogoRedSponsors_v1_small-01.png -------------------------------------------------------------------------------- /backend/static/logos/Logo_Red_v1_small-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/logos/Logo_Red_v1_small-01.png -------------------------------------------------------------------------------- /backend/static/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/sitemap.xml -------------------------------------------------------------------------------- /backend/static/tutorials/RemapTutorial1-v1-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/tutorials/RemapTutorial1-v1-2.pdf -------------------------------------------------------------------------------- /backend/static/tutorials/RemapTutorial2-v1-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/tutorials/RemapTutorial2-v1-2.pdf -------------------------------------------------------------------------------- /backend/static/tutorials/RemapUserGuide-v1-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/static/tutorials/RemapUserGuide-v1-2.pdf -------------------------------------------------------------------------------- /backend/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/templates/about.html -------------------------------------------------------------------------------- /backend/templates/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/templates/faq.html -------------------------------------------------------------------------------- /backend/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/templates/home.html -------------------------------------------------------------------------------- /backend/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/templates/layout.html -------------------------------------------------------------------------------- /backend/templates/methods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/templates/methods.html -------------------------------------------------------------------------------- /backend/templates/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/templates/privacy.html -------------------------------------------------------------------------------- /backend/templates/tutorials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/REMAP/HEAD/backend/templates/tutorials.html -------------------------------------------------------------------------------- /das.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd backend 3 | dev_appserver.py . 4 | -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd backend 3 | gcloud app deploy 4 | -------------------------------------------------------------------------------- /remap_dev.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd app 3 | npm run dev 4 | --------------------------------------------------------------------------------