├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── other-question.md └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── api ├── .gitignore ├── logs │ └── .gitignore ├── package-lock.json ├── package.json ├── routes │ ├── example.js │ ├── index.js │ ├── products │ │ ├── infos │ │ │ ├── product-info.js │ │ │ └── proxmox │ │ │ │ ├── nodes.js │ │ │ │ ├── qemu.js │ │ │ │ └── storage.js │ │ ├── products.js │ │ └── upgrades │ │ │ └── upgrades.js │ ├── roles │ │ ├── infos │ │ │ └── role-info.js │ │ └── roles.js │ ├── services │ │ ├── infos │ │ │ ├── files │ │ │ │ ├── delete-files.js │ │ │ │ ├── service-file.js │ │ │ │ └── service-files.js │ │ │ ├── proxmox │ │ │ │ └── vnc │ │ │ │ │ ├── ticket.js │ │ │ │ │ └── websocket.js │ │ │ └── service-info.js │ │ └── services.js │ ├── users │ │ ├── infos │ │ │ ├── user-info.js │ │ │ └── user-login.js │ │ └── users.js │ └── utils │ │ ├── send-mail.js │ │ └── websocket-server.js ├── server.js └── utils │ ├── permissions-manager.js │ ├── rate-limit-windows │ └── .gitignore │ ├── rate-limit.js │ └── sql-injection.js ├── index.html ├── install.sh ├── mysql_dump.sql └── public ├── assets ├── css │ ├── core │ │ └── libs.min.css │ ├── custom.css │ ├── custom.min.css │ ├── customizer.css │ ├── customizer.min.css │ ├── dark.css │ ├── dark.min.css │ ├── dashboard.css │ ├── maps │ │ ├── custom.min.css.map │ │ ├── customizer.min.css.map │ │ ├── dark.min.css.map │ │ ├── hope-ui.min.css.map │ │ └── rtl.min.css.map │ ├── rtl.css │ ├── rtl.min.css │ └── xterm.css ├── images │ ├── Flag │ │ ├── flag-01.png │ │ ├── flag-02.png │ │ ├── flag-03.png │ │ ├── flag-04.png │ │ ├── flag-05.png │ │ ├── flag-06.png │ │ └── flag001.png │ ├── auth │ │ ├── 01.png │ │ ├── 02.png │ │ ├── 03.png │ │ ├── 04.png │ │ ├── 05.png │ │ └── 06.png │ ├── avatars │ │ ├── 01.png │ │ ├── 02.png │ │ ├── 03.png │ │ ├── 04.png │ │ ├── 05.png │ │ ├── avtar_1.png │ │ ├── avtar_2.png │ │ ├── avtar_3.png │ │ ├── avtar_4.png │ │ └── avtar_5.png │ ├── brands │ │ ├── 08.png │ │ ├── 09.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 20.png │ │ ├── 21.png │ │ ├── 22.png │ │ ├── 23.png │ │ ├── expand-window.json │ │ ├── fb.svg │ │ ├── gm.svg │ │ ├── im.svg │ │ ├── li.svg │ │ ├── open-letter.json │ │ └── pdf.png │ ├── dashboard.png │ ├── dashboard │ │ ├── top-header.png │ │ ├── top-header1.png │ │ ├── top-header3.png │ │ ├── top-header4.png │ │ ├── top-header5.png │ │ ├── top-header6.png │ │ └── top-image.jpg │ ├── down-aerrow.gif │ ├── error │ │ ├── 01.png │ │ ├── 02.png │ │ ├── 03.png │ │ ├── 401.png │ │ ├── 403.png │ │ ├── 404.png │ │ └── 500.png │ ├── favicon.ico │ ├── icon.png │ ├── icon_flat.png │ ├── icon_flat_rounded.ico │ ├── icon_flat_rounded.png │ ├── icons │ │ ├── 01.png │ │ ├── 02.png │ │ ├── 03.png │ │ ├── 04.png │ │ ├── 05.png │ │ ├── 06.png │ │ ├── 07.png │ │ └── 08.png │ ├── loader.gif │ ├── pages │ │ ├── 01-page.png │ │ ├── 02-page.png │ │ └── img-success.png │ ├── payement.gif │ ├── settings │ │ ├── dark │ │ │ ├── 01.png │ │ │ ├── 02.png │ │ │ ├── 03.png │ │ │ ├── 04.png │ │ │ ├── 05.png │ │ │ ├── 06.png │ │ │ ├── 07.png │ │ │ ├── 08.png │ │ │ ├── 09.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ └── 13.png │ │ └── light │ │ │ ├── 01.png │ │ │ ├── 02.png │ │ │ ├── 03.png │ │ │ ├── 04.png │ │ │ ├── 05.png │ │ │ ├── 06.png │ │ │ ├── 07.png │ │ │ ├── 08.png │ │ │ ├── 09.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ └── 13.png │ ├── shapes │ │ ├── 01.png │ │ ├── 02.png │ │ ├── 03.png │ │ ├── 04.png │ │ ├── 05.png │ │ └── 06.png │ └── vectormap │ │ ├── cloudy-day-1.png │ │ ├── cloudy-day-2.png │ │ ├── cloudy-day-3.png │ │ ├── cloudy-night-1.png │ │ ├── cloudy-night-2.png │ │ ├── cloudy.png │ │ ├── day.png │ │ ├── night.png │ │ ├── rainy-1.png │ │ ├── rainy-2.png │ │ ├── rainy-3.png │ │ ├── rainy-4.png │ │ ├── rainy-5.png │ │ ├── rainy-6.png │ │ ├── rainy-7.png │ │ ├── snowy-1.png │ │ ├── snowy-4.png │ │ ├── snowy-6.png │ │ ├── thunder.png │ │ └── weather.png ├── js │ ├── ace │ │ ├── ace.js │ │ ├── ext-beautify.js │ │ ├── ext-code_lens.js │ │ ├── ext-elastic_tabstops_lite.js │ │ ├── ext-emmet.js │ │ ├── ext-error_marker.js │ │ ├── ext-hardwrap.js │ │ ├── ext-keybinding_menu.js │ │ ├── ext-language_tools.js │ │ ├── ext-linking.js │ │ ├── ext-modelist.js │ │ ├── ext-options.js │ │ ├── ext-prompt.js │ │ ├── ext-rtl.js │ │ ├── ext-searchbox.js │ │ ├── ext-settings_menu.js │ │ ├── ext-spellcheck.js │ │ ├── ext-split.js │ │ ├── ext-static_highlight.js │ │ ├── ext-statusbar.js │ │ ├── ext-textarea.js │ │ ├── ext-themelist.js │ │ ├── ext-whitespace.js │ │ ├── keybinding-emacs.js │ │ ├── keybinding-sublime.js │ │ ├── keybinding-vim.js │ │ ├── keybinding-vscode.js │ │ ├── mode-abap.js │ │ ├── mode-abc.js │ │ ├── mode-actionscript.js │ │ ├── mode-ada.js │ │ ├── mode-alda.js │ │ ├── mode-apache_conf.js │ │ ├── mode-apex.js │ │ ├── mode-applescript.js │ │ ├── mode-aql.js │ │ ├── mode-asciidoc.js │ │ ├── mode-asl.js │ │ ├── mode-assembly_x86.js │ │ ├── mode-autohotkey.js │ │ ├── mode-batchfile.js │ │ ├── mode-c9search.js │ │ ├── mode-c_cpp.js │ │ ├── mode-cirru.js │ │ ├── mode-clojure.js │ │ ├── mode-cobol.js │ │ ├── mode-coffee.js │ │ ├── mode-coldfusion.js │ │ ├── mode-crystal.js │ │ ├── mode-csharp.js │ │ ├── mode-csound_document.js │ │ ├── mode-csound_orchestra.js │ │ ├── mode-csound_score.js │ │ ├── mode-csp.js │ │ ├── mode-css.js │ │ ├── mode-curly.js │ │ ├── mode-d.js │ │ ├── mode-dart.js │ │ ├── mode-diff.js │ │ ├── mode-django.js │ │ ├── mode-dockerfile.js │ │ ├── mode-dot.js │ │ ├── mode-drools.js │ │ ├── mode-edifact.js │ │ ├── mode-eiffel.js │ │ ├── mode-ejs.js │ │ ├── mode-elixir.js │ │ ├── mode-elm.js │ │ ├── mode-erlang.js │ │ ├── mode-forth.js │ │ ├── mode-fortran.js │ │ ├── mode-fsharp.js │ │ ├── mode-fsl.js │ │ ├── mode-ftl.js │ │ ├── mode-gcode.js │ │ ├── mode-gherkin.js │ │ ├── mode-gitignore.js │ │ ├── mode-glsl.js │ │ ├── mode-gobstones.js │ │ ├── mode-golang.js │ │ ├── mode-graphqlschema.js │ │ ├── mode-groovy.js │ │ ├── mode-haml.js │ │ ├── mode-handlebars.js │ │ ├── mode-haskell.js │ │ ├── mode-haskell_cabal.js │ │ ├── mode-haxe.js │ │ ├── mode-hjson.js │ │ ├── mode-html.js │ │ ├── mode-html_elixir.js │ │ ├── mode-html_ruby.js │ │ ├── mode-ini.js │ │ ├── mode-io.js │ │ ├── mode-ion.js │ │ ├── mode-jack.js │ │ ├── mode-jade.js │ │ ├── mode-java.js │ │ ├── mode-javascript.js │ │ ├── mode-json.js │ │ ├── mode-json5.js │ │ ├── mode-jsoniq.js │ │ ├── mode-jsp.js │ │ ├── mode-jssm.js │ │ ├── mode-jsx.js │ │ ├── mode-julia.js │ │ ├── mode-kotlin.js │ │ ├── mode-latex.js │ │ ├── mode-latte.js │ │ ├── mode-less.js │ │ ├── mode-liquid.js │ │ ├── mode-lisp.js │ │ ├── mode-livescript.js │ │ ├── mode-logiql.js │ │ ├── mode-logtalk.js │ │ ├── mode-lsl.js │ │ ├── mode-lua.js │ │ ├── mode-luapage.js │ │ ├── mode-lucene.js │ │ ├── mode-makefile.js │ │ ├── mode-markdown.js │ │ ├── mode-mask.js │ │ ├── mode-matlab.js │ │ ├── mode-maze.js │ │ ├── mode-mediawiki.js │ │ ├── mode-mel.js │ │ ├── mode-mips.js │ │ ├── mode-mixal.js │ │ ├── mode-mushcode.js │ │ ├── mode-mysql.js │ │ ├── mode-nginx.js │ │ ├── mode-nim.js │ │ ├── mode-nix.js │ │ ├── mode-nsis.js │ │ ├── mode-nunjucks.js │ │ ├── mode-objectivec.js │ │ ├── mode-ocaml.js │ │ ├── mode-partiql.js │ │ ├── mode-pascal.js │ │ ├── mode-perl.js │ │ ├── mode-pgsql.js │ │ ├── mode-php.js │ │ ├── mode-php_laravel_blade.js │ │ ├── mode-pig.js │ │ ├── mode-plain_text.js │ │ ├── mode-powershell.js │ │ ├── mode-praat.js │ │ ├── mode-prisma.js │ │ ├── mode-prolog.js │ │ ├── mode-properties.js │ │ ├── mode-protobuf.js │ │ ├── mode-puppet.js │ │ ├── mode-python.js │ │ ├── mode-qml.js │ │ ├── mode-r.js │ │ ├── mode-raku.js │ │ ├── mode-razor.js │ │ ├── mode-rdoc.js │ │ ├── mode-red.js │ │ ├── mode-redshift.js │ │ ├── mode-rhtml.js │ │ ├── mode-robot.js │ │ ├── mode-rst.js │ │ ├── mode-ruby.js │ │ ├── mode-rust.js │ │ ├── mode-sac.js │ │ ├── mode-sass.js │ │ ├── mode-scad.js │ │ ├── mode-scala.js │ │ ├── mode-scheme.js │ │ ├── mode-scrypt.js │ │ ├── mode-scss.js │ │ ├── mode-sh.js │ │ ├── mode-sjs.js │ │ ├── mode-slim.js │ │ ├── mode-smarty.js │ │ ├── mode-smithy.js │ │ ├── mode-snippets.js │ │ ├── mode-soy_template.js │ │ ├── mode-space.js │ │ ├── mode-sparql.js │ │ ├── mode-sql.js │ │ ├── mode-sqlserver.js │ │ ├── mode-stylus.js │ │ ├── mode-svg.js │ │ ├── mode-swift.js │ │ ├── mode-tcl.js │ │ ├── mode-terraform.js │ │ ├── mode-tex.js │ │ ├── mode-text.js │ │ ├── mode-textile.js │ │ ├── mode-toml.js │ │ ├── mode-tsx.js │ │ ├── mode-turtle.js │ │ ├── mode-twig.js │ │ ├── mode-typescript.js │ │ ├── mode-vala.js │ │ ├── mode-vbscript.js │ │ ├── mode-velocity.js │ │ ├── mode-verilog.js │ │ ├── mode-vhdl.js │ │ ├── mode-visualforce.js │ │ ├── mode-wollok.js │ │ ├── mode-xml.js │ │ ├── mode-xquery.js │ │ ├── mode-yaml.js │ │ ├── mode-zeek.js │ │ ├── snippets │ │ │ ├── abap.js │ │ │ ├── abc.js │ │ │ ├── actionscript.js │ │ │ ├── ada.js │ │ │ ├── alda.js │ │ │ ├── apache_conf.js │ │ │ ├── apex.js │ │ │ ├── applescript.js │ │ │ ├── aql.js │ │ │ ├── asciidoc.js │ │ │ ├── asl.js │ │ │ ├── assembly_x86.js │ │ │ ├── autohotkey.js │ │ │ ├── batchfile.js │ │ │ ├── c9search.js │ │ │ ├── c_cpp.js │ │ │ ├── cirru.js │ │ │ ├── clojure.js │ │ │ ├── cobol.js │ │ │ ├── coffee.js │ │ │ ├── coldfusion.js │ │ │ ├── crystal.js │ │ │ ├── csharp.js │ │ │ ├── csound_document.js │ │ │ ├── csound_orchestra.js │ │ │ ├── csound_score.js │ │ │ ├── csp.js │ │ │ ├── css.js │ │ │ ├── curly.js │ │ │ ├── d.js │ │ │ ├── dart.js │ │ │ ├── diff.js │ │ │ ├── django.js │ │ │ ├── dockerfile.js │ │ │ ├── dot.js │ │ │ ├── drools.js │ │ │ ├── edifact.js │ │ │ ├── eiffel.js │ │ │ ├── ejs.js │ │ │ ├── elixir.js │ │ │ ├── elm.js │ │ │ ├── erlang.js │ │ │ ├── forth.js │ │ │ ├── fortran.js │ │ │ ├── fsharp.js │ │ │ ├── fsl.js │ │ │ ├── ftl.js │ │ │ ├── gcode.js │ │ │ ├── gherkin.js │ │ │ ├── gitignore.js │ │ │ ├── glsl.js │ │ │ ├── gobstones.js │ │ │ ├── golang.js │ │ │ ├── graphqlschema.js │ │ │ ├── groovy.js │ │ │ ├── haml.js │ │ │ ├── handlebars.js │ │ │ ├── haskell.js │ │ │ ├── haskell_cabal.js │ │ │ ├── haxe.js │ │ │ ├── hjson.js │ │ │ ├── html.js │ │ │ ├── html_elixir.js │ │ │ ├── html_ruby.js │ │ │ ├── ini.js │ │ │ ├── io.js │ │ │ ├── ion.js │ │ │ ├── jack.js │ │ │ ├── jade.js │ │ │ ├── java.js │ │ │ ├── javascript.js │ │ │ ├── json.js │ │ │ ├── json5.js │ │ │ ├── jsoniq.js │ │ │ ├── jsp.js │ │ │ ├── jssm.js │ │ │ ├── jsx.js │ │ │ ├── julia.js │ │ │ ├── kotlin.js │ │ │ ├── latex.js │ │ │ ├── latte.js │ │ │ ├── less.js │ │ │ ├── liquid.js │ │ │ ├── lisp.js │ │ │ ├── livescript.js │ │ │ ├── logiql.js │ │ │ ├── logtalk.js │ │ │ ├── lsl.js │ │ │ ├── lua.js │ │ │ ├── luapage.js │ │ │ ├── lucene.js │ │ │ ├── makefile.js │ │ │ ├── markdown.js │ │ │ ├── mask.js │ │ │ ├── matlab.js │ │ │ ├── maze.js │ │ │ ├── mediawiki.js │ │ │ ├── mel.js │ │ │ ├── mips.js │ │ │ ├── mixal.js │ │ │ ├── mushcode.js │ │ │ ├── mysql.js │ │ │ ├── nginx.js │ │ │ ├── nim.js │ │ │ ├── nix.js │ │ │ ├── nsis.js │ │ │ ├── nunjucks.js │ │ │ ├── objectivec.js │ │ │ ├── ocaml.js │ │ │ ├── partiql.js │ │ │ ├── pascal.js │ │ │ ├── perl.js │ │ │ ├── pgsql.js │ │ │ ├── php.js │ │ │ ├── php_laravel_blade.js │ │ │ ├── pig.js │ │ │ ├── plain_text.js │ │ │ ├── powershell.js │ │ │ ├── praat.js │ │ │ ├── prisma.js │ │ │ ├── prolog.js │ │ │ ├── properties.js │ │ │ ├── protobuf.js │ │ │ ├── puppet.js │ │ │ ├── python.js │ │ │ ├── qml.js │ │ │ ├── r.js │ │ │ ├── raku.js │ │ │ ├── razor.js │ │ │ ├── rdoc.js │ │ │ ├── red.js │ │ │ ├── redshift.js │ │ │ ├── rhtml.js │ │ │ ├── robot.js │ │ │ ├── rst.js │ │ │ ├── ruby.js │ │ │ ├── rust.js │ │ │ ├── sac.js │ │ │ ├── sass.js │ │ │ ├── scad.js │ │ │ ├── scala.js │ │ │ ├── scheme.js │ │ │ ├── scrypt.js │ │ │ ├── scss.js │ │ │ ├── sh.js │ │ │ ├── sjs.js │ │ │ ├── slim.js │ │ │ ├── smarty.js │ │ │ ├── smithy.js │ │ │ ├── snippets.js │ │ │ ├── soy_template.js │ │ │ ├── space.js │ │ │ ├── sparql.js │ │ │ ├── sql.js │ │ │ ├── sqlserver.js │ │ │ ├── stylus.js │ │ │ ├── svg.js │ │ │ ├── swift.js │ │ │ ├── tcl.js │ │ │ ├── terraform.js │ │ │ ├── tex.js │ │ │ ├── text.js │ │ │ ├── textile.js │ │ │ ├── toml.js │ │ │ ├── tsx.js │ │ │ ├── turtle.js │ │ │ ├── twig.js │ │ │ ├── typescript.js │ │ │ ├── vala.js │ │ │ ├── vbscript.js │ │ │ ├── velocity.js │ │ │ ├── verilog.js │ │ │ ├── vhdl.js │ │ │ ├── visualforce.js │ │ │ ├── wollok.js │ │ │ ├── xml.js │ │ │ ├── xquery.js │ │ │ ├── yaml.js │ │ │ └── zeek.js │ │ ├── theme-ambiance.js │ │ ├── theme-chaos.js │ │ ├── theme-chrome.js │ │ ├── theme-cloud9_day.js │ │ ├── theme-cloud9_night.js │ │ ├── theme-cloud9_night_low_color.js │ │ ├── theme-clouds.js │ │ ├── theme-clouds_midnight.js │ │ ├── theme-cobalt.js │ │ ├── theme-crimson_editor.js │ │ ├── theme-dawn.js │ │ ├── theme-dracula.js │ │ ├── theme-dreamweaver.js │ │ ├── theme-eclipse.js │ │ ├── theme-github.js │ │ ├── theme-gob.js │ │ ├── theme-gruvbox.js │ │ ├── theme-gruvbox_dark_hard.js │ │ ├── theme-gruvbox_light_hard.js │ │ ├── theme-idle_fingers.js │ │ ├── theme-iplastic.js │ │ ├── theme-katzenmilch.js │ │ ├── theme-kr_theme.js │ │ ├── theme-kuroir.js │ │ ├── theme-merbivore.js │ │ ├── theme-merbivore_soft.js │ │ ├── theme-mono_industrial.js │ │ ├── theme-monokai.js │ │ ├── theme-nord_dark.js │ │ ├── theme-one_dark.js │ │ ├── theme-pastel_on_dark.js │ │ ├── theme-solarized_dark.js │ │ ├── theme-solarized_light.js │ │ ├── theme-sqlserver.js │ │ ├── theme-terminal.js │ │ ├── theme-textmate.js │ │ ├── theme-tomorrow.js │ │ ├── theme-tomorrow_night.js │ │ ├── theme-tomorrow_night_blue.js │ │ ├── theme-tomorrow_night_bright.js │ │ ├── theme-tomorrow_night_eighties.js │ │ ├── theme-twilight.js │ │ ├── theme-vibrant_ink.js │ │ ├── theme-xcode.js │ │ ├── worker-base.js │ │ ├── worker-coffee.js │ │ ├── worker-css.js │ │ ├── worker-html.js │ │ ├── worker-javascript.js │ │ ├── worker-json.js │ │ ├── worker-lua.js │ │ ├── worker-php.js │ │ ├── worker-xml.js │ │ ├── worker-xquery.js │ │ └── worker-yaml.js │ ├── charts │ │ ├── apexcharts.js │ │ ├── dashboard.js │ │ ├── vectore-chart.js │ │ └── widgetcharts.js │ ├── core │ │ ├── external.min.js │ │ └── libs.min.js │ ├── main-lib.js │ ├── pages │ │ ├── order-form.js │ │ ├── products │ │ │ ├── pricings.js │ │ │ ├── proxmox-product-create.js │ │ │ ├── proxmox-product-edit.js │ │ │ ├── proxmox-products-list.js │ │ │ ├── ptero-product-create.js │ │ │ ├── ptero-product-edit.js │ │ │ └── ptero-products-list.js │ │ ├── roles │ │ │ ├── create-role.js │ │ │ ├── role-edit.js │ │ │ └── roles-list.js │ │ ├── services │ │ │ ├── service-edit.js │ │ │ ├── service-game.js │ │ │ ├── service-vps.js │ │ │ └── services.js │ │ ├── sign-in.js │ │ └── users │ │ │ ├── create-user.js │ │ │ ├── user-edit.js │ │ │ └── users-list.js │ ├── plugins │ │ ├── calender.js │ │ ├── circle-progress.js │ │ ├── countdown.js │ │ ├── fslightbox.js │ │ ├── kanban.js │ │ ├── prism.mini.js │ │ └── slider-tabs.js │ ├── xterm-addon-fit.js │ ├── xterm-addon-fit.js.map │ ├── xterm.js │ └── xterm.js.map └── vendor │ ├── Iconly │ ├── Bold │ │ ├── 2 User.svg │ │ ├── 3 User.svg │ │ ├── Activity.svg │ │ ├── Add User.svg │ │ ├── Arrow - Down 2.svg │ │ ├── Arrow - Down 3.svg │ │ ├── Arrow - Down Circle.svg │ │ ├── Arrow - Down Square.svg │ │ ├── Arrow - Down.svg │ │ ├── Arrow - Left 2.svg │ │ ├── Arrow - Left 3.svg │ │ ├── Arrow - Left Circle.svg │ │ ├── Arrow - Left Square.svg │ │ ├── Arrow - Left.svg │ │ ├── Arrow - Right 2.svg │ │ ├── Arrow - Right 3.svg │ │ ├── Arrow - Right Circle.svg │ │ ├── Arrow - Right Square.svg │ │ ├── Arrow - Right.svg │ │ ├── Arrow - Up 2.svg │ │ ├── Arrow - Up 3.svg │ │ ├── Arrow - Up Circle.svg │ │ ├── Arrow - Up Square.svg │ │ ├── Arrow - Up.svg │ │ ├── Bag 2.svg │ │ ├── Bag.svg │ │ ├── Bookmark.svg │ │ ├── Buy.svg │ │ ├── Calendar.svg │ │ ├── Call Missed.svg │ │ ├── Call Silent.svg │ │ ├── Call.svg │ │ ├── Calling.svg │ │ ├── Camera.svg │ │ ├── Category.svg │ │ ├── Chart.svg │ │ ├── Chat.svg │ │ ├── Close Square.svg │ │ ├── Danger.svg │ │ ├── Delete.svg │ │ ├── Discount.svg │ │ ├── Discovery.svg │ │ ├── Document.svg │ │ ├── Download.svg │ │ ├── Edit Square.svg │ │ ├── Edit.svg │ │ ├── Filter 2.svg │ │ ├── Filter.svg │ │ ├── Folder.svg │ │ ├── Game.svg │ │ ├── Graph.svg │ │ ├── Heart.svg │ │ ├── Hide.svg │ │ ├── Home.svg │ │ ├── Image 2.svg │ │ ├── Image.svg │ │ ├── Info Circle.svg │ │ ├── Info Square.svg │ │ ├── Location.svg │ │ ├── Lock.svg │ │ ├── Login.svg │ │ ├── Logout.svg │ │ ├── Message.svg │ │ ├── More Circle.svg │ │ ├── More Square.svg │ │ ├── Notification.svg │ │ ├── Paper Download.svg │ │ ├── Paper Fail.svg │ │ ├── Paper Negative.svg │ │ ├── Paper Plus.svg │ │ ├── Paper Upload.svg │ │ ├── Paper.svg │ │ ├── Password.svg │ │ ├── Play.svg │ │ ├── Plus.svg │ │ ├── Profile.svg │ │ ├── Scan.svg │ │ ├── Search.svg │ │ ├── Send.svg │ │ ├── Setting.svg │ │ ├── Shield Done.svg │ │ ├── Shield Fail.svg │ │ ├── Show.svg │ │ ├── Star.svg │ │ ├── Swap.svg │ │ ├── Tick Square.svg │ │ ├── Ticket Star.svg │ │ ├── Ticket.svg │ │ ├── Time Circle.svg │ │ ├── Time Square.svg │ │ ├── Unlock.svg │ │ ├── Upload.svg │ │ ├── Video.svg │ │ ├── Voice 2.svg │ │ ├── Voice.svg │ │ ├── Volume Down.svg │ │ ├── Volume Off.svg │ │ ├── Volume Up.svg │ │ ├── Wallet.svg │ │ └── Work.svg │ ├── Colored │ │ ├── 2 User.svg │ │ ├── 3 User.svg │ │ ├── Activity.svg │ │ ├── Add User.svg │ │ ├── Arrow - Down 2.svg │ │ ├── Arrow - Down 3.svg │ │ ├── Arrow - Down Circle.svg │ │ ├── Arrow - Down Square.svg │ │ ├── Arrow - Down.svg │ │ ├── Arrow - Left 2.svg │ │ ├── Arrow - Left 3.svg │ │ ├── Arrow - Left Circle.svg │ │ ├── Arrow - Left Square.svg │ │ ├── Arrow - Left.svg │ │ ├── Arrow - Right 2.svg │ │ ├── Arrow - Right 3.svg │ │ ├── Arrow - Right Circle.svg │ │ ├── Arrow - Right Square.svg │ │ ├── Arrow - Right.svg │ │ ├── Arrow - Up 2.svg │ │ ├── Arrow - Up 3.svg │ │ ├── Arrow - Up Circle.svg │ │ ├── Arrow - Up Square.svg │ │ ├── Arrow - Up.svg │ │ ├── Bag 3.svg │ │ ├── Bag.svg │ │ ├── Bookmark.svg │ │ ├── Buy.svg │ │ ├── Calendar.svg │ │ ├── Call Missed.svg │ │ ├── Call Silent.svg │ │ ├── Call.svg │ │ ├── Calling.svg │ │ ├── Camera.svg │ │ ├── Category.svg │ │ ├── Chart.svg │ │ ├── Chat.svg │ │ ├── Close Square.svg │ │ ├── Danger.svg │ │ ├── Delete.svg │ │ ├── Discount.svg │ │ ├── Discovery.svg │ │ ├── Document.svg │ │ ├── Download.svg │ │ ├── Edit Square.svg │ │ ├── Edit.svg │ │ ├── Filter 2.svg │ │ ├── Filter.svg │ │ ├── Folder.svg │ │ ├── Game.svg │ │ ├── Graph.svg │ │ ├── Heart.svg │ │ ├── Hide.svg │ │ ├── Home.svg │ │ ├── Image 3.svg │ │ ├── Image.svg │ │ ├── Info Circle.svg │ │ ├── Info Square.svg │ │ ├── Location.svg │ │ ├── Lock.svg │ │ ├── Login.svg │ │ ├── Logout.svg │ │ ├── Message.svg │ │ ├── More Circle.svg │ │ ├── More Square.svg │ │ ├── Notification.svg │ │ ├── Paper Download.svg │ │ ├── Paper Fail.svg │ │ ├── Paper Negative.svg │ │ ├── Paper Plus.svg │ │ ├── Paper Upload.svg │ │ ├── Paper.svg │ │ ├── Password.svg │ │ ├── Play.svg │ │ ├── Plus.svg │ │ ├── Profile.svg │ │ ├── Scan.svg │ │ ├── Search.svg │ │ ├── Send.svg │ │ ├── Setting.svg │ │ ├── Shield Done.svg │ │ ├── Shield Fail.svg │ │ ├── Show.svg │ │ ├── Star.svg │ │ ├── Swap.svg │ │ ├── Tick Square.svg │ │ ├── Ticket Star.svg │ │ ├── Ticket.svg │ │ ├── Time Circle.svg │ │ ├── Time Square.svg │ │ ├── Unlock.svg │ │ ├── Upload.svg │ │ ├── Video.svg │ │ ├── Voice 3.svg │ │ ├── Voice.svg │ │ ├── Volume Down.svg │ │ ├── Volume Off.svg │ │ ├── Volume Up.svg │ │ ├── Wallet.svg │ │ └── Work.svg │ ├── DualTone │ │ ├── 2 User.svg │ │ ├── 3 User.svg │ │ ├── Activity.svg │ │ ├── Add User.svg │ │ ├── Arrow - Down 2.svg │ │ ├── Arrow - Down 3.svg │ │ ├── Arrow - Down Circle.svg │ │ ├── Arrow - Down Square.svg │ │ ├── Arrow - Down.svg │ │ ├── Arrow - Left 2.svg │ │ ├── Arrow - Left 3.svg │ │ ├── Arrow - Left Circle.svg │ │ ├── Arrow - Left Square.svg │ │ ├── Arrow - Left.svg │ │ ├── Arrow - Right 2.svg │ │ ├── Arrow - Right 3.svg │ │ ├── Arrow - Right Circle.svg │ │ ├── Arrow - Right Square.svg │ │ ├── Arrow - Right.svg │ │ ├── Arrow - Up 2.svg │ │ ├── Arrow - Up 3.svg │ │ ├── Arrow - Up Circle.svg │ │ ├── Arrow - Up Square.svg │ │ ├── Arrow - Up.svg │ │ ├── Bag 3.svg │ │ ├── Bag.svg │ │ ├── Bookmark.svg │ │ ├── Buy.svg │ │ ├── Calendar.svg │ │ ├── Call Missed.svg │ │ ├── Call Silent.svg │ │ ├── Call.svg │ │ ├── Calling.svg │ │ ├── Camera.svg │ │ ├── Category.svg │ │ ├── Chart.svg │ │ ├── Chat.svg │ │ ├── Close Square.svg │ │ ├── Danger.svg │ │ ├── Delete.svg │ │ ├── Discount.svg │ │ ├── Discovery.svg │ │ ├── Document.svg │ │ ├── Download.svg │ │ ├── Edit Square.svg │ │ ├── Edit.svg │ │ ├── Filter 2.svg │ │ ├── Filter.svg │ │ ├── Folder.svg │ │ ├── Game.svg │ │ ├── Graph.svg │ │ ├── Heart.svg │ │ ├── Hide.svg │ │ ├── Home.svg │ │ ├── Image 3.svg │ │ ├── Image.svg │ │ ├── Info Circle.svg │ │ ├── Info Square.svg │ │ ├── Location.svg │ │ ├── Lock.svg │ │ ├── Login.svg │ │ ├── Logout.svg │ │ ├── Message.svg │ │ ├── More Circle.svg │ │ ├── More Square.svg │ │ ├── Notification.svg │ │ ├── Paper Download.svg │ │ ├── Paper Fail.svg │ │ ├── Paper Negative.svg │ │ ├── Paper Plus.svg │ │ ├── Paper Upload.svg │ │ ├── Paper.svg │ │ ├── Password.svg │ │ ├── Play.svg │ │ ├── Plus.svg │ │ ├── Profile.svg │ │ ├── Scan.svg │ │ ├── Search.svg │ │ ├── Send.svg │ │ ├── Setting.svg │ │ ├── Shield Done.svg │ │ ├── Shield Fail.svg │ │ ├── Show.svg │ │ ├── Star.svg │ │ ├── Swap.svg │ │ ├── Tick Square.svg │ │ ├── Ticket Star.svg │ │ ├── Ticket.svg │ │ ├── Time Circle.svg │ │ ├── Time Square.svg │ │ ├── Unlock.svg │ │ ├── Upload.svg │ │ ├── Video.svg │ │ ├── Voice 3.svg │ │ ├── Voice.svg │ │ ├── Volume Down.svg │ │ ├── Volume Off.svg │ │ ├── Volume Up.svg │ │ ├── Wallet.svg │ │ └── Work.svg │ └── Line │ │ ├── 2 User.svg │ │ ├── 3 User.svg │ │ ├── Activity.svg │ │ ├── Add User.svg │ │ ├── Arrow - Down 2.svg │ │ ├── Arrow - Down 3.svg │ │ ├── Arrow - Down Circle.svg │ │ ├── Arrow - Down Square.svg │ │ ├── Arrow - Down.svg │ │ ├── Arrow - Left 2.svg │ │ ├── Arrow - Left 3.svg │ │ ├── Arrow - Left Circle.svg │ │ ├── Arrow - Left Square.svg │ │ ├── Arrow - Left.svg │ │ ├── Arrow - Right 2.svg │ │ ├── Arrow - Right 3.svg │ │ ├── Arrow - Right Circle.svg │ │ ├── Arrow - Right Square.svg │ │ ├── Arrow - Right.svg │ │ ├── Arrow - Up 2.svg │ │ ├── Arrow - Up 3.svg │ │ ├── Arrow - Up Circle.svg │ │ ├── Arrow - Up Square.svg │ │ ├── Arrow - Up.svg │ │ ├── Bag 3.svg │ │ ├── Bag.svg │ │ ├── Bookmark.svg │ │ ├── Buy.svg │ │ ├── Calendar.svg │ │ ├── Call Missed.svg │ │ ├── Call Silent.svg │ │ ├── Call.svg │ │ ├── Calling.svg │ │ ├── Camera.svg │ │ ├── Category.svg │ │ ├── Chart.svg │ │ ├── Chat.svg │ │ ├── Close Square.svg │ │ ├── Danger Circle.svg │ │ ├── Danger Triangle.svg │ │ ├── Delete.svg │ │ ├── Discount.svg │ │ ├── Discovery.svg │ │ ├── Document.svg │ │ ├── Download.svg │ │ ├── Edit Square.svg │ │ ├── Edit.svg │ │ ├── Filter 3.svg │ │ ├── Filter.svg │ │ ├── Folder.svg │ │ ├── Game.svg │ │ ├── Graph.svg │ │ ├── Heart.svg │ │ ├── Hide.svg │ │ ├── Home.svg │ │ ├── Image 3.svg │ │ ├── Image.svg │ │ ├── Info Square.svg │ │ ├── Location.svg │ │ ├── Lock.svg │ │ ├── Login.svg │ │ ├── Logout.svg │ │ ├── Message.svg │ │ ├── More Circle.svg │ │ ├── More Square.svg │ │ ├── Notification.svg │ │ ├── Paper Download.svg │ │ ├── Paper Fail.svg │ │ ├── Paper Negative.svg │ │ ├── Paper Plus.svg │ │ ├── Paper Upload.svg │ │ ├── Paper.svg │ │ ├── Password.svg │ │ ├── Play.svg │ │ ├── Plus.svg │ │ ├── Profile.svg │ │ ├── Scan.svg │ │ ├── Search.svg │ │ ├── Send.svg │ │ ├── Setting.svg │ │ ├── Shield Done.svg │ │ ├── Shield Fail.svg │ │ ├── Show.svg │ │ ├── Star.svg │ │ ├── Swap.svg │ │ ├── Tick Square.svg │ │ ├── Ticket Star.svg │ │ ├── Ticket.svg │ │ ├── Time Circle.svg │ │ ├── Time Square.svg │ │ ├── Unlock.svg │ │ ├── Upload.svg │ │ ├── Video.svg │ │ ├── Voice 3.svg │ │ ├── Voice.svg │ │ ├── Volume Down.svg │ │ ├── Volume Off.svg │ │ ├── Volume Up.svg │ │ ├── Wallet.svg │ │ └── Work.svg │ ├── Leaflet │ ├── images │ │ ├── layers-2x.png │ │ ├── layers.png │ │ ├── marker-icon-2x.png │ │ ├── marker-icon.png │ │ └── marker-shadow.png │ ├── leaflet-src.esm.js │ ├── leaflet-src.esm.js.map │ ├── leaflet-src.js │ ├── leaflet-src.js.map │ ├── leaflet.css │ ├── leaflet.js │ └── leaflet.js.map │ ├── aos │ └── dist │ │ ├── aos.css │ │ └── aos.js │ ├── fullcalendar │ ├── bootstrap │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── main.css │ │ ├── main.d.ts │ │ ├── main.esm.js │ │ ├── main.js │ │ ├── main.min.css │ │ ├── main.min.js │ │ └── package.json │ ├── core │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── locales-all.js │ │ ├── locales-all.min.js │ │ ├── locales │ │ │ ├── af.js │ │ │ ├── ar-dz.js │ │ │ ├── ar-kw.js │ │ │ ├── ar-ly.js │ │ │ ├── ar-ma.js │ │ │ ├── ar-sa.js │ │ │ ├── ar-tn.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-gb.js │ │ │ ├── en-nz.js │ │ │ ├── es-us.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr-ca.js │ │ │ ├── fr-ch.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── kk.js │ │ │ ├── ko.js │ │ │ ├── lb.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ ├── main.css │ │ ├── main.d.ts │ │ ├── main.esm.js │ │ ├── main.js │ │ ├── main.min.css │ │ ├── main.min.js │ │ └── package.json │ ├── daygrid │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── main.css │ │ ├── main.d.ts │ │ ├── main.esm.js │ │ ├── main.js │ │ ├── main.min.css │ │ ├── main.min.js │ │ └── package.json │ ├── google-calendar │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── main.d.ts │ │ ├── main.esm.js │ │ ├── main.js │ │ ├── main.min.js │ │ └── package.json │ ├── interaction │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── main.d.ts │ │ ├── main.esm.js │ │ ├── main.js │ │ ├── main.min.js │ │ └── package.json │ ├── list │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── main.css │ │ ├── main.d.ts │ │ ├── main.esm.js │ │ ├── main.js │ │ ├── main.min.css │ │ ├── main.min.js │ │ └── package.json │ ├── luxon │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── main.d.ts │ │ ├── main.esm.js │ │ ├── main.js │ │ ├── main.min.js │ │ └── package.json │ ├── moment-timezone │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── main.d.ts │ │ ├── main.esm.js │ │ ├── main.js │ │ ├── main.min.js │ │ └── package.json │ ├── moment │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── main.d.ts │ │ ├── main.esm.js │ │ ├── main.js │ │ ├── main.min.js │ │ └── package.json │ ├── rrule │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── main.d.ts │ │ ├── main.esm.js │ │ ├── main.js │ │ ├── main.min.js │ │ └── package.json │ └── timegrid │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── main.css │ │ ├── main.d.ts │ │ ├── main.esm.js │ │ ├── main.js │ │ ├── main.min.css │ │ ├── main.min.js │ │ └── package.json │ ├── lodash │ └── lodash.min.js │ ├── moment.min.js │ └── sortable │ ├── Sortable.js │ └── Sortable.min.js ├── auth ├── confirm-mail.html ├── lock-screen.html ├── recoverpw.html ├── sign-in.html └── sign-up.html ├── errors ├── error403.html ├── error404.html ├── error429.html ├── error500.html └── maintenance.html ├── icons ├── dual-tone.html ├── outline.html └── solid.html ├── index.html ├── products ├── create-proxmox-product.html ├── create-ptero-product.html ├── game-pricings.html ├── order-form.html ├── proxmox-product-edit.html ├── proxmox-products-list.html ├── ptero-product-edit.html ├── ptero-products-list.html └── vps-pricings.html ├── roles ├── create-role.html ├── role-edit.html └── roles-list.html ├── services ├── proxmox-term.html ├── service-edit.html ├── service-game.html ├── service-vps.html ├── services-list.html ├── services.html └── term.js └── users ├── create-user.html ├── user-edit.html └── users-list.html /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: feature request 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other-question.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Other Question 3 | about: Ask your question here. 4 | title: '' 5 | labels: question 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | api/node_modules 2 | api/package-lock.json 3 | api/logs/* 4 | api/utils/rate-limit-windows/* 5 | api/config.json 6 | dev_files/ -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /api/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | pnpm-lock.yaml 4 | config.json 5 | -------------------------------------------------------------------------------- /api/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /api/routes/example.js: -------------------------------------------------------------------------------- 1 | var router = require('express').Router(); 2 | const server = require('../../server.js') 3 | const route_name = "/#####" 4 | server.logger(" [INFO] /api" + route_name + " route loaded !") 5 | 6 | 7 | 8 | module.exports = router; -------------------------------------------------------------------------------- /api/utils/rate-limit-windows/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 |

La configuration de votre serveur web est mauvaise !

2 |

Vous devez changer la configuration de votre serveur web pour qu'il pointe sur le dossier public/

3 |

Si vous ne le faites pas votre fichier de configuration et toutes l'api est accessible !

-------------------------------------------------------------------------------- /public/assets/images/Flag/flag-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/Flag/flag-01.png -------------------------------------------------------------------------------- /public/assets/images/Flag/flag-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/Flag/flag-02.png -------------------------------------------------------------------------------- /public/assets/images/Flag/flag-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/Flag/flag-03.png -------------------------------------------------------------------------------- /public/assets/images/Flag/flag-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/Flag/flag-04.png -------------------------------------------------------------------------------- /public/assets/images/Flag/flag-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/Flag/flag-05.png -------------------------------------------------------------------------------- /public/assets/images/Flag/flag-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/Flag/flag-06.png -------------------------------------------------------------------------------- /public/assets/images/Flag/flag001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/Flag/flag001.png -------------------------------------------------------------------------------- /public/assets/images/auth/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/auth/01.png -------------------------------------------------------------------------------- /public/assets/images/auth/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/auth/02.png -------------------------------------------------------------------------------- /public/assets/images/auth/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/auth/03.png -------------------------------------------------------------------------------- /public/assets/images/auth/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/auth/04.png -------------------------------------------------------------------------------- /public/assets/images/auth/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/auth/05.png -------------------------------------------------------------------------------- /public/assets/images/auth/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/auth/06.png -------------------------------------------------------------------------------- /public/assets/images/avatars/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/avatars/01.png -------------------------------------------------------------------------------- /public/assets/images/avatars/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/avatars/02.png -------------------------------------------------------------------------------- /public/assets/images/avatars/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/avatars/03.png -------------------------------------------------------------------------------- /public/assets/images/avatars/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/avatars/04.png -------------------------------------------------------------------------------- /public/assets/images/avatars/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/avatars/05.png -------------------------------------------------------------------------------- /public/assets/images/avatars/avtar_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/avatars/avtar_1.png -------------------------------------------------------------------------------- /public/assets/images/avatars/avtar_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/avatars/avtar_2.png -------------------------------------------------------------------------------- /public/assets/images/avatars/avtar_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/avatars/avtar_3.png -------------------------------------------------------------------------------- /public/assets/images/avatars/avtar_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/avatars/avtar_4.png -------------------------------------------------------------------------------- /public/assets/images/avatars/avtar_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/avatars/avtar_5.png -------------------------------------------------------------------------------- /public/assets/images/brands/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/brands/08.png -------------------------------------------------------------------------------- /public/assets/images/brands/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/brands/09.png -------------------------------------------------------------------------------- /public/assets/images/brands/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/brands/10.png -------------------------------------------------------------------------------- /public/assets/images/brands/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/brands/11.png -------------------------------------------------------------------------------- /public/assets/images/brands/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/brands/12.png -------------------------------------------------------------------------------- /public/assets/images/brands/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/brands/13.png -------------------------------------------------------------------------------- /public/assets/images/brands/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/brands/14.png -------------------------------------------------------------------------------- /public/assets/images/brands/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/brands/15.png -------------------------------------------------------------------------------- /public/assets/images/brands/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/brands/16.png -------------------------------------------------------------------------------- /public/assets/images/brands/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/brands/17.png -------------------------------------------------------------------------------- /public/assets/images/brands/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/brands/18.png -------------------------------------------------------------------------------- /public/assets/images/brands/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/brands/19.png -------------------------------------------------------------------------------- /public/assets/images/brands/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/brands/20.png -------------------------------------------------------------------------------- /public/assets/images/brands/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/brands/21.png -------------------------------------------------------------------------------- /public/assets/images/brands/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/brands/22.png -------------------------------------------------------------------------------- /public/assets/images/brands/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/brands/23.png -------------------------------------------------------------------------------- /public/assets/images/brands/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/brands/pdf.png -------------------------------------------------------------------------------- /public/assets/images/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/dashboard.png -------------------------------------------------------------------------------- /public/assets/images/dashboard/top-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/dashboard/top-header.png -------------------------------------------------------------------------------- /public/assets/images/dashboard/top-header1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/dashboard/top-header1.png -------------------------------------------------------------------------------- /public/assets/images/dashboard/top-header3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/dashboard/top-header3.png -------------------------------------------------------------------------------- /public/assets/images/dashboard/top-header4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/dashboard/top-header4.png -------------------------------------------------------------------------------- /public/assets/images/dashboard/top-header5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/dashboard/top-header5.png -------------------------------------------------------------------------------- /public/assets/images/dashboard/top-header6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/dashboard/top-header6.png -------------------------------------------------------------------------------- /public/assets/images/dashboard/top-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/dashboard/top-image.jpg -------------------------------------------------------------------------------- /public/assets/images/down-aerrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/down-aerrow.gif -------------------------------------------------------------------------------- /public/assets/images/error/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/error/01.png -------------------------------------------------------------------------------- /public/assets/images/error/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/error/02.png -------------------------------------------------------------------------------- /public/assets/images/error/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/error/03.png -------------------------------------------------------------------------------- /public/assets/images/error/401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/error/401.png -------------------------------------------------------------------------------- /public/assets/images/error/403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/error/403.png -------------------------------------------------------------------------------- /public/assets/images/error/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/error/404.png -------------------------------------------------------------------------------- /public/assets/images/error/500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/error/500.png -------------------------------------------------------------------------------- /public/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/favicon.ico -------------------------------------------------------------------------------- /public/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/icon.png -------------------------------------------------------------------------------- /public/assets/images/icon_flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/icon_flat.png -------------------------------------------------------------------------------- /public/assets/images/icon_flat_rounded.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/icon_flat_rounded.ico -------------------------------------------------------------------------------- /public/assets/images/icon_flat_rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/icon_flat_rounded.png -------------------------------------------------------------------------------- /public/assets/images/icons/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/icons/01.png -------------------------------------------------------------------------------- /public/assets/images/icons/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/icons/02.png -------------------------------------------------------------------------------- /public/assets/images/icons/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/icons/03.png -------------------------------------------------------------------------------- /public/assets/images/icons/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/icons/04.png -------------------------------------------------------------------------------- /public/assets/images/icons/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/icons/05.png -------------------------------------------------------------------------------- /public/assets/images/icons/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/icons/06.png -------------------------------------------------------------------------------- /public/assets/images/icons/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/icons/07.png -------------------------------------------------------------------------------- /public/assets/images/icons/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/icons/08.png -------------------------------------------------------------------------------- /public/assets/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/loader.gif -------------------------------------------------------------------------------- /public/assets/images/pages/01-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/pages/01-page.png -------------------------------------------------------------------------------- /public/assets/images/pages/02-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/pages/02-page.png -------------------------------------------------------------------------------- /public/assets/images/pages/img-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/pages/img-success.png -------------------------------------------------------------------------------- /public/assets/images/payement.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/payement.gif -------------------------------------------------------------------------------- /public/assets/images/settings/dark/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/dark/01.png -------------------------------------------------------------------------------- /public/assets/images/settings/dark/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/dark/02.png -------------------------------------------------------------------------------- /public/assets/images/settings/dark/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/dark/03.png -------------------------------------------------------------------------------- /public/assets/images/settings/dark/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/dark/04.png -------------------------------------------------------------------------------- /public/assets/images/settings/dark/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/dark/05.png -------------------------------------------------------------------------------- /public/assets/images/settings/dark/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/dark/06.png -------------------------------------------------------------------------------- /public/assets/images/settings/dark/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/dark/07.png -------------------------------------------------------------------------------- /public/assets/images/settings/dark/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/dark/08.png -------------------------------------------------------------------------------- /public/assets/images/settings/dark/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/dark/09.png -------------------------------------------------------------------------------- /public/assets/images/settings/dark/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/dark/10.png -------------------------------------------------------------------------------- /public/assets/images/settings/dark/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/dark/11.png -------------------------------------------------------------------------------- /public/assets/images/settings/dark/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/dark/12.png -------------------------------------------------------------------------------- /public/assets/images/settings/dark/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/dark/13.png -------------------------------------------------------------------------------- /public/assets/images/settings/light/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/light/01.png -------------------------------------------------------------------------------- /public/assets/images/settings/light/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/light/02.png -------------------------------------------------------------------------------- /public/assets/images/settings/light/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/light/03.png -------------------------------------------------------------------------------- /public/assets/images/settings/light/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/light/04.png -------------------------------------------------------------------------------- /public/assets/images/settings/light/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/light/05.png -------------------------------------------------------------------------------- /public/assets/images/settings/light/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/light/06.png -------------------------------------------------------------------------------- /public/assets/images/settings/light/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/light/07.png -------------------------------------------------------------------------------- /public/assets/images/settings/light/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/light/08.png -------------------------------------------------------------------------------- /public/assets/images/settings/light/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/light/09.png -------------------------------------------------------------------------------- /public/assets/images/settings/light/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/light/10.png -------------------------------------------------------------------------------- /public/assets/images/settings/light/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/light/11.png -------------------------------------------------------------------------------- /public/assets/images/settings/light/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/light/12.png -------------------------------------------------------------------------------- /public/assets/images/settings/light/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/settings/light/13.png -------------------------------------------------------------------------------- /public/assets/images/shapes/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/shapes/01.png -------------------------------------------------------------------------------- /public/assets/images/shapes/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/shapes/02.png -------------------------------------------------------------------------------- /public/assets/images/shapes/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/shapes/03.png -------------------------------------------------------------------------------- /public/assets/images/shapes/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/shapes/04.png -------------------------------------------------------------------------------- /public/assets/images/shapes/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/shapes/05.png -------------------------------------------------------------------------------- /public/assets/images/shapes/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/shapes/06.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/cloudy-day-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/vectormap/cloudy-day-1.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/cloudy-day-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/vectormap/cloudy-day-2.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/cloudy-day-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/vectormap/cloudy-day-3.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/cloudy-night-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/vectormap/cloudy-night-1.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/cloudy-night-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/vectormap/cloudy-night-2.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/vectormap/cloudy.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/vectormap/day.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/vectormap/night.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/rainy-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/vectormap/rainy-1.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/rainy-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/vectormap/rainy-2.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/rainy-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/vectormap/rainy-3.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/rainy-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/vectormap/rainy-4.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/rainy-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/vectormap/rainy-5.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/rainy-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/vectormap/rainy-6.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/rainy-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/vectormap/rainy-7.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/snowy-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/vectormap/snowy-1.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/snowy-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/vectormap/snowy-4.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/snowy-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/vectormap/snowy-6.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/vectormap/thunder.png -------------------------------------------------------------------------------- /public/assets/images/vectormap/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/images/vectormap/weather.png -------------------------------------------------------------------------------- /public/assets/js/ace/ext-error_marker.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/ext/error_marker"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/mode-text.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/mode/text"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/abap.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/abap"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/ada.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/ada"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/alda.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/alda"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/apache_conf.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/apache_conf"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/apex.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/apex"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/applescript.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/applescript"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/aql.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/aql"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/asciidoc.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/asciidoc"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/asl.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/asl"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/assembly_x86.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/assembly_x86"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/autohotkey.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/autohotkey"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/batchfile.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/batchfile"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/c9search.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/c9search"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/cirru.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/cirru"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/cobol.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/cobol"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/coldfusion.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/coldfusion"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/crystal.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/crystal"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/csharp.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/csharp"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/csound_score.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/csound_score"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/csp.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/csp"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/curly.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/curly"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/d.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/d"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/dockerfile.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/dockerfile"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/dot.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/dot"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/eiffel.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/eiffel"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/ejs.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/ejs"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/elixir.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/elixir"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/elm.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/elm"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/forth.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/forth"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/fortran.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/fortran"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/fsharp.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/fsharp"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/ftl.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/ftl"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/gcode.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/gcode"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/gherkin.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/gherkin"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/gitignore.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/gitignore"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/glsl.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/glsl"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/golang.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/golang"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/groovy.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/groovy"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/handlebars.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/handlebars"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/haskell_cabal.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/haskell_cabal"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/haxe.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/haxe"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/hjson.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/hjson"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/html_elixir.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/html_elixir"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/html_ruby.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/html_ruby"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/ini.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/ini"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/ion.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/ion"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/jack.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/jack"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/jade.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/jade"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/json.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/json"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/json5.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/json5"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/jssm.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/jssm"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/jsx.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/jsx"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/julia.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/julia"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/kotlin.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/kotlin"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/latex.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/latex"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/latte.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/latte"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/less.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/less"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/lisp.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/lisp"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/livescript.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/livescript"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/logiql.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/logiql"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/logtalk.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/logtalk"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/luapage.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/luapage"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/lucene.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/lucene"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/mask.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/mask"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/matlab.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/matlab"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/mediawiki.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/mediawiki"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/mel.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/mel"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/mips.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/mips"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/mixal.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/mixal"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/mushcode.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/mushcode"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/mysql.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/mysql"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/nginx.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/nginx"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/nim.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/nim"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/nix.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/nix"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/nsis.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/nsis"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/nunjucks.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/nunjucks"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/objectivec.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/objectivec"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/ocaml.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/ocaml"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/partiql.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/partiql"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/pascal.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/pascal"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/pgsql.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/pgsql"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/php_laravel_blade.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/php_laravel_blade"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/pig.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/pig"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/plain_text.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/plain_text"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/powershell.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/powershell"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/praat.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/praat"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/prisma.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/prisma"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/prolog.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/prolog"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/properties.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/properties"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/protobuf.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/protobuf"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/puppet.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/puppet"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/qml.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/qml"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/raku.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/raku"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/razor.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/razor.snippets",["require","exports","module"], function(require, exports, module){module.exports = "snippet if\n(${1} == ${2}) {\n\t${3}\n}"; 2 | 3 | }); 4 | 5 | define("ace/snippets/razor",["require","exports","module","ace/snippets/razor.snippets"], function(require, exports, module){"use strict"; 6 | exports.snippetText = require("./razor.snippets"); 7 | exports.scope = "razor"; 8 | 9 | }); (function() { 10 | window.require(["ace/snippets/razor"], function(m) { 11 | if (typeof module == "object" && typeof exports == "object" && module) { 12 | module.exports = m; 13 | } 14 | }); 15 | })(); 16 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/rdoc.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/rdoc"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/red.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/red"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/redshift.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/redshift"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/rhtml.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/rhtml"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/rust.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/rust"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/sac.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/sac"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/sass.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/sass"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/scad.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/scad"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/scala.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/scala"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/scheme.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/scheme"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/scrypt.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/scrypt"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/scss.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/scss"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/sjs.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/sjs"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/slim.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/slim"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/smarty.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/smarty"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/smithy.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/smithy"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/soy_template.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/soy_template"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/space.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/space"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/sparql.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/sparql"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/stylus.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/stylus"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/svg.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/svg"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/swift.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/swift"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/terraform.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/terraform"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/text.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/text"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/toml.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/toml"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/tsx.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/tsx"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/turtle.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/turtle"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/twig.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/twig"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/typescript.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/typescript"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/vbscript.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/vbscript"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/verilog.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/verilog"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/vhdl.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/vhdl"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/visualforce.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/visualforce"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/xml.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/xml"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/yaml.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/yaml"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/snippets/zeek.js: -------------------------------------------------------------------------------- 1 | 2 | ; (function() { 3 | window.require(["ace/snippets/zeek"], function(m) { 4 | if (typeof module == "object" && typeof exports == "object" && module) { 5 | module.exports = m; 6 | } 7 | }); 8 | })(); 9 | -------------------------------------------------------------------------------- /public/assets/js/ace/theme-textmate.js: -------------------------------------------------------------------------------- 1 | define("ace/theme/textmate",["require","exports","module","ace/theme/textmate.css","ace/lib/dom"], function(require, exports, module){"use strict"; 2 | exports.isDark = false; 3 | exports.cssClass = "ace-tm"; 4 | exports.cssText = require("./textmate.css"); 5 | exports.$id = "ace/theme/textmate"; 6 | var dom = require("../lib/dom"); 7 | dom.importCssString(exports.cssText, exports.cssClass, false); 8 | 9 | }); (function() { 10 | window.require(["ace/theme/textmate"], function(m) { 11 | if (typeof module == "object" && typeof exports == "object" && module) { 12 | module.exports = m; 13 | } 14 | }); 15 | })(); 16 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Arrow - Down 2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Arrow - Down 3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Arrow - Down Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Arrow - Down Square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Arrow - Left 2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Arrow - Left 3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Arrow - Left Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Arrow - Left Square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Arrow - Right 2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Arrow - Right 3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Arrow - Right Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Arrow - Right Square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Arrow - Up 2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Arrow - Up 3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Arrow - Up Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Arrow - Up Square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Bookmark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Call.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Discovery.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Folder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Home.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Info Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Info Square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Location.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Message.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/More Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/More Square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Profile.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Search.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Send.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Tick Square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Time Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Time Square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Bold/Video.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Colored/Arrow - Down 3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Colored/Arrow - Down Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Colored/Arrow - Left Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Colored/Arrow - Right 3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Colored/Arrow - Right Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Colored/Arrow - Up Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Colored/Call.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Colored/Discovery.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Colored/Filter 2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Colored/Plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Colored/Profile.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Colored/Search.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Colored/Tick Square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Colored/Time Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Colored/Time Square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Colored/Video.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/DualTone/Arrow - Down Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/DualTone/Arrow - Left Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/DualTone/Arrow - Right Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/DualTone/Arrow - Up Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/DualTone/Call.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/DualTone/Discovery.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/DualTone/Filter 2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/DualTone/Home.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/DualTone/Plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/DualTone/Profile.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/DualTone/Search.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/DualTone/Tick Square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/DualTone/Time Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/DualTone/Time Square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/DualTone/Video.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Activity.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Arrow - Down 2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Arrow - Down 3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Arrow - Down Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Arrow - Down Square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Arrow - Down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Arrow - Left 2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Arrow - Left 3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Arrow - Left Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Arrow - Left Square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Arrow - Left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Arrow - Right 2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Arrow - Right 3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Arrow - Right Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Arrow - Right Square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Arrow - Right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Arrow - Up 2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Arrow - Up 3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Arrow - Up Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Arrow - Up Square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Arrow - Up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Bag 3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Bookmark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Call Missed.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Call Silent.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Call.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Chart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Close Square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Danger Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Danger Triangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Discovery.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Download.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Filter 3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Folder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Heart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Home.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Info Square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Location.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Login.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Logout.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Message.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/More Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/More Square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Notification.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Paper Negative.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Play.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Search.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Send.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Shield Done.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Shield Fail.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Show.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Swap.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Tick Square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Time Circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Time Square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Upload.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/assets/vendor/Iconly/Line/Voice.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/assets/vendor/Leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/vendor/Leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /public/assets/vendor/Leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/vendor/Leaflet/images/layers.png -------------------------------------------------------------------------------- /public/assets/vendor/Leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/vendor/Leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /public/assets/vendor/Leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/vendor/Leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /public/assets/vendor/Leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyme-fr/MercuryCloud_Dashboard/f7d514d2ce63127d1bf9188a937737a015468289/public/assets/vendor/Leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/bootstrap/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Bootstrap Plugin 3 | 4 | Bootstrap 5 theming for your calendar 5 | 6 | [View the docs »](https://fullcalendar.io/docs/bootstrap-theme) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/bootstrap/main.d.ts: -------------------------------------------------------------------------------- 1 | // Generated by dts-bundle v0.7.3-fork.1 2 | // Dependencies for this module: 3 | // ../../../../../@fullcalendar/core 4 | 5 | declare module '@fullcalendar/bootstrap' { 6 | import { Theme } from '@fullcalendar/core'; 7 | export class BootstrapTheme extends Theme { 8 | } 9 | const _default: import("@fullcalendar/core").PluginDef; 10 | export default _default; 11 | } 12 | 13 | -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/bootstrap/main.min.css: -------------------------------------------------------------------------------- 1 | .fc.fc-bootstrap a{text-decoration:none}.fc.fc-bootstrap a[data-goto]:hover{text-decoration:underline}.fc-bootstrap hr.fc-divider{border-color:inherit}.fc-bootstrap .fc-today.alert{border-radius:0}.fc-bootstrap a.fc-event:not([href]):not([tabindex]){color:#fff}.fc-bootstrap .fc-popover.card{position:absolute}.fc-bootstrap .fc-popover .card-body{padding:0}.fc-bootstrap .fc-time-grid .fc-slats table{background:0 0} -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Core Package 3 | 4 | Provides core functionality, including the Calendar class 5 | 6 | [View the docs »](https://fullcalendar.io/docs/initialize-es6) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/en-au.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['en-au'] = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var enAu = { 8 | code: "en-au", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | } 13 | }; 14 | 15 | return enAu; 16 | 17 | })); 18 | -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/en-gb.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['en-gb'] = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var enGb = { 8 | code: "en-gb", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | } 13 | }; 14 | 15 | return enGb; 16 | 17 | })); 18 | -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/core/locales/en-nz.js: -------------------------------------------------------------------------------- 1 | (function (global, factory) { 2 | typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : 3 | typeof define === 'function' && define.amd ? define(factory) : 4 | (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['en-nz'] = factory())); 5 | }(this, function () { 'use strict'; 6 | 7 | var enNz = { 8 | code: "en-nz", 9 | week: { 10 | dow: 1, 11 | doy: 4 // The week that contains Jan 4th is the first week of the year. 12 | } 13 | }; 14 | 15 | return enNz; 16 | 17 | })); 18 | -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/daygrid/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Day Grid Plugin 3 | 4 | Display events on Month view or DayGrid view 5 | 6 | [View the docs »](https://fullcalendar.io/docs/month-view) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/google-calendar/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Google Calendar Plugin 3 | 4 | Fetch events from a public Google Calendar feed 5 | 6 | [View the docs »](https://fullcalendar.io/docs/google-calendar) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/google-calendar/main.d.ts: -------------------------------------------------------------------------------- 1 | // Generated by dts-bundle v0.7.3-fork.1 2 | // Dependencies for this module: 3 | // main.d.ts 4 | 5 | declare module '@fullcalendar/google-calendar' { 6 | module '@fullcalendar/core' { 7 | interface OptionsInput { 8 | googleCalendarApiKey?: string; 9 | } 10 | } 11 | module '@fullcalendar/core/structs/event-source' { 12 | interface ExtendedEventSourceInput { 13 | googleCalendarApiKey?: string; 14 | googleCalendarId?: string; 15 | } 16 | } 17 | const _default: import("@fullcalendar/core").PluginDef; 18 | export default _default; 19 | } 20 | 21 | -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/interaction/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Interaction Plugin 3 | 4 | Provides functionality for event drag-n-drop, resizing, dateClick, and selectable actions 5 | 6 | [View the docs »](https://fullcalendar.io/docs/editable) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/list/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar List View Plugin 3 | 4 | View your events as a bulleted list 5 | 6 | [View the docs »](https://fullcalendar.io/docs/list-view) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/luxon/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Luxon Plugin 3 | 4 | A connector to the Luxon date library 5 | 6 | [View the docs »](https://fullcalendar.io/docs/luxon-plugin) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/luxon/main.d.ts: -------------------------------------------------------------------------------- 1 | // Generated by dts-bundle v0.7.3-fork.1 2 | // Dependencies for this module: 3 | // ../../../../../luxon 4 | // ../../../../../@fullcalendar/core 5 | 6 | declare module '@fullcalendar/luxon' { 7 | import { DateTime as LuxonDateTime, Duration as LuxonDuration } from 'luxon'; 8 | import { Calendar, Duration } from '@fullcalendar/core'; 9 | export function toDateTime(date: Date, calendar: Calendar): LuxonDateTime; 10 | export function toDuration(duration: Duration, calendar: Calendar): LuxonDuration; 11 | const _default: import("@fullcalendar/core").PluginDef; 12 | export default _default; 13 | } 14 | 15 | -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/moment-timezone/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Moment Timezone Plugin 3 | 4 | A connector to the moment-timezone library 5 | 6 | [View the docs »](https://fullcalendar.io/docs/moment-plugins#moment-timezone) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/moment-timezone/main.d.ts: -------------------------------------------------------------------------------- 1 | // Generated by dts-bundle v0.7.3-fork.1 2 | // Dependencies for this module: 3 | // ../../../../../moment-timezone/builds/moment-timezone-with-data 4 | // ../../../../../@fullcalendar/core 5 | 6 | declare module '@fullcalendar/moment-timezone' { 7 | import 'moment-timezone/builds/moment-timezone-with-data'; 8 | const _default: import("@fullcalendar/core").PluginDef; 9 | export default _default; 10 | } 11 | 12 | -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/moment/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Moment Plugin 3 | 4 | A connector to the MomentJS date library 5 | 6 | [View the docs »](https://fullcalendar.io/docs/moment-plugins) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/moment/main.d.ts: -------------------------------------------------------------------------------- 1 | // Generated by dts-bundle v0.7.3-fork.1 2 | // Dependencies for this module: 3 | // ../../../../../moment 4 | // ../../../../../@fullcalendar/core 5 | 6 | declare module '@fullcalendar/moment' { 7 | import * as momentNs from 'moment'; 8 | import { Calendar, Duration } from '@fullcalendar/core'; 9 | export function toMoment(date: Date, calendar: Calendar): momentNs.Moment; 10 | export function toDuration(fcDuration: Duration): momentNs.Duration; 11 | const _default: import("@fullcalendar/core").PluginDef; 12 | export default _default; 13 | } 14 | 15 | -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/rrule/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar RRule Plugin 3 | 4 | A connector to the RRule library, for recurring events 5 | 6 | [View the docs »](https://fullcalendar.io/docs/rrule-plugin) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/rrule/main.d.ts: -------------------------------------------------------------------------------- 1 | // Generated by dts-bundle v0.7.3-fork.1 2 | // Dependencies for this module: 3 | // ../../../../../@fullcalendar/core 4 | 5 | declare module '@fullcalendar/rrule' { 6 | const _default: import("@fullcalendar/core").PluginDef; 7 | export default _default; 8 | } 9 | 10 | -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/timegrid/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Time Grid Plugin 3 | 4 | Display your events on a grid of time slots 5 | 6 | [View the docs »](https://fullcalendar.io/docs/timegrid-view) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /public/services/proxmox-term.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Term 6 | 7 | 8 | 9 | test 10 | 11 | --------------------------------------------------------------------------------