├── .gitattributes ├── .gitignore ├── MyDog.md ├── Readme.md ├── Readme_bak.md ├── construction.md ├── mydog-core ├── pom.xml └── src │ ├── main │ └── java │ │ └── org │ │ └── huangpu │ │ └── mydog │ │ └── core │ │ ├── GenDef.java │ │ ├── Generator.java │ │ ├── GeneratorDecorator.java │ │ ├── Grammar.java │ │ ├── MetaDataPropResolver.java │ │ ├── Metadata.java │ │ ├── MetadataParser.java │ │ ├── MyDogPlugin.java │ │ ├── NullMetadataProperties.java │ │ ├── OutputDef.java │ │ ├── OutputItem.java │ │ ├── OutputItemDef.java │ │ ├── PreDef.java │ │ ├── Preserver.java │ │ ├── TypeGeneratorFactory.java │ │ ├── enums │ │ ├── GenType.java │ │ └── OutputFormat.java │ │ ├── flow │ │ └── FlowController.java │ │ ├── generator │ │ ├── ByCodedGenerator.java │ │ ├── ByCopyGenerator.java │ │ ├── ByGrammarGenerator.java │ │ ├── ByNullGenerator.java │ │ └── ByTemplateGenerator.java │ │ ├── grammar │ │ ├── Annotat.java │ │ ├── DDLGrammar.java │ │ ├── Field.java │ │ ├── GrammarFactory.java │ │ ├── HtmlGrammar.java │ │ ├── JavaGrammar.java │ │ ├── Mergeable.java │ │ ├── Method.java │ │ ├── PropertiesGrammar.java │ │ └── XmlGrammar.java │ │ ├── outputitem │ │ ├── CodedOutputItem.java │ │ ├── CopyOutputItem.java │ │ ├── GrammarOutputItem.java │ │ └── TemplateOutputItem.java │ │ ├── plugins │ │ ├── BasePlugin.java │ │ ├── GenerateContext.java │ │ ├── SPIUtils.java │ │ └── metadata │ │ │ ├── AbstractMyDogPluginProperties.java │ │ │ ├── MyDogPluginMetaData.java │ │ │ └── MyDogPluginProperties.java │ │ ├── preserver │ │ ├── ByCodePreserver.java │ │ ├── ByCopyPreserver.java │ │ ├── ByGrammarPreserver.java │ │ ├── ByTemplatedPreserver.java │ │ └── PreserverFactory.java │ │ ├── propresolver │ │ ├── CpPropResolver.java │ │ ├── EmptyMetaDataPropResolver.java │ │ └── MyDogFunction.java │ │ └── utils │ │ ├── CloneUtils.java │ │ ├── ConnectUtils.java │ │ ├── DDLUtils.java │ │ ├── FileListener.java │ │ ├── FileMonitor.java │ │ ├── FileUtil.java │ │ ├── JarUtils.java │ │ ├── SqlExecutor.java │ │ └── TemplateUtils.java │ └── test │ ├── java │ ├── TestDDLUtils.java │ └── TestInstead.java │ └── resources │ └── all_in_one.json ├── mydog-doc ├── pom.xml └── src │ └── main │ └── resources │ ├── mydog-entityui │ └── mydog-plugin-entityui_codes.png │ ├── mydog-gen-flow2.png │ ├── mydog-shell_1.png │ ├── mydog-web │ └── mydog-web.png │ ├── mydog.ico │ ├── mydog.png │ └── mydog_gen_flow.png ├── mydog-plugin-datasource ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── huangpu │ │ │ └── mydog │ │ │ └── plugins │ │ │ └── datasource │ │ │ ├── DatasourcePlugin.java │ │ │ ├── DatasourcePropResolver.java │ │ │ └── metadata │ │ │ └── DatasourcePluginProperties.java │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── org.huangpu.mydog.core.MyDogPlugin │ │ └── templates │ │ ├── datasource_dependency_def.json │ │ └── datasource_output_def.json │ └── test │ └── java │ └── PluginTest.java ├── mydog-plugin-entity ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── huangpu │ │ └── mydog │ │ └── plugins │ │ └── entity │ │ ├── EntityGeneratorDecorator.java │ │ ├── EntityPlugin.java │ │ ├── EntityPropResolver.java │ │ └── metadata │ │ ├── EntityPluginField.java │ │ ├── EntityPluginProperties.java │ │ └── EntityQuery.java │ └── resources │ ├── META-INF │ └── services │ │ └── org.huangpu.mydog.core.MyDogPlugin │ └── templates │ ├── _Controller.ftl │ ├── _Service.ftl │ ├── _boot_config.java.ftl │ ├── _page_data_info.java.ftl │ ├── entity_dependency_def.json │ └── entity_output_def.json ├── mydog-plugin-entityui ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── huangpu │ │ └── mydog │ │ └── plugins │ │ └── entityui │ │ ├── EntityUIGeneratorDecorator.java │ │ ├── EntityUIPlugin.java │ │ ├── EntityUIPropResolver.java │ │ └── metadata │ │ └── EntityUIPluginProperties.java │ └── resources │ ├── META-INF │ └── services │ │ └── org.huangpu.mydog.core.MyDogPlugin │ └── templates │ ├── _404.html.ftl │ ├── _500.html.ftl │ ├── _entity_detail.html.ftl │ ├── _entity_detail.js.ftl │ ├── _entity_list.bak.js.ftl │ ├── _entity_list.html.ftl │ ├── _entity_list.js.ftl │ ├── _index.html.ftl │ ├── _login.html.ftl │ ├── _login.js.ftl │ ├── _main.js.ftl │ ├── _menu.html.ftl │ ├── assets │ ├── css │ │ ├── animate.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── patterns │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── congruent_pentagon.png │ │ │ ├── header-profile-skin-1.png │ │ │ ├── header-profile-skin-2.png │ │ │ ├── header-profile-skin-3.png │ │ │ ├── header-profile.png │ │ │ ├── otis_redding.png │ │ │ ├── shattered.png │ │ │ └── triangular.png │ │ ├── plugins │ │ │ ├── awesome-bootstrap-checkbox │ │ │ │ └── awesome-bootstrap-checkbox.css │ │ │ ├── blueimp │ │ │ │ ├── css │ │ │ │ │ ├── blueimp-gallery-indicator.css │ │ │ │ │ ├── blueimp-gallery-video.css │ │ │ │ │ ├── blueimp-gallery.css │ │ │ │ │ ├── blueimp-gallery.min.css │ │ │ │ │ └── demo.css │ │ │ │ └── img │ │ │ │ │ ├── error.png │ │ │ │ │ ├── error.svg │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── play-pause.png │ │ │ │ │ ├── play-pause.svg │ │ │ │ │ ├── video-play.png │ │ │ │ │ └── video-play.svg │ │ │ ├── bootstrap-markdown │ │ │ │ └── bootstrap-markdown.min.css │ │ │ ├── bootstrap-rtl │ │ │ │ ├── bootstrap-rtl.css │ │ │ │ ├── bootstrap-rtl.css.map │ │ │ │ └── bootstrap-rtl.min.css │ │ │ ├── bootstrap-tagsinput │ │ │ │ └── bootstrap-tagsinput.css │ │ │ ├── bootstrapSocial │ │ │ │ └── bootstrap-social.css │ │ │ ├── bootstrapTour │ │ │ │ └── bootstrap-tour.min.css │ │ │ ├── c3 │ │ │ │ └── c3.min.css │ │ │ ├── chartist │ │ │ │ └── chartist.min.css │ │ │ ├── chosen │ │ │ │ ├── bootstrap-chosen.css │ │ │ │ ├── chosen-sprite.png │ │ │ │ ├── chosen-sprite@2x.png │ │ │ │ └── chosen.css │ │ │ ├── clockpicker │ │ │ │ └── clockpicker.css │ │ │ ├── codemirror │ │ │ │ ├── ambiance.css │ │ │ │ └── codemirror.css │ │ │ ├── colorpicker │ │ │ │ └── bootstrap-colorpicker.min.css │ │ │ ├── cropper │ │ │ │ └── cropper.min.css │ │ │ ├── dataTables │ │ │ │ └── datatables.min.css │ │ │ ├── datapicker │ │ │ │ └── datepicker3.css │ │ │ ├── daterangepicker │ │ │ │ └── daterangepicker-bs3.css │ │ │ ├── dropzone │ │ │ │ ├── basic.css │ │ │ │ └── dropzone.css │ │ │ ├── dualListbox │ │ │ │ └── bootstrap-duallistbox.min.css │ │ │ ├── footable │ │ │ │ ├── fonts │ │ │ │ │ ├── footable.eot │ │ │ │ │ ├── footable.svg │ │ │ │ │ ├── footable.ttf │ │ │ │ │ └── footable.woff │ │ │ │ └── footable.core.css │ │ │ ├── fullcalendar │ │ │ │ ├── fullcalendar.css │ │ │ │ └── fullcalendar.print.css │ │ │ ├── iCheck │ │ │ │ ├── custom.css │ │ │ │ ├── green.png │ │ │ │ └── green@2x.png │ │ │ ├── images │ │ │ │ ├── bootstrap-colorpicker │ │ │ │ │ ├── alpha-horizontal.png │ │ │ │ │ ├── alpha.png │ │ │ │ │ ├── hue-horizontal.png │ │ │ │ │ ├── hue.png │ │ │ │ │ └── saturation.png │ │ │ │ ├── sort.png │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_desc.png │ │ │ │ ├── sprite-skin-flat.png │ │ │ │ ├── sprite-skin-flat2.png │ │ │ │ ├── sprite-skin-nice.png │ │ │ │ ├── sprite-skin-simple.png │ │ │ │ ├── spritemap.png │ │ │ │ └── spritemap@2x.png │ │ │ ├── ionRangeSlider │ │ │ │ ├── ion.rangeSlider.css │ │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ │ ├── ion.rangeSlider.skinNice.css │ │ │ │ └── ion.rangeSlider.skinSimple.css │ │ │ ├── jQueryUI │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui-1.10.4.custom.min.css │ │ │ │ └── jquery-ui.css │ │ │ ├── jasny │ │ │ │ └── jasny-bootstrap.min.css │ │ │ ├── jqGrid │ │ │ │ └── ui.jqgrid.css │ │ │ ├── jsTree │ │ │ │ ├── 32px.png │ │ │ │ ├── 39px.png │ │ │ │ ├── 40px.png │ │ │ │ ├── style.css │ │ │ │ ├── style.min.css │ │ │ │ └── throbber.gif │ │ │ ├── ladda │ │ │ │ ├── ladda-themeless.min.css │ │ │ │ └── ladda.min.css │ │ │ ├── morris │ │ │ │ └── morris-0.4.3.min.css │ │ │ ├── nouslider │ │ │ │ └── jquery.nouislider.css │ │ │ ├── select2 │ │ │ │ └── select2.min.css │ │ │ ├── slick │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── fonts │ │ │ │ │ ├── slick.eot │ │ │ │ │ ├── slick.svg │ │ │ │ │ ├── slick.ttf │ │ │ │ │ └── slick.woff │ │ │ │ ├── slick-theme.css │ │ │ │ └── slick.css │ │ │ ├── social-buttons │ │ │ │ └── social-buttons.css │ │ │ ├── steps │ │ │ │ └── jquery.steps.css │ │ │ ├── summernote │ │ │ │ ├── font │ │ │ │ │ ├── summernote.eot │ │ │ │ │ ├── summernote.ttf │ │ │ │ │ └── summernote.woff │ │ │ │ ├── summernote-bs3.css │ │ │ │ └── summernote.css │ │ │ ├── sweetalert │ │ │ │ └── sweetalert.css │ │ │ ├── switchery │ │ │ │ └── switchery.css │ │ │ ├── textSpinners │ │ │ │ └── spinners.css │ │ │ ├── toastr │ │ │ │ └── toastr.min.css │ │ │ └── touchspin │ │ │ │ └── jquery.bootstrap-touchspin.min.css │ │ ├── style.css │ │ └── style.css.map │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── img │ │ ├── mydog-m.png │ │ ├── mydog-s.png │ │ ├── mydog.png │ │ ├── profile.jpg │ │ └── profile_big.jpg │ ├── js │ │ └── main.js │ ├── locales │ │ ├── en.json │ │ └── es.json │ ├── menu.html │ └── vendor │ │ ├── bootstrap │ │ ├── bootstrap-sprockets.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── bootstrap │ │ │ ├── affix.js │ │ │ ├── alert.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dropdown.js │ │ │ ├── modal.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── tooltip.js │ │ │ └── transition.js │ │ ├── bootstrapvalidator │ │ ├── css │ │ │ ├── bootstrapValidator.css │ │ │ └── bootstrapValidator.min.css │ │ └── js │ │ │ ├── bootstrapValidator.js │ │ │ ├── bootstrapValidator.min.js │ │ │ └── language │ │ │ ├── ar_MA.js │ │ │ ├── be_FR.js │ │ │ ├── be_NL.js │ │ │ ├── bg_BG.js │ │ │ ├── cs_CZ.js │ │ │ ├── da_DK.js │ │ │ ├── de_DE.js │ │ │ ├── en_US.js │ │ │ ├── es_CL.js │ │ │ ├── es_ES.js │ │ │ ├── fa_IR.js │ │ │ ├── fr_FR.js │ │ │ ├── gr_EL.js │ │ │ ├── he_IL.js │ │ │ ├── hu_HU.js │ │ │ ├── id_ID.js │ │ │ ├── it_IT.js │ │ │ ├── ja_JP.js │ │ │ ├── nl_NL.js │ │ │ ├── no_NO.js │ │ │ ├── pl_PL.js │ │ │ ├── pt_BR.js │ │ │ ├── pt_PT.js │ │ │ ├── ro_RO.js │ │ │ ├── ru_RU.js │ │ │ ├── sq_AL.js │ │ │ ├── sr_RS.js │ │ │ ├── sv_SE.js │ │ │ ├── th_TH.js │ │ │ ├── tr_TR.js │ │ │ ├── ua_UA.js │ │ │ ├── vi_VN.js │ │ │ ├── zh_CN.js │ │ │ └── zh_TW.js │ │ ├── jqBootstrapValidation │ │ ├── jqBootstrapValidation-1.3.7.js │ │ └── jqBootstrapValidation-1.3.7.min.js │ │ ├── jquery │ │ ├── jquery-1.11.1.min.js │ │ ├── jquery-2.1.1.js │ │ └── jquery-3.1.1.min.js │ │ ├── metisMenu │ │ └── jquery.metisMenu.js │ │ ├── pdfjs │ │ ├── pdf.js │ │ └── pdf.worker.js │ │ ├── peity │ │ └── jquery.peity.min.js │ │ ├── slimscroll │ │ ├── jquery.slimscroll.js │ │ └── jquery.slimscroll.min.js │ │ └── sparkline │ │ └── jquery.sparkline.min.js │ ├── bootstrap │ ├── css │ │ ├── bootstrap-dialog.min.css │ │ ├── bootstrap-table.css │ │ ├── bootstrap-table.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── bootstrapValidator.min.css │ │ ├── chat-widget.css │ │ └── fileinput.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootbox.min.js │ │ ├── bootstrap-dialog.js │ │ ├── bootstrap-table-locale-all.js │ │ ├── bootstrap-table-locale-all.min.js │ │ ├── bootstrap-table.js │ │ ├── bootstrap-table.min.js │ │ ├── bootstrap-wysiwyg.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── bootstrapValidator.js │ │ ├── extensions │ │ ├── accent-neutralise │ │ │ ├── bootstrap-table-accent-neutralise.js │ │ │ └── bootstrap-table-accent-neutralise.min.js │ │ ├── angular │ │ │ ├── bootstrap-table-angular.js │ │ │ └── bootstrap-table-angular.min.js │ │ ├── cookie │ │ │ ├── bootstrap-table-cookie.js │ │ │ └── bootstrap-table-cookie.min.js │ │ ├── copy-rows │ │ │ ├── bootstrap-table-copy-rows.js │ │ │ └── bootstrap-table-copy-rows.min.js │ │ ├── editable │ │ │ ├── bootstrap-table-editable.js │ │ │ └── bootstrap-table-editable.min.js │ │ ├── export │ │ │ ├── bootstrap-table-export.js │ │ │ └── bootstrap-table-export.min.js │ │ ├── filter-control │ │ │ ├── bootstrap-table-filter-control.js │ │ │ └── bootstrap-table-filter-control.min.js │ │ ├── filter │ │ │ ├── bootstrap-table-filter.js │ │ │ └── bootstrap-table-filter.min.js │ │ ├── flat-json │ │ │ ├── bootstrap-table-flat-json.js │ │ │ └── bootstrap-table-flat-json.min.js │ │ ├── group-by-v2 │ │ │ ├── bootstrap-table-group-by.css │ │ │ ├── bootstrap-table-group-by.js │ │ │ └── bootstrap-table-group-by.min.js │ │ ├── group-by │ │ │ ├── bootstrap-table-group-by.css │ │ │ ├── bootstrap-table-group-by.js │ │ │ └── bootstrap-table-group-by.min.js │ │ ├── i18n-enhance │ │ │ ├── bootstrap-table-i18n-enhance.js │ │ │ └── bootstrap-table-i18n-enhance.min.js │ │ ├── key-events │ │ │ ├── bootstrap-table-key-events.js │ │ │ └── bootstrap-table-key-events.min.js │ │ ├── mobile │ │ │ ├── bootstrap-table-mobile.js │ │ │ └── bootstrap-table-mobile.min.js │ │ ├── multi-column-toggle │ │ │ ├── bootstrap-table-multi-toggle.js │ │ │ └── bootstrap-table-multi-toggle.min.js │ │ ├── multiple-search │ │ │ ├── bootstrap-table-multiple-search.js │ │ │ └── bootstrap-table-multiple-search.min.js │ │ ├── multiple-sort │ │ │ ├── bootstrap-table-multiple-sort.js │ │ │ └── bootstrap-table-multiple-sort.min.js │ │ ├── natural-sorting │ │ │ ├── bootstrap-table-natural-sorting.js │ │ │ └── bootstrap-table-natural-sorting.min.js │ │ ├── reorder-columns │ │ │ ├── bootstrap-table-reorder-columns.js │ │ │ └── bootstrap-table-reorder-columns.min.js │ │ ├── reorder-rows │ │ │ ├── bootstrap-table-reorder-rows.css │ │ │ ├── bootstrap-table-reorder-rows.js │ │ │ └── bootstrap-table-reorder-rows.min.js │ │ ├── resizable │ │ │ ├── bootstrap-table-resizable.js │ │ │ └── bootstrap-table-resizable.min.js │ │ ├── select2-filter │ │ │ ├── bootstrap-table-select2-filter.js │ │ │ └── bootstrap-table-select2-filter.min.js │ │ ├── sticky-header │ │ │ ├── bootstrap-table-sticky-header.css │ │ │ ├── bootstrap-table-sticky-header.js │ │ │ └── bootstrap-table-sticky-header.min.js │ │ └── toolbar │ │ │ ├── bootstrap-table-toolbar.js │ │ │ └── bootstrap-table-toolbar.min.js │ │ ├── fileinput.js │ │ ├── fileinput.min.js │ │ ├── handlebars-v4.0.5.js │ │ ├── handlebars.runtime-v4.0.5.js │ │ ├── index.js │ │ ├── jqBootstrapValidation.js │ │ ├── jquery.js │ │ ├── js.cookie.js │ │ ├── locale │ │ ├── bootstrap-table-af-ZA.js │ │ ├── bootstrap-table-af-ZA.min.js │ │ ├── bootstrap-table-ar-SA.js │ │ ├── bootstrap-table-ar-SA.min.js │ │ ├── bootstrap-table-ca-ES.js │ │ ├── bootstrap-table-ca-ES.min.js │ │ ├── bootstrap-table-cs-CZ.js │ │ ├── bootstrap-table-cs-CZ.min.js │ │ ├── bootstrap-table-da-DK.js │ │ ├── bootstrap-table-da-DK.min.js │ │ ├── bootstrap-table-de-DE.js │ │ ├── bootstrap-table-de-DE.min.js │ │ ├── bootstrap-table-el-GR.js │ │ ├── bootstrap-table-el-GR.min.js │ │ ├── bootstrap-table-en-US.js │ │ ├── bootstrap-table-en-US.min.js │ │ ├── bootstrap-table-es-AR.js │ │ ├── bootstrap-table-es-AR.min.js │ │ ├── bootstrap-table-es-CR.js │ │ ├── bootstrap-table-es-CR.min.js │ │ ├── bootstrap-table-es-ES.js │ │ ├── bootstrap-table-es-ES.min.js │ │ ├── bootstrap-table-es-MX.js │ │ ├── bootstrap-table-es-MX.min.js │ │ ├── bootstrap-table-es-NI.js │ │ ├── bootstrap-table-es-NI.min.js │ │ ├── bootstrap-table-es-SP.js │ │ ├── bootstrap-table-es-SP.min.js │ │ ├── bootstrap-table-et-EE.js │ │ ├── bootstrap-table-et-EE.min.js │ │ ├── bootstrap-table-fa-IR.js │ │ ├── bootstrap-table-fa-IR.min.js │ │ ├── bootstrap-table-fr-BE.js │ │ ├── bootstrap-table-fr-BE.min.js │ │ ├── bootstrap-table-fr-FR.js │ │ ├── bootstrap-table-fr-FR.min.js │ │ ├── bootstrap-table-he-IL.js │ │ ├── bootstrap-table-he-IL.min.js │ │ ├── bootstrap-table-hr-HR.js │ │ ├── bootstrap-table-hr-HR.min.js │ │ ├── bootstrap-table-hu-HU.js │ │ ├── bootstrap-table-hu-HU.min.js │ │ ├── bootstrap-table-it-IT.js │ │ ├── bootstrap-table-it-IT.min.js │ │ ├── bootstrap-table-ja-JP.js │ │ ├── bootstrap-table-ja-JP.min.js │ │ ├── bootstrap-table-ka-GE.js │ │ ├── bootstrap-table-ka-GE.min.js │ │ ├── bootstrap-table-ko-KR.js │ │ ├── bootstrap-table-ko-KR.min.js │ │ ├── bootstrap-table-ms-MY.js │ │ ├── bootstrap-table-ms-MY.min.js │ │ ├── bootstrap-table-nb-NO.js │ │ ├── bootstrap-table-nb-NO.min.js │ │ ├── bootstrap-table-nl-NL.js │ │ ├── bootstrap-table-nl-NL.min.js │ │ ├── bootstrap-table-pl-PL.js │ │ ├── bootstrap-table-pl-PL.min.js │ │ ├── bootstrap-table-pt-BR.js │ │ ├── bootstrap-table-pt-BR.min.js │ │ ├── bootstrap-table-pt-PT.js │ │ ├── bootstrap-table-pt-PT.min.js │ │ ├── bootstrap-table-ro-RO.js │ │ ├── bootstrap-table-ro-RO.min.js │ │ ├── bootstrap-table-ru-RU.js │ │ ├── bootstrap-table-ru-RU.min.js │ │ ├── bootstrap-table-sk-SK.js │ │ ├── bootstrap-table-sk-SK.min.js │ │ ├── bootstrap-table-sv-SE.js │ │ ├── bootstrap-table-sv-SE.min.js │ │ ├── bootstrap-table-th-TH.js │ │ ├── bootstrap-table-th-TH.min.js │ │ ├── bootstrap-table-tr-TR.js │ │ ├── bootstrap-table-tr-TR.min.js │ │ ├── bootstrap-table-uk-UA.js │ │ ├── bootstrap-table-uk-UA.min.js │ │ ├── bootstrap-table-ur-PK.js │ │ ├── bootstrap-table-ur-PK.min.js │ │ ├── bootstrap-table-vi-VN.js │ │ ├── bootstrap-table-vi-VN.min.js │ │ ├── bootstrap-table-zh-CN.js │ │ ├── bootstrap-table-zh-CN.min.js │ │ ├── bootstrap-table-zh-TW.js │ │ └── bootstrap-table-zh-TW.min.js │ │ ├── main.js │ │ ├── urlparam.js │ │ └── validator.js │ ├── entityui_dependency_def.json │ └── entityui_output_def.json ├── mydog-plugin-ormapping ├── pom.xml ├── src │ └── main │ │ ├── java │ │ └── org │ │ │ └── huangpu │ │ │ └── mydog │ │ │ └── plugins │ │ │ └── ormapping │ │ │ ├── MyBatisGenerator.java │ │ │ ├── MyBatisGeneratorConfig.java │ │ │ ├── MyBatisOutputItem.java │ │ │ ├── MyBatisPreserver.java │ │ │ ├── MybatisValidatePlugin.java │ │ │ ├── ORMappingGeneratorDecorator.java │ │ │ ├── ORMappingPlugin.java │ │ │ └── metadata │ │ │ └── OrmappingPluginProperties.java │ │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── org.huangpu.mydog.core.MyDogPlugin │ │ └── templates │ │ ├── ormapping_dependency_def.json │ │ └── ormapping_output_def.json └── toList.md ├── mydog-plugin-project ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── huangpu │ │ └── mydog │ │ └── plugins │ │ └── project │ │ ├── ProjectPlugin.java │ │ └── metadata │ │ └── ProjectPluginProperties.java │ └── resources │ ├── META-INF │ └── services │ │ └── org.huangpu.mydog.core.MyDogPlugin │ └── templates │ ├── _app.java.ftl │ ├── _app.properties.ftl │ ├── _logback.xml.ftl │ ├── _pom.xml.ftl │ ├── _welcomeController.java.ftl │ ├── project_dependency_def.json │ └── project_output_def.json ├── mydog-shell ├── demo.json ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── huangpu │ │ └── mydog │ │ └── shell │ │ └── ShellTools.java │ └── resources │ └── logback.xml ├── mydog-web ├── Readme.md ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── huangpu │ │ │ └── mydog │ │ │ └── web │ │ │ ├── AjaxResult.java │ │ │ ├── App.java │ │ │ ├── config │ │ │ ├── Constant.java │ │ │ ├── CorsConfig.java │ │ │ └── MyDogApplicationConfig.java │ │ │ ├── core │ │ │ └── plugin │ │ │ │ ├── container │ │ │ │ └── AbstractMyPluginComponent.java │ │ │ │ └── loader │ │ │ │ ├── MyDogPluginContainer.java │ │ │ │ ├── MyDogPluginParamsLoader.java │ │ │ │ ├── MyDogPluginParamsLoaderTemplate.java │ │ │ │ └── MyDogPluginPropertiesToView.java │ │ │ ├── ctrl │ │ │ ├── AdminController.java │ │ │ ├── PluginController.java │ │ │ ├── QuickStartController.java │ │ │ └── TestController.java │ │ │ ├── entity │ │ │ └── User.java │ │ │ ├── exception │ │ │ ├── MyDogOperationNotSupportedException.java │ │ │ ├── MyDogParamsNullPointException.java │ │ │ └── MyDogParamsParserException.java │ │ │ ├── service │ │ │ ├── AdminService.java │ │ │ ├── MyDogPluginService.java │ │ │ └── impl │ │ │ │ └── MyDogPluginServiceImpl.java │ │ │ ├── status │ │ │ ├── DataBaseTypeEnum.java │ │ │ ├── EntityIsPageEnum.java │ │ │ ├── FieldGenerateType.java │ │ │ ├── FieldIsIDType.java │ │ │ ├── FieldNullType.java │ │ │ ├── LogTypeEnum.java │ │ │ ├── MetaDataTypeEnum.java │ │ │ └── ViewPropEnum.java │ │ │ ├── util │ │ │ ├── LoggingUtils.java │ │ │ └── PathUtils.java │ │ │ └── vo │ │ │ ├── AbstractMyDogParams.java │ │ │ ├── MyDogDataSourceParams.java │ │ │ ├── MyDogEntityParams.java │ │ │ ├── MyDogEntityUIParams.java │ │ │ ├── MyDogOrmappingParams.java │ │ │ ├── MyDogPluginsParams.java │ │ │ ├── MyDogProjectParams.java │ │ │ └── ValidateParams.java │ └── resources │ │ ├── all_in_one.json │ │ ├── application.properties │ │ ├── logback.xml │ │ └── static │ │ ├── applications.html │ │ ├── assets │ │ ├── css │ │ │ ├── animate.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── patterns │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── congruent_pentagon.png │ │ │ │ ├── header-profile-skin-1.png │ │ │ │ ├── header-profile-skin-2.png │ │ │ │ ├── header-profile-skin-3.png │ │ │ │ ├── header-profile.png │ │ │ │ ├── otis_redding.png │ │ │ │ ├── shattered.png │ │ │ │ └── triangular.png │ │ │ ├── plugins │ │ │ │ ├── awesome-bootstrap-checkbox │ │ │ │ │ └── awesome-bootstrap-checkbox.css │ │ │ │ ├── blueimp │ │ │ │ │ ├── css │ │ │ │ │ │ ├── blueimp-gallery-indicator.css │ │ │ │ │ │ ├── blueimp-gallery-video.css │ │ │ │ │ │ ├── blueimp-gallery.css │ │ │ │ │ │ ├── blueimp-gallery.min.css │ │ │ │ │ │ └── demo.css │ │ │ │ │ └── img │ │ │ │ │ │ ├── error.png │ │ │ │ │ │ ├── error.svg │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ ├── play-pause.png │ │ │ │ │ │ ├── play-pause.svg │ │ │ │ │ │ ├── video-play.png │ │ │ │ │ │ └── video-play.svg │ │ │ │ ├── bootstrap-markdown │ │ │ │ │ └── bootstrap-markdown.min.css │ │ │ │ ├── bootstrap-rtl │ │ │ │ │ ├── bootstrap-rtl.css │ │ │ │ │ ├── bootstrap-rtl.css.map │ │ │ │ │ └── bootstrap-rtl.min.css │ │ │ │ ├── bootstrap-tagsinput │ │ │ │ │ └── bootstrap-tagsinput.css │ │ │ │ ├── bootstrapSocial │ │ │ │ │ └── bootstrap-social.css │ │ │ │ ├── bootstrapTour │ │ │ │ │ └── bootstrap-tour.min.css │ │ │ │ ├── c3 │ │ │ │ │ └── c3.min.css │ │ │ │ ├── chartist │ │ │ │ │ └── chartist.min.css │ │ │ │ ├── chosen │ │ │ │ │ ├── bootstrap-chosen.css │ │ │ │ │ ├── chosen-sprite.png │ │ │ │ │ ├── chosen-sprite@2x.png │ │ │ │ │ └── chosen.css │ │ │ │ ├── clockpicker │ │ │ │ │ └── clockpicker.css │ │ │ │ ├── codemirror │ │ │ │ │ ├── ambiance.css │ │ │ │ │ └── codemirror.css │ │ │ │ ├── colorpicker │ │ │ │ │ └── bootstrap-colorpicker.min.css │ │ │ │ ├── cropper │ │ │ │ │ └── cropper.min.css │ │ │ │ ├── dataTables │ │ │ │ │ └── datatables.min.css │ │ │ │ ├── datapicker │ │ │ │ │ └── datepicker3.css │ │ │ │ ├── daterangepicker │ │ │ │ │ └── daterangepicker-bs3.css │ │ │ │ ├── dropzone │ │ │ │ │ ├── basic.css │ │ │ │ │ └── dropzone.css │ │ │ │ ├── dualListbox │ │ │ │ │ └── bootstrap-duallistbox.min.css │ │ │ │ ├── footable │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── footable.eot │ │ │ │ │ │ ├── footable.svg │ │ │ │ │ │ ├── footable.ttf │ │ │ │ │ │ └── footable.woff │ │ │ │ │ └── footable.core.css │ │ │ │ ├── fullcalendar │ │ │ │ │ ├── fullcalendar.css │ │ │ │ │ └── fullcalendar.print.css │ │ │ │ ├── iCheck │ │ │ │ │ ├── custom.css │ │ │ │ │ ├── green.png │ │ │ │ │ └── green@2x.png │ │ │ │ ├── images │ │ │ │ │ ├── bootstrap-colorpicker │ │ │ │ │ │ ├── alpha-horizontal.png │ │ │ │ │ │ ├── alpha.png │ │ │ │ │ │ ├── hue-horizontal.png │ │ │ │ │ │ ├── hue.png │ │ │ │ │ │ └── saturation.png │ │ │ │ │ ├── sort.png │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ ├── sprite-skin-flat.png │ │ │ │ │ ├── sprite-skin-flat2.png │ │ │ │ │ ├── sprite-skin-nice.png │ │ │ │ │ ├── sprite-skin-simple.png │ │ │ │ │ ├── spritemap.png │ │ │ │ │ └── spritemap@2x.png │ │ │ │ ├── ionRangeSlider │ │ │ │ │ ├── ion.rangeSlider.css │ │ │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ │ │ ├── ion.rangeSlider.skinNice.css │ │ │ │ │ └── ion.rangeSlider.skinSimple.css │ │ │ │ ├── jQueryUI │ │ │ │ │ ├── images │ │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── jquery-ui-1.10.4.custom.min.css │ │ │ │ │ └── jquery-ui.css │ │ │ │ ├── jasny │ │ │ │ │ └── jasny-bootstrap.min.css │ │ │ │ ├── jqGrid │ │ │ │ │ └── ui.jqgrid.css │ │ │ │ ├── jsTree │ │ │ │ │ ├── 32px.png │ │ │ │ │ ├── 39px.png │ │ │ │ │ ├── 40px.png │ │ │ │ │ ├── style.css │ │ │ │ │ ├── style.min.css │ │ │ │ │ └── throbber.gif │ │ │ │ ├── ladda │ │ │ │ │ ├── ladda-themeless.min.css │ │ │ │ │ └── ladda.min.css │ │ │ │ ├── morris │ │ │ │ │ └── morris-0.4.3.min.css │ │ │ │ ├── nouslider │ │ │ │ │ └── jquery.nouislider.css │ │ │ │ ├── select2 │ │ │ │ │ └── select2.min.css │ │ │ │ ├── slick │ │ │ │ │ ├── ajax-loader.gif │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── slick.eot │ │ │ │ │ │ ├── slick.svg │ │ │ │ │ │ ├── slick.ttf │ │ │ │ │ │ └── slick.woff │ │ │ │ │ ├── slick-theme.css │ │ │ │ │ └── slick.css │ │ │ │ ├── social-buttons │ │ │ │ │ └── social-buttons.css │ │ │ │ ├── steps │ │ │ │ │ └── jquery.steps.css │ │ │ │ ├── summernote │ │ │ │ │ ├── font │ │ │ │ │ │ ├── summernote.eot │ │ │ │ │ │ ├── summernote.ttf │ │ │ │ │ │ └── summernote.woff │ │ │ │ │ ├── summernote-bs3.css │ │ │ │ │ └── summernote.css │ │ │ │ ├── sweetalert │ │ │ │ │ └── sweetalert.css │ │ │ │ ├── switchery │ │ │ │ │ └── switchery.css │ │ │ │ ├── textSpinners │ │ │ │ │ └── spinners.css │ │ │ │ ├── toastr │ │ │ │ │ └── toastr.min.css │ │ │ │ └── touchspin │ │ │ │ │ └── jquery.bootstrap-touchspin.min.css │ │ │ ├── style.css │ │ │ └── style.css.map │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── less │ │ │ │ ├── animated.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── screen-reader.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ └── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── img │ │ │ ├── a1.jpg │ │ │ ├── a2.jpg │ │ │ ├── a3.jpg │ │ │ ├── a4.jpg │ │ │ ├── a5.jpg │ │ │ ├── a6.jpg │ │ │ ├── a7.jpg │ │ │ ├── a8.jpg │ │ │ ├── add.png │ │ │ ├── angular_logo.png │ │ │ ├── dashboard4_1.jpg │ │ │ ├── dashboard4_2.jpg │ │ │ ├── database.png │ │ │ ├── email_1.jpg │ │ │ ├── email_2.jpg │ │ │ ├── email_3.jpg │ │ │ ├── entity.jpg │ │ │ ├── flags │ │ │ │ ├── 16 │ │ │ │ │ ├── Abkhazia.png │ │ │ │ │ ├── Afghanistan.png │ │ │ │ │ ├── Aland.png │ │ │ │ │ ├── Albania.png │ │ │ │ │ ├── Algeria.png │ │ │ │ │ ├── American-Samoa.png │ │ │ │ │ ├── Andorra.png │ │ │ │ │ ├── Angola.png │ │ │ │ │ ├── Anguilla.png │ │ │ │ │ ├── Antarctica.png │ │ │ │ │ ├── Antigua-and-Barbuda.png │ │ │ │ │ ├── Argentina.png │ │ │ │ │ ├── Armenia.png │ │ │ │ │ ├── Aruba.png │ │ │ │ │ ├── Australia.png │ │ │ │ │ ├── Austria.png │ │ │ │ │ ├── Azerbaijan.png │ │ │ │ │ ├── Bahamas.png │ │ │ │ │ ├── Bahrain.png │ │ │ │ │ ├── Bangladesh.png │ │ │ │ │ ├── Barbados.png │ │ │ │ │ ├── Basque-Country.png │ │ │ │ │ ├── Belarus.png │ │ │ │ │ ├── Belgium.png │ │ │ │ │ ├── Belize.png │ │ │ │ │ ├── Benin.png │ │ │ │ │ ├── Bermuda.png │ │ │ │ │ ├── Bhutan.png │ │ │ │ │ ├── Bolivia.png │ │ │ │ │ ├── Bosnia-and-Herzegovina.png │ │ │ │ │ ├── Botswana.png │ │ │ │ │ ├── Brazil.png │ │ │ │ │ ├── British-Antarctic-Territory.png │ │ │ │ │ ├── British-Virgin-Islands.png │ │ │ │ │ ├── Brunei.png │ │ │ │ │ ├── Bulgaria.png │ │ │ │ │ ├── Burkina-Faso.png │ │ │ │ │ ├── Burundi.png │ │ │ │ │ ├── Cambodia.png │ │ │ │ │ ├── Cameroon.png │ │ │ │ │ ├── Canada.png │ │ │ │ │ ├── Canary-Islands.png │ │ │ │ │ ├── Cape-Verde.png │ │ │ │ │ ├── Cayman-Islands.png │ │ │ │ │ ├── Central-African-Republic.png │ │ │ │ │ ├── Chad.png │ │ │ │ │ ├── Chile.png │ │ │ │ │ ├── China.png │ │ │ │ │ ├── Christmas-Island.png │ │ │ │ │ ├── Cocos-Keeling-Islands.png │ │ │ │ │ ├── Colombia.png │ │ │ │ │ ├── Commonwealth.png │ │ │ │ │ ├── Comoros.png │ │ │ │ │ ├── Cook-Islands.png │ │ │ │ │ ├── Costa-Rica.png │ │ │ │ │ ├── Cote-dIvoire.png │ │ │ │ │ ├── Croatia.png │ │ │ │ │ ├── Cuba.png │ │ │ │ │ ├── Curacao.png │ │ │ │ │ ├── Cyprus.png │ │ │ │ │ ├── Czech-Republic.png │ │ │ │ │ ├── Democratic-Republic-of-the-Congo.png │ │ │ │ │ ├── Denmark.png │ │ │ │ │ ├── Djibouti.png │ │ │ │ │ ├── Dominica.png │ │ │ │ │ ├── Dominican-Republic.png │ │ │ │ │ ├── East-Timor.png │ │ │ │ │ ├── Ecuador.png │ │ │ │ │ ├── Egypt.png │ │ │ │ │ ├── El-Salvador.png │ │ │ │ │ ├── England.png │ │ │ │ │ ├── Equatorial-Guinea.png │ │ │ │ │ ├── Eritrea.png │ │ │ │ │ ├── Estonia.png │ │ │ │ │ ├── Ethiopia.png │ │ │ │ │ ├── European-Union.png │ │ │ │ │ ├── Falkland-Islands.png │ │ │ │ │ ├── Faroes.png │ │ │ │ │ ├── Fiji.png │ │ │ │ │ ├── Finland.png │ │ │ │ │ ├── France.png │ │ │ │ │ ├── French-Polynesia.png │ │ │ │ │ ├── French-Southern-Territories.png │ │ │ │ │ ├── Gabon.png │ │ │ │ │ ├── Gambia.png │ │ │ │ │ ├── Georgia.png │ │ │ │ │ ├── Germany.png │ │ │ │ │ ├── Ghana.png │ │ │ │ │ ├── Gibraltar.png │ │ │ │ │ ├── GoSquared.png │ │ │ │ │ ├── Greece.png │ │ │ │ │ ├── Greenland.png │ │ │ │ │ ├── Grenada.png │ │ │ │ │ ├── Guam.png │ │ │ │ │ ├── Guatemala.png │ │ │ │ │ ├── Guernsey.png │ │ │ │ │ ├── Guinea-Bissau.png │ │ │ │ │ ├── Guinea.png │ │ │ │ │ ├── Guyana.png │ │ │ │ │ ├── Haiti.png │ │ │ │ │ ├── Honduras.png │ │ │ │ │ ├── Hong-Kong.png │ │ │ │ │ ├── Hungary.png │ │ │ │ │ ├── Iceland.png │ │ │ │ │ ├── India.png │ │ │ │ │ ├── Indonesia.png │ │ │ │ │ ├── Iran.png │ │ │ │ │ ├── Iraq.png │ │ │ │ │ ├── Ireland.png │ │ │ │ │ ├── Isle-of-Man.png │ │ │ │ │ ├── Israel.png │ │ │ │ │ ├── Italy.png │ │ │ │ │ ├── Jamaica.png │ │ │ │ │ ├── Japan.png │ │ │ │ │ ├── Jersey.png │ │ │ │ │ ├── Jordan.png │ │ │ │ │ ├── Kazakhstan.png │ │ │ │ │ ├── Kenya.png │ │ │ │ │ ├── Kiribati.png │ │ │ │ │ ├── Kosovo.png │ │ │ │ │ ├── Kuwait.png │ │ │ │ │ ├── Kyrgyzstan.png │ │ │ │ │ ├── Laos.png │ │ │ │ │ ├── Latvia.png │ │ │ │ │ ├── Lebanon.png │ │ │ │ │ ├── Lesotho.png │ │ │ │ │ ├── Liberia.png │ │ │ │ │ ├── Libya.png │ │ │ │ │ ├── Liechtenstein.png │ │ │ │ │ ├── Lithuania.png │ │ │ │ │ ├── Luxembourg.png │ │ │ │ │ ├── Macau.png │ │ │ │ │ ├── Macedonia.png │ │ │ │ │ ├── Madagascar.png │ │ │ │ │ ├── Malawi.png │ │ │ │ │ ├── Malaysia.png │ │ │ │ │ ├── Maldives.png │ │ │ │ │ ├── Mali.png │ │ │ │ │ ├── Malta.png │ │ │ │ │ ├── Mars.png │ │ │ │ │ ├── Marshall-Islands.png │ │ │ │ │ ├── Martinique.png │ │ │ │ │ ├── Mauritania.png │ │ │ │ │ ├── Mauritius.png │ │ │ │ │ ├── Mayotte.png │ │ │ │ │ ├── Mexico.png │ │ │ │ │ ├── Micronesia.png │ │ │ │ │ ├── Moldova.png │ │ │ │ │ ├── Monaco.png │ │ │ │ │ ├── Mongolia.png │ │ │ │ │ ├── Montenegro.png │ │ │ │ │ ├── Montserrat.png │ │ │ │ │ ├── Morocco.png │ │ │ │ │ ├── Mozambique.png │ │ │ │ │ ├── Myanmar.png │ │ │ │ │ ├── NATO.png │ │ │ │ │ ├── Nagorno-Karabakh.png │ │ │ │ │ ├── Namibia.png │ │ │ │ │ ├── Nauru.png │ │ │ │ │ ├── Nepal.png │ │ │ │ │ ├── Netherlands-Antilles.png │ │ │ │ │ ├── Netherlands.png │ │ │ │ │ ├── New-Caledonia.png │ │ │ │ │ ├── New-Zealand.png │ │ │ │ │ ├── Nicaragua.png │ │ │ │ │ ├── Niger.png │ │ │ │ │ ├── Nigeria.png │ │ │ │ │ ├── Niue.png │ │ │ │ │ ├── Norfolk-Island.png │ │ │ │ │ ├── North-Korea.png │ │ │ │ │ ├── Northern-Cyprus.png │ │ │ │ │ ├── Northern-Mariana-Islands.png │ │ │ │ │ ├── Norway.png │ │ │ │ │ ├── Olympics.png │ │ │ │ │ ├── Oman.png │ │ │ │ │ ├── Pakistan.png │ │ │ │ │ ├── Palau.png │ │ │ │ │ ├── Palestine.png │ │ │ │ │ ├── Panama.png │ │ │ │ │ ├── Papua-New-Guinea.png │ │ │ │ │ ├── Paraguay.png │ │ │ │ │ ├── Peru.png │ │ │ │ │ ├── Philippines.png │ │ │ │ │ ├── Pitcairn-Islands.png │ │ │ │ │ ├── Poland.png │ │ │ │ │ ├── Portugal.png │ │ │ │ │ ├── Puerto-Rico.png │ │ │ │ │ ├── Qatar.png │ │ │ │ │ ├── Red-Cross.png │ │ │ │ │ ├── Republic-of-the-Congo.png │ │ │ │ │ ├── Romania.png │ │ │ │ │ ├── Russia.png │ │ │ │ │ ├── Rwanda.png │ │ │ │ │ ├── Saint-Barthelemy.png │ │ │ │ │ ├── Saint-Helena.png │ │ │ │ │ ├── Saint-Kitts-and-Nevis.png │ │ │ │ │ ├── Saint-Lucia.png │ │ │ │ │ ├── Saint-Martin.png │ │ │ │ │ ├── Saint-Vincent-and-the-Grenadines.png │ │ │ │ │ ├── Samoa.png │ │ │ │ │ ├── San-Marino.png │ │ │ │ │ ├── Sao-Tome-and-Principe.png │ │ │ │ │ ├── Saudi-Arabia.png │ │ │ │ │ ├── Scotland.png │ │ │ │ │ ├── Senegal.png │ │ │ │ │ ├── Serbia.png │ │ │ │ │ ├── Seychelles.png │ │ │ │ │ ├── Sierra-Leone.png │ │ │ │ │ ├── Singapore.png │ │ │ │ │ ├── Slovakia.png │ │ │ │ │ ├── Slovenia.png │ │ │ │ │ ├── Solomon-Islands.png │ │ │ │ │ ├── Somalia.png │ │ │ │ │ ├── Somaliland.png │ │ │ │ │ ├── South-Africa.png │ │ │ │ │ ├── South-Georgia-and-the-South-Sandwich-Islands.png │ │ │ │ │ ├── South-Korea.png │ │ │ │ │ ├── South-Ossetia.png │ │ │ │ │ ├── South-Sudan.png │ │ │ │ │ ├── Spain.png │ │ │ │ │ ├── Sri-Lanka.png │ │ │ │ │ ├── Sudan.png │ │ │ │ │ ├── Suriname.png │ │ │ │ │ ├── Swaziland.png │ │ │ │ │ ├── Sweden.png │ │ │ │ │ ├── Switzerland.png │ │ │ │ │ ├── Syria.png │ │ │ │ │ ├── Taiwan.png │ │ │ │ │ ├── Tajikistan.png │ │ │ │ │ ├── Tanzania.png │ │ │ │ │ ├── Thailand.png │ │ │ │ │ ├── Togo.png │ │ │ │ │ ├── Tokelau.png │ │ │ │ │ ├── Tonga.png │ │ │ │ │ ├── Trinidad-and-Tobago.png │ │ │ │ │ ├── Tunisia.png │ │ │ │ │ ├── Turkey.png │ │ │ │ │ ├── Turkmenistan.png │ │ │ │ │ ├── Turks-and-Caicos-Islands.png │ │ │ │ │ ├── Tuvalu.png │ │ │ │ │ ├── US-Virgin-Islands.png │ │ │ │ │ ├── Uganda.png │ │ │ │ │ ├── Ukraine.png │ │ │ │ │ ├── United-Arab-Emirates.png │ │ │ │ │ ├── United-Kingdom.png │ │ │ │ │ ├── United-Nations.png │ │ │ │ │ ├── United-States.png │ │ │ │ │ ├── Unknown.png │ │ │ │ │ ├── Uruguay.png │ │ │ │ │ ├── Uzbekistan.png │ │ │ │ │ ├── Vanuatu.png │ │ │ │ │ ├── Vatican-City.png │ │ │ │ │ ├── Venezuela.png │ │ │ │ │ ├── Vietnam.png │ │ │ │ │ ├── Wales.png │ │ │ │ │ ├── Wallis-And-Futuna.png │ │ │ │ │ ├── Western-Sahara.png │ │ │ │ │ ├── Yemen.png │ │ │ │ │ ├── Zambia.png │ │ │ │ │ └── Zimbabwe.png │ │ │ │ ├── 32 │ │ │ │ │ ├── Abkhazia.png │ │ │ │ │ ├── Afghanistan.png │ │ │ │ │ ├── Aland.png │ │ │ │ │ ├── Albania.png │ │ │ │ │ ├── Algeria.png │ │ │ │ │ ├── American-Samoa.png │ │ │ │ │ ├── Andorra.png │ │ │ │ │ ├── Angola.png │ │ │ │ │ ├── Anguilla.png │ │ │ │ │ ├── Antarctica.png │ │ │ │ │ ├── Antigua-and-Barbuda.png │ │ │ │ │ ├── Argentina.png │ │ │ │ │ ├── Armenia.png │ │ │ │ │ ├── Aruba.png │ │ │ │ │ ├── Australia.png │ │ │ │ │ ├── Austria.png │ │ │ │ │ ├── Azerbaijan.png │ │ │ │ │ ├── Bahamas.png │ │ │ │ │ ├── Bahrain.png │ │ │ │ │ ├── Bangladesh.png │ │ │ │ │ ├── Barbados.png │ │ │ │ │ ├── Basque-Country.png │ │ │ │ │ ├── Belarus.png │ │ │ │ │ ├── Belgium.png │ │ │ │ │ ├── Belize.png │ │ │ │ │ ├── Benin.png │ │ │ │ │ ├── Bermuda.png │ │ │ │ │ ├── Bhutan.png │ │ │ │ │ ├── Bolivia.png │ │ │ │ │ ├── Bosnia-and-Herzegovina.png │ │ │ │ │ ├── Botswana.png │ │ │ │ │ ├── Brazil.png │ │ │ │ │ ├── British-Antarctic-Territory.png │ │ │ │ │ ├── British-Virgin-Islands.png │ │ │ │ │ ├── Brunei.png │ │ │ │ │ ├── Bulgaria.png │ │ │ │ │ ├── Burkina-Faso.png │ │ │ │ │ ├── Burundi.png │ │ │ │ │ ├── Cambodia.png │ │ │ │ │ ├── Cameroon.png │ │ │ │ │ ├── Canada.png │ │ │ │ │ ├── Canary-Islands.png │ │ │ │ │ ├── Cape-Verde.png │ │ │ │ │ ├── Cayman-Islands.png │ │ │ │ │ ├── Central-African-Republic.png │ │ │ │ │ ├── Chad.png │ │ │ │ │ ├── Chile.png │ │ │ │ │ ├── China.png │ │ │ │ │ ├── Christmas-Island.png │ │ │ │ │ ├── Cocos-Keeling-Islands.png │ │ │ │ │ ├── Colombia.png │ │ │ │ │ ├── Commonwealth.png │ │ │ │ │ ├── Comoros.png │ │ │ │ │ ├── Cook-Islands.png │ │ │ │ │ ├── Costa-Rica.png │ │ │ │ │ ├── Cote-dIvoire.png │ │ │ │ │ ├── Croatia.png │ │ │ │ │ ├── Cuba.png │ │ │ │ │ ├── Curacao.png │ │ │ │ │ ├── Cyprus.png │ │ │ │ │ ├── Czech-Republic.png │ │ │ │ │ ├── Democratic-Republic-of-the-Congo.png │ │ │ │ │ ├── Denmark.png │ │ │ │ │ ├── Djibouti.png │ │ │ │ │ ├── Dominica.png │ │ │ │ │ ├── Dominican-Republic.png │ │ │ │ │ ├── East-Timor.png │ │ │ │ │ ├── Ecuador.png │ │ │ │ │ ├── Egypt.png │ │ │ │ │ ├── El-Salvador.png │ │ │ │ │ ├── England.png │ │ │ │ │ ├── Equatorial-Guinea.png │ │ │ │ │ ├── Eritrea.png │ │ │ │ │ ├── Estonia.png │ │ │ │ │ ├── Ethiopia.png │ │ │ │ │ ├── European-Union.png │ │ │ │ │ ├── Falkland-Islands.png │ │ │ │ │ ├── Faroes.png │ │ │ │ │ ├── Fiji.png │ │ │ │ │ ├── Finland.png │ │ │ │ │ ├── France.png │ │ │ │ │ ├── French-Polynesia.png │ │ │ │ │ ├── French-Southern-Territories.png │ │ │ │ │ ├── Gabon.png │ │ │ │ │ ├── Gambia.png │ │ │ │ │ ├── Georgia.png │ │ │ │ │ ├── Germany.png │ │ │ │ │ ├── Ghana.png │ │ │ │ │ ├── Gibraltar.png │ │ │ │ │ ├── GoSquared.png │ │ │ │ │ ├── Greece.png │ │ │ │ │ ├── Greenland.png │ │ │ │ │ ├── Grenada.png │ │ │ │ │ ├── Guam.png │ │ │ │ │ ├── Guatemala.png │ │ │ │ │ ├── Guernsey.png │ │ │ │ │ ├── Guinea-Bissau.png │ │ │ │ │ ├── Guinea.png │ │ │ │ │ ├── Guyana.png │ │ │ │ │ ├── Haiti.png │ │ │ │ │ ├── Honduras.png │ │ │ │ │ ├── Hong-Kong.png │ │ │ │ │ ├── Hungary.png │ │ │ │ │ ├── Iceland.png │ │ │ │ │ ├── India.png │ │ │ │ │ ├── Indonesia.png │ │ │ │ │ ├── Iran.png │ │ │ │ │ ├── Iraq.png │ │ │ │ │ ├── Ireland.png │ │ │ │ │ ├── Isle-of-Man.png │ │ │ │ │ ├── Israel.png │ │ │ │ │ ├── Italy.png │ │ │ │ │ ├── Jamaica.png │ │ │ │ │ ├── Japan.png │ │ │ │ │ ├── Jersey.png │ │ │ │ │ ├── Jordan.png │ │ │ │ │ ├── Kazakhstan.png │ │ │ │ │ ├── Kenya.png │ │ │ │ │ ├── Kiribati.png │ │ │ │ │ ├── Kosovo.png │ │ │ │ │ ├── Kuwait.png │ │ │ │ │ ├── Kyrgyzstan.png │ │ │ │ │ ├── Laos.png │ │ │ │ │ ├── Latvia.png │ │ │ │ │ ├── Lebanon.png │ │ │ │ │ ├── Lesotho.png │ │ │ │ │ ├── Liberia.png │ │ │ │ │ ├── Libya.png │ │ │ │ │ ├── Liechtenstein.png │ │ │ │ │ ├── Lithuania.png │ │ │ │ │ ├── Luxembourg.png │ │ │ │ │ ├── Macau.png │ │ │ │ │ ├── Macedonia.png │ │ │ │ │ ├── Madagascar.png │ │ │ │ │ ├── Malawi.png │ │ │ │ │ ├── Malaysia.png │ │ │ │ │ ├── Maldives.png │ │ │ │ │ ├── Mali.png │ │ │ │ │ ├── Malta.png │ │ │ │ │ ├── Mars.png │ │ │ │ │ ├── Marshall-Islands.png │ │ │ │ │ ├── Martinique.png │ │ │ │ │ ├── Mauritania.png │ │ │ │ │ ├── Mauritius.png │ │ │ │ │ ├── Mayotte.png │ │ │ │ │ ├── Mexico.png │ │ │ │ │ ├── Micronesia.png │ │ │ │ │ ├── Moldova.png │ │ │ │ │ ├── Monaco.png │ │ │ │ │ ├── Mongolia.png │ │ │ │ │ ├── Montenegro.png │ │ │ │ │ ├── Montserrat.png │ │ │ │ │ ├── Morocco.png │ │ │ │ │ ├── Mozambique.png │ │ │ │ │ ├── Myanmar.png │ │ │ │ │ ├── NATO.png │ │ │ │ │ ├── Nagorno-Karabakh.png │ │ │ │ │ ├── Namibia.png │ │ │ │ │ ├── Nauru.png │ │ │ │ │ ├── Nepal.png │ │ │ │ │ ├── Netherlands-Antilles.png │ │ │ │ │ ├── Netherlands.png │ │ │ │ │ ├── New-Caledonia.png │ │ │ │ │ ├── New-Zealand.png │ │ │ │ │ ├── Nicaragua.png │ │ │ │ │ ├── Niger.png │ │ │ │ │ ├── Nigeria.png │ │ │ │ │ ├── Niue.png │ │ │ │ │ ├── Norfolk-Island.png │ │ │ │ │ ├── North-Korea.png │ │ │ │ │ ├── Northern-Cyprus.png │ │ │ │ │ ├── Northern-Mariana-Islands.png │ │ │ │ │ ├── Norway.png │ │ │ │ │ ├── Olympics.png │ │ │ │ │ ├── Oman.png │ │ │ │ │ ├── Pakistan.png │ │ │ │ │ ├── Palau.png │ │ │ │ │ ├── Palestine.png │ │ │ │ │ ├── Panama.png │ │ │ │ │ ├── Papua-New-Guinea.png │ │ │ │ │ ├── Paraguay.png │ │ │ │ │ ├── Peru.png │ │ │ │ │ ├── Philippines.png │ │ │ │ │ ├── Pitcairn-Islands.png │ │ │ │ │ ├── Poland.png │ │ │ │ │ ├── Portugal.png │ │ │ │ │ ├── Puerto-Rico.png │ │ │ │ │ ├── Qatar.png │ │ │ │ │ ├── Red-Cross.png │ │ │ │ │ ├── Republic-of-the-Congo.png │ │ │ │ │ ├── Romania.png │ │ │ │ │ ├── Russia.png │ │ │ │ │ ├── Rwanda.png │ │ │ │ │ ├── Saint-Barthelemy.png │ │ │ │ │ ├── Saint-Helena.png │ │ │ │ │ ├── Saint-Kitts-and-Nevis.png │ │ │ │ │ ├── Saint-Lucia.png │ │ │ │ │ ├── Saint-Martin.png │ │ │ │ │ ├── Saint-Vincent-and-the-Grenadines.png │ │ │ │ │ ├── Samoa.png │ │ │ │ │ ├── San-Marino.png │ │ │ │ │ ├── Sao-Tome-and-Principe.png │ │ │ │ │ ├── Saudi-Arabia.png │ │ │ │ │ ├── Scotland.png │ │ │ │ │ ├── Senegal.png │ │ │ │ │ ├── Serbia.png │ │ │ │ │ ├── Seychelles.png │ │ │ │ │ ├── Sierra-Leone.png │ │ │ │ │ ├── Singapore.png │ │ │ │ │ ├── Slovakia.png │ │ │ │ │ ├── Slovenia.png │ │ │ │ │ ├── Solomon-Islands.png │ │ │ │ │ ├── Somalia.png │ │ │ │ │ ├── Somaliland.png │ │ │ │ │ ├── South-Africa.png │ │ │ │ │ ├── South-Georgia-and-the-South-Sandwich-Islands.png │ │ │ │ │ ├── South-Korea.png │ │ │ │ │ ├── South-Ossetia.png │ │ │ │ │ ├── South-Sudan.png │ │ │ │ │ ├── Spain.png │ │ │ │ │ ├── Sri-Lanka.png │ │ │ │ │ ├── Sudan.png │ │ │ │ │ ├── Suriname.png │ │ │ │ │ ├── Swaziland.png │ │ │ │ │ ├── Sweden.png │ │ │ │ │ ├── Switzerland.png │ │ │ │ │ ├── Syria.png │ │ │ │ │ ├── Taiwan.png │ │ │ │ │ ├── Tajikistan.png │ │ │ │ │ ├── Tanzania.png │ │ │ │ │ ├── Thailand.png │ │ │ │ │ ├── Togo.png │ │ │ │ │ ├── Tokelau.png │ │ │ │ │ ├── Tonga.png │ │ │ │ │ ├── Trinidad-and-Tobago.png │ │ │ │ │ ├── Tunisia.png │ │ │ │ │ ├── Turkey.png │ │ │ │ │ ├── Turkmenistan.png │ │ │ │ │ ├── Turks-and-Caicos-Islands.png │ │ │ │ │ ├── Tuvalu.png │ │ │ │ │ ├── US-Virgin-Islands.png │ │ │ │ │ ├── Uganda.png │ │ │ │ │ ├── Ukraine.png │ │ │ │ │ ├── United-Arab-Emirates.png │ │ │ │ │ ├── United-Kingdom.png │ │ │ │ │ ├── United-Nations.png │ │ │ │ │ ├── United-States.png │ │ │ │ │ ├── Unknown.png │ │ │ │ │ ├── Uruguay.png │ │ │ │ │ ├── Uzbekistan.png │ │ │ │ │ ├── Vanuatu.png │ │ │ │ │ ├── Vatican-City.png │ │ │ │ │ ├── Venezuela.png │ │ │ │ │ ├── Vietnam.png │ │ │ │ │ ├── Wales.png │ │ │ │ │ ├── Wallis-And-Futuna.png │ │ │ │ │ ├── Western-Sahara.png │ │ │ │ │ ├── Yemen.png │ │ │ │ │ ├── Zambia.png │ │ │ │ │ └── Zimbabwe.png │ │ │ │ └── 64 │ │ │ │ │ ├── Abkhazia.png │ │ │ │ │ ├── Afghanistan.png │ │ │ │ │ ├── Aland.png │ │ │ │ │ ├── Albania.png │ │ │ │ │ ├── Algeria.png │ │ │ │ │ ├── American-Samoa.png │ │ │ │ │ ├── Andorra.png │ │ │ │ │ ├── Angola.png │ │ │ │ │ ├── Anguilla.png │ │ │ │ │ ├── Antarctica.png │ │ │ │ │ ├── Antigua-and-Barbuda.png │ │ │ │ │ ├── Argentina.png │ │ │ │ │ ├── Armenia.png │ │ │ │ │ ├── Aruba.png │ │ │ │ │ ├── Australia.png │ │ │ │ │ ├── Austria.png │ │ │ │ │ ├── Azerbaijan.png │ │ │ │ │ ├── Bahamas.png │ │ │ │ │ ├── Bahrain.png │ │ │ │ │ ├── Bangladesh.png │ │ │ │ │ ├── Barbados.png │ │ │ │ │ ├── Basque-Country.png │ │ │ │ │ ├── Belarus.png │ │ │ │ │ ├── Belgium.png │ │ │ │ │ ├── Belize.png │ │ │ │ │ ├── Benin.png │ │ │ │ │ ├── Bermuda.png │ │ │ │ │ ├── Bhutan.png │ │ │ │ │ ├── Bolivia.png │ │ │ │ │ ├── Bosnia-and-Herzegovina.png │ │ │ │ │ ├── Botswana.png │ │ │ │ │ ├── Brazil.png │ │ │ │ │ ├── British-Antarctic-Territory.png │ │ │ │ │ ├── British-Virgin-Islands.png │ │ │ │ │ ├── Brunei.png │ │ │ │ │ ├── Bulgaria.png │ │ │ │ │ ├── Burkina-Faso.png │ │ │ │ │ ├── Burundi.png │ │ │ │ │ ├── Cambodia.png │ │ │ │ │ ├── Cameroon.png │ │ │ │ │ ├── Canada.png │ │ │ │ │ ├── Canary-Islands.png │ │ │ │ │ ├── Cape-Verde.png │ │ │ │ │ ├── Cayman-Islands.png │ │ │ │ │ ├── Central-African-Republic.png │ │ │ │ │ ├── Chad.png │ │ │ │ │ ├── Chile.png │ │ │ │ │ ├── China.png │ │ │ │ │ ├── Christmas-Island.png │ │ │ │ │ ├── Cocos-Keeling-Islands.png │ │ │ │ │ ├── Colombia.png │ │ │ │ │ ├── Commonwealth.png │ │ │ │ │ ├── Comoros.png │ │ │ │ │ ├── Cook-Islands.png │ │ │ │ │ ├── Costa-Rica.png │ │ │ │ │ ├── Cote-dIvoire.png │ │ │ │ │ ├── Croatia.png │ │ │ │ │ ├── Cuba.png │ │ │ │ │ ├── Curacao.png │ │ │ │ │ ├── Cyprus.png │ │ │ │ │ ├── Czech-Republic.png │ │ │ │ │ ├── Democratic-Republic-of-the-Congo.png │ │ │ │ │ ├── Denmark.png │ │ │ │ │ ├── Djibouti.png │ │ │ │ │ ├── Dominica.png │ │ │ │ │ ├── Dominican-Republic.png │ │ │ │ │ ├── East-Timor.png │ │ │ │ │ ├── Ecuador.png │ │ │ │ │ ├── Egypt.png │ │ │ │ │ ├── El-Salvador.png │ │ │ │ │ ├── England.png │ │ │ │ │ ├── Equatorial-Guinea.png │ │ │ │ │ ├── Eritrea.png │ │ │ │ │ ├── Estonia.png │ │ │ │ │ ├── Ethiopia.png │ │ │ │ │ ├── European-Union.png │ │ │ │ │ ├── Falkland-Islands.png │ │ │ │ │ ├── Faroes.png │ │ │ │ │ ├── Fiji.png │ │ │ │ │ ├── Finland.png │ │ │ │ │ ├── France.png │ │ │ │ │ ├── French-Polynesia.png │ │ │ │ │ ├── French-Southern-Territories.png │ │ │ │ │ ├── Gabon.png │ │ │ │ │ ├── Gambia.png │ │ │ │ │ ├── Georgia.png │ │ │ │ │ ├── Germany.png │ │ │ │ │ ├── Ghana.png │ │ │ │ │ ├── Gibraltar.png │ │ │ │ │ ├── GoSquared.png │ │ │ │ │ ├── Greece.png │ │ │ │ │ ├── Greenland.png │ │ │ │ │ ├── Grenada.png │ │ │ │ │ ├── Guam.png │ │ │ │ │ ├── Guatemala.png │ │ │ │ │ ├── Guernsey.png │ │ │ │ │ ├── Guinea-Bissau.png │ │ │ │ │ ├── Guinea.png │ │ │ │ │ ├── Guyana.png │ │ │ │ │ ├── Haiti.png │ │ │ │ │ ├── Honduras.png │ │ │ │ │ ├── Hong-Kong.png │ │ │ │ │ ├── Hungary.png │ │ │ │ │ ├── Iceland.png │ │ │ │ │ ├── India.png │ │ │ │ │ ├── Indonesia.png │ │ │ │ │ ├── Iran.png │ │ │ │ │ ├── Iraq.png │ │ │ │ │ ├── Ireland.png │ │ │ │ │ ├── Isle-of-Man.png │ │ │ │ │ ├── Israel.png │ │ │ │ │ ├── Italy.png │ │ │ │ │ ├── Jamaica.png │ │ │ │ │ ├── Japan.png │ │ │ │ │ ├── Jersey.png │ │ │ │ │ ├── Jordan.png │ │ │ │ │ ├── Kazakhstan.png │ │ │ │ │ ├── Kenya.png │ │ │ │ │ ├── Kiribati.png │ │ │ │ │ ├── Kosovo.png │ │ │ │ │ ├── Kuwait.png │ │ │ │ │ ├── Kyrgyzstan.png │ │ │ │ │ ├── Laos.png │ │ │ │ │ ├── Latvia.png │ │ │ │ │ ├── Lebanon.png │ │ │ │ │ ├── Lesotho.png │ │ │ │ │ ├── Liberia.png │ │ │ │ │ ├── Libya.png │ │ │ │ │ ├── Liechtenstein.png │ │ │ │ │ ├── Lithuania.png │ │ │ │ │ ├── Luxembourg.png │ │ │ │ │ ├── Macau.png │ │ │ │ │ ├── Macedonia.png │ │ │ │ │ ├── Madagascar.png │ │ │ │ │ ├── Malawi.png │ │ │ │ │ ├── Malaysia.png │ │ │ │ │ ├── Maldives.png │ │ │ │ │ ├── Mali.png │ │ │ │ │ ├── Malta.png │ │ │ │ │ ├── Mars.png │ │ │ │ │ ├── Marshall-Islands.png │ │ │ │ │ ├── Martinique.png │ │ │ │ │ ├── Mauritania.png │ │ │ │ │ ├── Mauritius.png │ │ │ │ │ ├── Mayotte.png │ │ │ │ │ ├── Mexico.png │ │ │ │ │ ├── Micronesia.png │ │ │ │ │ ├── Moldova.png │ │ │ │ │ ├── Monaco.png │ │ │ │ │ ├── Mongolia.png │ │ │ │ │ ├── Montenegro.png │ │ │ │ │ ├── Montserrat.png │ │ │ │ │ ├── Morocco.png │ │ │ │ │ ├── Mozambique.png │ │ │ │ │ ├── Myanmar.png │ │ │ │ │ ├── NATO.png │ │ │ │ │ ├── Nagorno-Karabakh.png │ │ │ │ │ ├── Namibia.png │ │ │ │ │ ├── Nauru.png │ │ │ │ │ ├── Nepal.png │ │ │ │ │ ├── Netherlands-Antilles.png │ │ │ │ │ ├── Netherlands.png │ │ │ │ │ ├── New-Caledonia.png │ │ │ │ │ ├── New-Zealand.png │ │ │ │ │ ├── Nicaragua.png │ │ │ │ │ ├── Niger.png │ │ │ │ │ ├── Nigeria.png │ │ │ │ │ ├── Niue.png │ │ │ │ │ ├── Norfolk-Island.png │ │ │ │ │ ├── North-Korea.png │ │ │ │ │ ├── Northern-Cyprus.png │ │ │ │ │ ├── Northern-Mariana-Islands.png │ │ │ │ │ ├── Norway.png │ │ │ │ │ ├── Olympics.png │ │ │ │ │ ├── Oman.png │ │ │ │ │ ├── Pakistan.png │ │ │ │ │ ├── Palau.png │ │ │ │ │ ├── Palestine.png │ │ │ │ │ ├── Panama.png │ │ │ │ │ ├── Papua-New-Guinea.png │ │ │ │ │ ├── Paraguay.png │ │ │ │ │ ├── Peru.png │ │ │ │ │ ├── Philippines.png │ │ │ │ │ ├── Pitcairn-Islands.png │ │ │ │ │ ├── Poland.png │ │ │ │ │ ├── Portugal.png │ │ │ │ │ ├── Puerto-Rico.png │ │ │ │ │ ├── Qatar.png │ │ │ │ │ ├── Red-Cross.png │ │ │ │ │ ├── Republic-of-the-Congo.png │ │ │ │ │ ├── Romania.png │ │ │ │ │ ├── Russia.png │ │ │ │ │ ├── Rwanda.png │ │ │ │ │ ├── Saint-Barthelemy.png │ │ │ │ │ ├── Saint-Helena.png │ │ │ │ │ ├── Saint-Kitts-and-Nevis.png │ │ │ │ │ ├── Saint-Lucia.png │ │ │ │ │ ├── Saint-Martin.png │ │ │ │ │ ├── Saint-Vincent-and-the-Grenadines.png │ │ │ │ │ ├── Samoa.png │ │ │ │ │ ├── San-Marino.png │ │ │ │ │ ├── Sao-Tome-and-Principe.png │ │ │ │ │ ├── Saudi-Arabia.png │ │ │ │ │ ├── Scotland.png │ │ │ │ │ ├── Senegal.png │ │ │ │ │ ├── Serbia.png │ │ │ │ │ ├── Seychelles.png │ │ │ │ │ ├── Sierra-Leone.png │ │ │ │ │ ├── Singapore.png │ │ │ │ │ ├── Slovakia.png │ │ │ │ │ ├── Slovenia.png │ │ │ │ │ ├── Solomon-Islands.png │ │ │ │ │ ├── Somalia.png │ │ │ │ │ ├── Somaliland.png │ │ │ │ │ ├── South-Africa.png │ │ │ │ │ ├── South-Georgia-and-the-South-Sandwich-Islands.png │ │ │ │ │ ├── South-Korea.png │ │ │ │ │ ├── South-Ossetia.png │ │ │ │ │ ├── South-Sudan.png │ │ │ │ │ ├── Spain.png │ │ │ │ │ ├── Sri-Lanka.png │ │ │ │ │ ├── Sudan.png │ │ │ │ │ ├── Suriname.png │ │ │ │ │ ├── Swaziland.png │ │ │ │ │ ├── Sweden.png │ │ │ │ │ ├── Switzerland.png │ │ │ │ │ ├── Syria.png │ │ │ │ │ ├── Taiwan.png │ │ │ │ │ ├── Tajikistan.png │ │ │ │ │ ├── Tanzania.png │ │ │ │ │ ├── Thailand.png │ │ │ │ │ ├── Togo.png │ │ │ │ │ ├── Tokelau.png │ │ │ │ │ ├── Tonga.png │ │ │ │ │ ├── Trinidad-and-Tobago.png │ │ │ │ │ ├── Tunisia.png │ │ │ │ │ ├── Turkey.png │ │ │ │ │ ├── Turkmenistan.png │ │ │ │ │ ├── Turks-and-Caicos-Islands.png │ │ │ │ │ ├── Tuvalu.png │ │ │ │ │ ├── US-Virgin-Islands.png │ │ │ │ │ ├── Uganda.png │ │ │ │ │ ├── Ukraine.png │ │ │ │ │ ├── United-Arab-Emirates.png │ │ │ │ │ ├── United-Kingdom.png │ │ │ │ │ ├── United-Nations.png │ │ │ │ │ ├── United-States.png │ │ │ │ │ ├── Unknown.png │ │ │ │ │ ├── Uruguay.png │ │ │ │ │ ├── Uzbekistan.png │ │ │ │ │ ├── Vanuatu.png │ │ │ │ │ ├── Vatican-City.png │ │ │ │ │ ├── Venezuela.png │ │ │ │ │ ├── Vietnam.png │ │ │ │ │ ├── Wales.png │ │ │ │ │ ├── Wallis-And-Futuna.png │ │ │ │ │ ├── Western-Sahara.png │ │ │ │ │ ├── Yemen.png │ │ │ │ │ ├── Zambia.png │ │ │ │ │ └── Zimbabwe.png │ │ │ ├── full_height.jpg │ │ │ ├── gallery │ │ │ │ ├── 1.jpg │ │ │ │ ├── 10.jpg │ │ │ │ ├── 10s.jpg │ │ │ │ ├── 11.jpg │ │ │ │ ├── 11s.jpg │ │ │ │ ├── 12.jpg │ │ │ │ ├── 12s.jpg │ │ │ │ ├── 1s.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 2s.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 3s.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 4s.jpg │ │ │ │ ├── 5.jpg │ │ │ │ ├── 5s.jpg │ │ │ │ ├── 6.jpg │ │ │ │ ├── 6s.jpg │ │ │ │ ├── 7.jpg │ │ │ │ ├── 7s.jpg │ │ │ │ ├── 8.jpg │ │ │ │ ├── 8s.jpg │ │ │ │ ├── 9.jpg │ │ │ │ └── 9s.jpg │ │ │ ├── headphones.jpg │ │ │ ├── html_logo.png │ │ │ ├── landing │ │ │ │ ├── avatar1.jpg │ │ │ │ ├── avatar2.jpg │ │ │ │ ├── avatar3.jpg │ │ │ │ ├── avatar4.jpg │ │ │ │ ├── avatar5.jpg │ │ │ │ ├── avatar6.jpg │ │ │ │ ├── avatar7.jpg │ │ │ │ ├── avatar8.jpg │ │ │ │ ├── avatar9.jpg │ │ │ │ ├── avatar_all.png │ │ │ │ ├── dashboard.png │ │ │ │ ├── header_one.jpg │ │ │ │ ├── header_two.jpg │ │ │ │ ├── iphone.jpg │ │ │ │ ├── laptop.png │ │ │ │ ├── perspective.png │ │ │ │ ├── shattered.png │ │ │ │ └── word_map.png │ │ │ ├── meteor_logo.png │ │ │ ├── mvc_logo.png │ │ │ ├── mydog.png │ │ │ ├── off_canvas.jpg │ │ │ ├── ormming.png │ │ │ ├── p1.jpg │ │ │ ├── p2.jpg │ │ │ ├── p3.jpg │ │ │ ├── p4.jpg │ │ │ ├── p5.jpg │ │ │ ├── p6.jpg │ │ │ ├── p7.jpg │ │ │ ├── p8.jpg │ │ │ ├── p_big1.jpg │ │ │ ├── p_big2.jpg │ │ │ ├── p_big3.jpg │ │ │ ├── profile.jpg │ │ │ ├── profile_big.jpg │ │ │ ├── profile_small.jpg │ │ │ ├── profile_smallbak.jpg │ │ │ ├── project.jpg │ │ │ ├── rails_logo.png │ │ │ ├── remove.png │ │ │ ├── shenli.jpg │ │ │ ├── starter_logo.jpg │ │ │ ├── web.jpg │ │ │ └── zender_logo.png │ │ ├── js │ │ │ ├── api │ │ │ │ └── typehead_collection.json │ │ │ ├── demo │ │ │ │ ├── chartjs-demo.js │ │ │ │ ├── dashboard-demo.js │ │ │ │ ├── flot-demo.js │ │ │ │ ├── flot-demo2.js │ │ │ │ ├── morris-demo.js │ │ │ │ ├── peity-demo.js │ │ │ │ ├── rickshaw-demo.js │ │ │ │ └── sparkline-demo.js │ │ │ ├── http.js │ │ │ ├── lib │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── jquery-2.1.1.js │ │ │ │ └── jquery-3.1.1.min.js │ │ │ ├── main.js │ │ │ ├── menu.html │ │ │ └── plugins │ │ │ │ ├── blueimp │ │ │ │ └── jquery.blueimp-gallery.min.js │ │ │ │ ├── bootstrap-markdown │ │ │ │ ├── bootstrap-markdown.js │ │ │ │ └── markdown.js │ │ │ │ ├── bootstrap-tagsinput │ │ │ │ └── bootstrap-tagsinput.js │ │ │ │ ├── bootstrapTour │ │ │ │ └── bootstrap-tour.min.js │ │ │ │ ├── c3 │ │ │ │ └── c3.min.js │ │ │ │ ├── chartJs │ │ │ │ └── Chart.min.js │ │ │ │ ├── chartist │ │ │ │ ├── chartist.min.js │ │ │ │ └── chartist.min.js.map │ │ │ │ ├── chosen │ │ │ │ └── chosen.jquery.js │ │ │ │ ├── clipboard │ │ │ │ └── clipboard.min.js │ │ │ │ ├── clockpicker │ │ │ │ └── clockpicker.js │ │ │ │ ├── codemirror │ │ │ │ ├── codemirror.js │ │ │ │ └── mode │ │ │ │ │ ├── apl │ │ │ │ │ ├── apl.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── asterisk │ │ │ │ │ ├── asterisk.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── clike │ │ │ │ │ ├── clike.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── scala.html │ │ │ │ │ ├── clojure │ │ │ │ │ ├── clojure.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── cobol │ │ │ │ │ ├── cobol.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── coffeescript │ │ │ │ │ ├── coffeescript.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── commonlisp │ │ │ │ │ ├── commonlisp.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── css │ │ │ │ │ ├── css.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── less.html │ │ │ │ │ ├── less_test.js │ │ │ │ │ ├── scss.html │ │ │ │ │ ├── scss_test.js │ │ │ │ │ └── test.js │ │ │ │ │ ├── cypher │ │ │ │ │ ├── cypher.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── d │ │ │ │ │ ├── d.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── diff │ │ │ │ │ ├── diff.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── django │ │ │ │ │ ├── django.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── dtd │ │ │ │ │ ├── dtd.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── dylan │ │ │ │ │ ├── dylan.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── ecl │ │ │ │ │ ├── ecl.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── eiffel │ │ │ │ │ ├── eiffel.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── erlang │ │ │ │ │ ├── erlang.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── fortran │ │ │ │ │ ├── fortran.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── gas │ │ │ │ │ ├── gas.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── gfm │ │ │ │ │ ├── gfm.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── test.js │ │ │ │ │ ├── gherkin │ │ │ │ │ ├── gherkin.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── go │ │ │ │ │ ├── go.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── groovy │ │ │ │ │ ├── groovy.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── haml │ │ │ │ │ ├── haml.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── test.js │ │ │ │ │ ├── haskell │ │ │ │ │ ├── haskell.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── haxe │ │ │ │ │ ├── haxe.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── htmlembedded │ │ │ │ │ ├── htmlembedded.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── htmlmixed │ │ │ │ │ ├── htmlmixed.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── http │ │ │ │ │ ├── http.js │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jade │ │ │ │ │ ├── index.html │ │ │ │ │ └── jade.js │ │ │ │ │ ├── javascript │ │ │ │ │ ├── index.html │ │ │ │ │ ├── javascript.js │ │ │ │ │ ├── json-ld.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── typescript.html │ │ │ │ │ ├── jinja2 │ │ │ │ │ ├── index.html │ │ │ │ │ └── jinja2.js │ │ │ │ │ ├── julia │ │ │ │ │ ├── index.html │ │ │ │ │ └── julia.js │ │ │ │ │ ├── kotlin │ │ │ │ │ ├── index.html │ │ │ │ │ └── kotlin.js │ │ │ │ │ ├── livescript │ │ │ │ │ ├── index.html │ │ │ │ │ └── livescript.js │ │ │ │ │ ├── lua │ │ │ │ │ ├── index.html │ │ │ │ │ └── lua.js │ │ │ │ │ ├── markdown │ │ │ │ │ ├── index.html │ │ │ │ │ ├── markdown.js │ │ │ │ │ └── test.js │ │ │ │ │ ├── meta.js │ │ │ │ │ ├── mirc │ │ │ │ │ ├── index.html │ │ │ │ │ └── mirc.js │ │ │ │ │ ├── mllike │ │ │ │ │ ├── index.html │ │ │ │ │ └── mllike.js │ │ │ │ │ ├── modelica │ │ │ │ │ ├── index.html │ │ │ │ │ └── modelica.js │ │ │ │ │ ├── nginx │ │ │ │ │ ├── index.html │ │ │ │ │ └── nginx.js │ │ │ │ │ ├── ntriples │ │ │ │ │ ├── index.html │ │ │ │ │ └── ntriples.js │ │ │ │ │ ├── octave │ │ │ │ │ ├── index.html │ │ │ │ │ └── octave.js │ │ │ │ │ ├── pascal │ │ │ │ │ ├── index.html │ │ │ │ │ └── pascal.js │ │ │ │ │ ├── pegjs │ │ │ │ │ ├── index.html │ │ │ │ │ └── pegjs.js │ │ │ │ │ ├── perl │ │ │ │ │ ├── index.html │ │ │ │ │ └── perl.js │ │ │ │ │ ├── php │ │ │ │ │ ├── index.html │ │ │ │ │ ├── php.js │ │ │ │ │ └── test.js │ │ │ │ │ ├── pig │ │ │ │ │ ├── index.html │ │ │ │ │ └── pig.js │ │ │ │ │ ├── properties │ │ │ │ │ ├── index.html │ │ │ │ │ └── properties.js │ │ │ │ │ ├── puppet │ │ │ │ │ ├── index.html │ │ │ │ │ └── puppet.js │ │ │ │ │ ├── python │ │ │ │ │ ├── index.html │ │ │ │ │ └── python.js │ │ │ │ │ ├── q │ │ │ │ │ ├── index.html │ │ │ │ │ └── q.js │ │ │ │ │ ├── r │ │ │ │ │ ├── index.html │ │ │ │ │ └── r.js │ │ │ │ │ ├── rpm │ │ │ │ │ ├── changes │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── rpm.js │ │ │ │ │ ├── rst │ │ │ │ │ ├── index.html │ │ │ │ │ └── rst.js │ │ │ │ │ ├── ruby │ │ │ │ │ ├── index.html │ │ │ │ │ ├── ruby.js │ │ │ │ │ └── test.js │ │ │ │ │ ├── rust │ │ │ │ │ ├── index.html │ │ │ │ │ └── rust.js │ │ │ │ │ ├── sass │ │ │ │ │ ├── index.html │ │ │ │ │ └── sass.js │ │ │ │ │ ├── scheme │ │ │ │ │ ├── index.html │ │ │ │ │ └── scheme.js │ │ │ │ │ ├── shell │ │ │ │ │ ├── index.html │ │ │ │ │ ├── shell.js │ │ │ │ │ └── test.js │ │ │ │ │ ├── sieve │ │ │ │ │ ├── index.html │ │ │ │ │ └── sieve.js │ │ │ │ │ ├── slim │ │ │ │ │ ├── index.html │ │ │ │ │ ├── slim.js │ │ │ │ │ └── test.js │ │ │ │ │ ├── smalltalk │ │ │ │ │ ├── index.html │ │ │ │ │ └── smalltalk.js │ │ │ │ │ ├── smarty │ │ │ │ │ ├── index.html │ │ │ │ │ └── smarty.js │ │ │ │ │ ├── smartymixed │ │ │ │ │ ├── index.html │ │ │ │ │ └── smartymixed.js │ │ │ │ │ ├── solr │ │ │ │ │ ├── index.html │ │ │ │ │ └── solr.js │ │ │ │ │ ├── sparql │ │ │ │ │ ├── index.html │ │ │ │ │ └── sparql.js │ │ │ │ │ ├── sql │ │ │ │ │ ├── index.html │ │ │ │ │ └── sql.js │ │ │ │ │ ├── stex │ │ │ │ │ ├── index.html │ │ │ │ │ ├── stex.js │ │ │ │ │ └── test.js │ │ │ │ │ ├── tcl │ │ │ │ │ ├── index.html │ │ │ │ │ └── tcl.js │ │ │ │ │ ├── textile │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── textile.js │ │ │ │ │ ├── tiddlywiki │ │ │ │ │ ├── index.html │ │ │ │ │ ├── tiddlywiki.css │ │ │ │ │ └── tiddlywiki.js │ │ │ │ │ ├── tiki │ │ │ │ │ ├── index.html │ │ │ │ │ ├── tiki.css │ │ │ │ │ └── tiki.js │ │ │ │ │ ├── toml │ │ │ │ │ ├── index.html │ │ │ │ │ └── toml.js │ │ │ │ │ ├── tornado │ │ │ │ │ ├── index.html │ │ │ │ │ └── tornado.js │ │ │ │ │ ├── turtle │ │ │ │ │ ├── index.html │ │ │ │ │ └── turtle.js │ │ │ │ │ ├── vb │ │ │ │ │ ├── index.html │ │ │ │ │ └── vb.js │ │ │ │ │ ├── vbscript │ │ │ │ │ ├── index.html │ │ │ │ │ └── vbscript.js │ │ │ │ │ ├── velocity │ │ │ │ │ ├── index.html │ │ │ │ │ └── velocity.js │ │ │ │ │ ├── verilog │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── verilog.js │ │ │ │ │ ├── xml │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── xml.js │ │ │ │ │ ├── xquery │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── xquery.js │ │ │ │ │ ├── yaml │ │ │ │ │ ├── index.html │ │ │ │ │ └── yaml.js │ │ │ │ │ └── z80 │ │ │ │ │ ├── index.html │ │ │ │ │ └── z80.js │ │ │ │ ├── colorpicker │ │ │ │ └── bootstrap-colorpicker.min.js │ │ │ │ ├── cropper │ │ │ │ └── cropper.min.js │ │ │ │ ├── d3 │ │ │ │ ├── LICENSE │ │ │ │ └── d3.min.js │ │ │ │ ├── datamaps │ │ │ │ └── datamaps.all.min.js │ │ │ │ ├── datapicker │ │ │ │ └── bootstrap-datepicker.js │ │ │ │ ├── daterangepicker │ │ │ │ └── daterangepicker.js │ │ │ │ ├── diff_match_patch │ │ │ │ ├── COPYING │ │ │ │ ├── README.txt │ │ │ │ └── javascript │ │ │ │ │ └── diff_match_patch.js │ │ │ │ ├── dotdotdot │ │ │ │ └── jquery.dotdotdot.min.js │ │ │ │ ├── dropzone │ │ │ │ └── dropzone.js │ │ │ │ ├── dualListbox │ │ │ │ └── jquery.bootstrap-duallistbox.js │ │ │ │ ├── easypiechart │ │ │ │ ├── easypiechart.js │ │ │ │ └── jquery.easypiechart.js │ │ │ │ ├── flot │ │ │ │ ├── curvedLines.js │ │ │ │ ├── excanvas.min.js │ │ │ │ ├── jquery.flot.js │ │ │ │ ├── jquery.flot.pie.js │ │ │ │ ├── jquery.flot.resize.js │ │ │ │ ├── jquery.flot.spline.js │ │ │ │ ├── jquery.flot.symbol.js │ │ │ │ ├── jquery.flot.time.js │ │ │ │ └── jquery.flot.tooltip.min.js │ │ │ │ ├── footable │ │ │ │ └── footable.all.min.js │ │ │ │ ├── fullcalendar │ │ │ │ ├── fullcalendar.min.js │ │ │ │ └── moment.min.js │ │ │ │ ├── gritter │ │ │ │ ├── images │ │ │ │ │ ├── gritter-light.png │ │ │ │ │ ├── gritter-long.png │ │ │ │ │ ├── gritter.png │ │ │ │ │ └── ie-spacer.gif │ │ │ │ ├── jquery.gritter.css │ │ │ │ └── jquery.gritter.min.js │ │ │ │ ├── i18next │ │ │ │ └── i18next.min.js │ │ │ │ ├── iCheck │ │ │ │ └── icheck.min.js │ │ │ │ ├── idle-timer │ │ │ │ └── idle-timer.min.js │ │ │ │ ├── ionRangeSlider │ │ │ │ └── ion.rangeSlider.min.js │ │ │ │ ├── jasny │ │ │ │ └── jasny-bootstrap.min.js │ │ │ │ ├── jeditable │ │ │ │ └── jquery.jeditable.js │ │ │ │ ├── jqGrid │ │ │ │ ├── i18n │ │ │ │ │ ├── grid.locale-ar.js │ │ │ │ │ ├── grid.locale-bg.js │ │ │ │ │ ├── grid.locale-bg1251.js │ │ │ │ │ ├── grid.locale-cat.js │ │ │ │ │ ├── grid.locale-cn.js │ │ │ │ │ ├── grid.locale-cs.js │ │ │ │ │ ├── grid.locale-da.js │ │ │ │ │ ├── grid.locale-de.js │ │ │ │ │ ├── grid.locale-dk.js │ │ │ │ │ ├── grid.locale-el.js │ │ │ │ │ ├── grid.locale-en.js │ │ │ │ │ ├── grid.locale-es.js │ │ │ │ │ ├── grid.locale-fa.js │ │ │ │ │ ├── grid.locale-fi.js │ │ │ │ │ ├── grid.locale-fr.js │ │ │ │ │ ├── grid.locale-gl.js │ │ │ │ │ ├── grid.locale-he.js │ │ │ │ │ ├── grid.locale-hr.js │ │ │ │ │ ├── grid.locale-hr1250.js │ │ │ │ │ ├── grid.locale-hu.js │ │ │ │ │ ├── grid.locale-id.js │ │ │ │ │ ├── grid.locale-is.js │ │ │ │ │ ├── grid.locale-it.js │ │ │ │ │ ├── grid.locale-ja.js │ │ │ │ │ ├── grid.locale-kr.js │ │ │ │ │ ├── grid.locale-lt.js │ │ │ │ │ ├── grid.locale-mne.js │ │ │ │ │ ├── grid.locale-nl.js │ │ │ │ │ ├── grid.locale-no.js │ │ │ │ │ ├── grid.locale-pl.js │ │ │ │ │ ├── grid.locale-pt-br.js │ │ │ │ │ ├── grid.locale-pt.js │ │ │ │ │ ├── grid.locale-ro.js │ │ │ │ │ ├── grid.locale-ru.js │ │ │ │ │ ├── grid.locale-sk.js │ │ │ │ │ ├── grid.locale-sr-latin.js │ │ │ │ │ ├── grid.locale-sr.js │ │ │ │ │ ├── grid.locale-sv.js │ │ │ │ │ ├── grid.locale-th.js │ │ │ │ │ ├── grid.locale-tr.js │ │ │ │ │ ├── grid.locale-tw.js │ │ │ │ │ ├── grid.locale-ua.js │ │ │ │ │ └── grid.locale-vi.js │ │ │ │ └── jquery.jqGrid.min.js │ │ │ │ ├── jquery-ui │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── images │ │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery-ui.min.js │ │ │ │ ├── jsKnob │ │ │ │ └── jquery.knob.js │ │ │ │ ├── jsTree │ │ │ │ └── jstree.min.js │ │ │ │ ├── justified-gallery │ │ │ │ ├── README.md │ │ │ │ ├── jquery.justifiedgallery.css │ │ │ │ ├── jquery.justifiedgallery.js │ │ │ │ ├── jquery.justifiedgallery.min.css │ │ │ │ ├── jquery.justifiedgallery.min.js │ │ │ │ └── loading.gif │ │ │ │ ├── jvectormap │ │ │ │ ├── jquery-jvectormap-2.0.2.css │ │ │ │ ├── jquery-jvectormap-2.0.2.min.js │ │ │ │ └── jquery-jvectormap-world-mill-en.js │ │ │ │ ├── ladda │ │ │ │ ├── ladda.jquery.min.js │ │ │ │ ├── ladda.min.js │ │ │ │ └── spin.min.js │ │ │ │ ├── masonary │ │ │ │ └── masonry.pkgd.min.js │ │ │ │ ├── metisMenu │ │ │ │ └── jquery.metisMenu.js │ │ │ │ ├── morris │ │ │ │ ├── morris.js │ │ │ │ └── raphael-2.1.0.min.js │ │ │ │ ├── nestable │ │ │ │ └── jquery.nestable.js │ │ │ │ ├── nouslider │ │ │ │ └── jquery.nouislider.min.js │ │ │ │ ├── pace │ │ │ │ └── pace.min.js │ │ │ │ ├── pdfjs │ │ │ │ ├── pdf.js │ │ │ │ └── pdf.worker.js │ │ │ │ ├── peity │ │ │ │ └── jquery.peity.min.js │ │ │ │ ├── preetyTextDiff │ │ │ │ └── jquery.pretty-text-diff.min.js │ │ │ │ ├── pwstrength │ │ │ │ ├── pwstrength-bootstrap.min.js │ │ │ │ └── zxcvbn.js │ │ │ │ ├── rickshaw │ │ │ │ ├── rickshaw.min.js │ │ │ │ └── vendor │ │ │ │ │ └── d3.v3.js │ │ │ │ ├── select2 │ │ │ │ └── select2.full.min.js │ │ │ │ ├── slick │ │ │ │ └── slick.min.js │ │ │ │ ├── slimscroll │ │ │ │ ├── jquery.slimscroll.js │ │ │ │ └── jquery.slimscroll.min.js │ │ │ │ ├── sparkline │ │ │ │ └── jquery.sparkline.min.js │ │ │ │ ├── steps │ │ │ │ └── jquery.steps.min.js │ │ │ │ ├── summernote │ │ │ │ └── summernote.min.js │ │ │ │ ├── sweetalert │ │ │ │ └── sweetalert.min.js │ │ │ │ ├── switchery │ │ │ │ └── switchery.js │ │ │ │ ├── tinycon │ │ │ │ └── tinycon.min.js │ │ │ │ ├── toastr │ │ │ │ └── toastr.min.js │ │ │ │ ├── topojson │ │ │ │ ├── LICENSE │ │ │ │ └── topojson.js │ │ │ │ ├── touchpunch │ │ │ │ └── jquery.ui.touch-punch.min.js │ │ │ │ ├── touchspin │ │ │ │ └── jquery.bootstrap-touchspin.min.js │ │ │ │ ├── typehead │ │ │ │ └── bootstrap3-typeahead.min.js │ │ │ │ ├── validate │ │ │ │ └── jquery.validate.min.js │ │ │ │ ├── video │ │ │ │ └── responsible-video.js │ │ │ │ └── wow │ │ │ │ └── wow.min.js │ │ └── locales │ │ │ ├── en.json │ │ │ └── es.json │ │ ├── contacts.html │ │ ├── document.html │ │ ├── email_templates │ │ ├── action.html │ │ ├── alert.html │ │ ├── billing.html │ │ ├── img │ │ │ └── header.jpg │ │ └── styles.css │ │ ├── generate.html │ │ ├── index.html │ │ ├── login.html │ │ ├── plugins.html │ │ └── profile.html │ └── test │ ├── java │ └── org │ │ └── huangpu │ │ └── mydog │ │ └── test │ │ ├── TestAjax.java │ │ ├── TestClassLoader.java │ │ ├── TestFlowController.java │ │ ├── TestJson.java │ │ ├── TestLoader.java │ │ └── TestPlugin.java │ └── resources │ ├── all_in_one.json │ └── application.properties └── pom.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/.gitignore -------------------------------------------------------------------------------- /MyDog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/MyDog.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/Readme.md -------------------------------------------------------------------------------- /Readme_bak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/Readme_bak.md -------------------------------------------------------------------------------- /construction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/construction.md -------------------------------------------------------------------------------- /mydog-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/pom.xml -------------------------------------------------------------------------------- /mydog-core/src/main/java/org/huangpu/mydog/core/GenDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/main/java/org/huangpu/mydog/core/GenDef.java -------------------------------------------------------------------------------- /mydog-core/src/main/java/org/huangpu/mydog/core/Generator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/main/java/org/huangpu/mydog/core/Generator.java -------------------------------------------------------------------------------- /mydog-core/src/main/java/org/huangpu/mydog/core/Grammar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/main/java/org/huangpu/mydog/core/Grammar.java -------------------------------------------------------------------------------- /mydog-core/src/main/java/org/huangpu/mydog/core/Metadata.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/main/java/org/huangpu/mydog/core/Metadata.java -------------------------------------------------------------------------------- /mydog-core/src/main/java/org/huangpu/mydog/core/MetadataParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/main/java/org/huangpu/mydog/core/MetadataParser.java -------------------------------------------------------------------------------- /mydog-core/src/main/java/org/huangpu/mydog/core/MyDogPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/main/java/org/huangpu/mydog/core/MyDogPlugin.java -------------------------------------------------------------------------------- /mydog-core/src/main/java/org/huangpu/mydog/core/OutputDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/main/java/org/huangpu/mydog/core/OutputDef.java -------------------------------------------------------------------------------- /mydog-core/src/main/java/org/huangpu/mydog/core/OutputItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/main/java/org/huangpu/mydog/core/OutputItem.java -------------------------------------------------------------------------------- /mydog-core/src/main/java/org/huangpu/mydog/core/OutputItemDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/main/java/org/huangpu/mydog/core/OutputItemDef.java -------------------------------------------------------------------------------- /mydog-core/src/main/java/org/huangpu/mydog/core/PreDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/main/java/org/huangpu/mydog/core/PreDef.java -------------------------------------------------------------------------------- /mydog-core/src/main/java/org/huangpu/mydog/core/Preserver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/main/java/org/huangpu/mydog/core/Preserver.java -------------------------------------------------------------------------------- /mydog-core/src/main/java/org/huangpu/mydog/core/enums/GenType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/main/java/org/huangpu/mydog/core/enums/GenType.java -------------------------------------------------------------------------------- /mydog-core/src/main/java/org/huangpu/mydog/core/grammar/Annotat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/main/java/org/huangpu/mydog/core/grammar/Annotat.java -------------------------------------------------------------------------------- /mydog-core/src/main/java/org/huangpu/mydog/core/grammar/Field.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/main/java/org/huangpu/mydog/core/grammar/Field.java -------------------------------------------------------------------------------- /mydog-core/src/main/java/org/huangpu/mydog/core/grammar/Mergeable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/main/java/org/huangpu/mydog/core/grammar/Mergeable.java -------------------------------------------------------------------------------- /mydog-core/src/main/java/org/huangpu/mydog/core/grammar/Method.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/main/java/org/huangpu/mydog/core/grammar/Method.java -------------------------------------------------------------------------------- /mydog-core/src/main/java/org/huangpu/mydog/core/plugins/SPIUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/main/java/org/huangpu/mydog/core/plugins/SPIUtils.java -------------------------------------------------------------------------------- /mydog-core/src/main/java/org/huangpu/mydog/core/utils/CloneUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/main/java/org/huangpu/mydog/core/utils/CloneUtils.java -------------------------------------------------------------------------------- /mydog-core/src/main/java/org/huangpu/mydog/core/utils/DDLUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/main/java/org/huangpu/mydog/core/utils/DDLUtils.java -------------------------------------------------------------------------------- /mydog-core/src/main/java/org/huangpu/mydog/core/utils/FileMonitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/main/java/org/huangpu/mydog/core/utils/FileMonitor.java -------------------------------------------------------------------------------- /mydog-core/src/main/java/org/huangpu/mydog/core/utils/FileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/main/java/org/huangpu/mydog/core/utils/FileUtil.java -------------------------------------------------------------------------------- /mydog-core/src/main/java/org/huangpu/mydog/core/utils/JarUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/main/java/org/huangpu/mydog/core/utils/JarUtils.java -------------------------------------------------------------------------------- /mydog-core/src/main/java/org/huangpu/mydog/core/utils/SqlExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/main/java/org/huangpu/mydog/core/utils/SqlExecutor.java -------------------------------------------------------------------------------- /mydog-core/src/test/java/TestDDLUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/test/java/TestDDLUtils.java -------------------------------------------------------------------------------- /mydog-core/src/test/java/TestInstead.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/test/java/TestInstead.java -------------------------------------------------------------------------------- /mydog-core/src/test/resources/all_in_one.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-core/src/test/resources/all_in_one.json -------------------------------------------------------------------------------- /mydog-doc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-doc/pom.xml -------------------------------------------------------------------------------- /mydog-doc/src/main/resources/mydog-gen-flow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-doc/src/main/resources/mydog-gen-flow2.png -------------------------------------------------------------------------------- /mydog-doc/src/main/resources/mydog-shell_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-doc/src/main/resources/mydog-shell_1.png -------------------------------------------------------------------------------- /mydog-doc/src/main/resources/mydog-web/mydog-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-doc/src/main/resources/mydog-web/mydog-web.png -------------------------------------------------------------------------------- /mydog-doc/src/main/resources/mydog.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-doc/src/main/resources/mydog.ico -------------------------------------------------------------------------------- /mydog-doc/src/main/resources/mydog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-doc/src/main/resources/mydog.png -------------------------------------------------------------------------------- /mydog-doc/src/main/resources/mydog_gen_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-doc/src/main/resources/mydog_gen_flow.png -------------------------------------------------------------------------------- /mydog-plugin-datasource/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-plugin-datasource/pom.xml -------------------------------------------------------------------------------- /mydog-plugin-datasource/src/main/resources/templates/datasource_output_def.json: -------------------------------------------------------------------------------- 1 | { 2 | "pluginName":"datasource", 3 | "outItemsDef":{} 4 | } -------------------------------------------------------------------------------- /mydog-plugin-datasource/src/test/java/PluginTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-plugin-datasource/src/test/java/PluginTest.java -------------------------------------------------------------------------------- /mydog-plugin-entity/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-plugin-entity/pom.xml -------------------------------------------------------------------------------- /mydog-plugin-entity/src/main/resources/templates/_Controller.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-plugin-entity/src/main/resources/templates/_Controller.ftl -------------------------------------------------------------------------------- /mydog-plugin-entity/src/main/resources/templates/_Service.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-plugin-entity/src/main/resources/templates/_Service.ftl -------------------------------------------------------------------------------- /mydog-plugin-entity/src/main/resources/templates/_boot_config.java.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-plugin-entity/src/main/resources/templates/_boot_config.java.ftl -------------------------------------------------------------------------------- /mydog-plugin-entityui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-plugin-entityui/pom.xml -------------------------------------------------------------------------------- /mydog-plugin-entityui/src/main/resources/templates/_404.html.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mydog-plugin-entityui/src/main/resources/templates/_500.html.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mydog-plugin-entityui/src/main/resources/templates/_entity_detail.html.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mydog-plugin-entityui/src/main/resources/templates/_entity_detail.js.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mydog-plugin-entityui/src/main/resources/templates/_entity_list.js.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-plugin-entityui/src/main/resources/templates/_entity_list.js.ftl -------------------------------------------------------------------------------- /mydog-plugin-entityui/src/main/resources/templates/_index.html.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-plugin-entityui/src/main/resources/templates/_index.html.ftl -------------------------------------------------------------------------------- /mydog-plugin-entityui/src/main/resources/templates/_login.html.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mydog-plugin-entityui/src/main/resources/templates/_login.js.ftl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mydog-plugin-entityui/src/main/resources/templates/_main.js.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-plugin-entityui/src/main/resources/templates/_main.js.ftl -------------------------------------------------------------------------------- /mydog-plugin-entityui/src/main/resources/templates/_menu.html.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-plugin-entityui/src/main/resources/templates/_menu.html.ftl -------------------------------------------------------------------------------- /mydog-plugin-entityui/src/main/resources/templates/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-plugin-entityui/src/main/resources/templates/assets/js/main.js -------------------------------------------------------------------------------- /mydog-plugin-entityui/src/main/resources/templates/assets/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-plugin-entityui/src/main/resources/templates/assets/menu.html -------------------------------------------------------------------------------- /mydog-plugin-ormapping/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-plugin-ormapping/pom.xml -------------------------------------------------------------------------------- /mydog-plugin-ormapping/toList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-plugin-ormapping/toList.md -------------------------------------------------------------------------------- /mydog-plugin-project/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-plugin-project/pom.xml -------------------------------------------------------------------------------- /mydog-plugin-project/src/main/resources/templates/_app.java.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-plugin-project/src/main/resources/templates/_app.java.ftl -------------------------------------------------------------------------------- /mydog-plugin-project/src/main/resources/templates/_app.properties.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-plugin-project/src/main/resources/templates/_app.properties.ftl -------------------------------------------------------------------------------- /mydog-plugin-project/src/main/resources/templates/_logback.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-plugin-project/src/main/resources/templates/_logback.xml.ftl -------------------------------------------------------------------------------- /mydog-plugin-project/src/main/resources/templates/_pom.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-plugin-project/src/main/resources/templates/_pom.xml.ftl -------------------------------------------------------------------------------- /mydog-shell/demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-shell/demo.json -------------------------------------------------------------------------------- /mydog-shell/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-shell/pom.xml -------------------------------------------------------------------------------- /mydog-shell/src/main/java/org/huangpu/mydog/shell/ShellTools.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-shell/src/main/java/org/huangpu/mydog/shell/ShellTools.java -------------------------------------------------------------------------------- /mydog-shell/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-shell/src/main/resources/logback.xml -------------------------------------------------------------------------------- /mydog-web/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/Readme.md -------------------------------------------------------------------------------- /mydog-web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/pom.xml -------------------------------------------------------------------------------- /mydog-web/src/main/java/org/huangpu/mydog/web/AjaxResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/java/org/huangpu/mydog/web/AjaxResult.java -------------------------------------------------------------------------------- /mydog-web/src/main/java/org/huangpu/mydog/web/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/java/org/huangpu/mydog/web/App.java -------------------------------------------------------------------------------- /mydog-web/src/main/java/org/huangpu/mydog/web/config/Constant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/java/org/huangpu/mydog/web/config/Constant.java -------------------------------------------------------------------------------- /mydog-web/src/main/java/org/huangpu/mydog/web/config/CorsConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/java/org/huangpu/mydog/web/config/CorsConfig.java -------------------------------------------------------------------------------- /mydog-web/src/main/java/org/huangpu/mydog/web/ctrl/TestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/java/org/huangpu/mydog/web/ctrl/TestController.java -------------------------------------------------------------------------------- /mydog-web/src/main/java/org/huangpu/mydog/web/entity/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/java/org/huangpu/mydog/web/entity/User.java -------------------------------------------------------------------------------- /mydog-web/src/main/java/org/huangpu/mydog/web/status/LogTypeEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/java/org/huangpu/mydog/web/status/LogTypeEnum.java -------------------------------------------------------------------------------- /mydog-web/src/main/java/org/huangpu/mydog/web/status/ViewPropEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/java/org/huangpu/mydog/web/status/ViewPropEnum.java -------------------------------------------------------------------------------- /mydog-web/src/main/java/org/huangpu/mydog/web/util/LoggingUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/java/org/huangpu/mydog/web/util/LoggingUtils.java -------------------------------------------------------------------------------- /mydog-web/src/main/java/org/huangpu/mydog/web/util/PathUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/java/org/huangpu/mydog/web/util/PathUtils.java -------------------------------------------------------------------------------- /mydog-web/src/main/java/org/huangpu/mydog/web/vo/ValidateParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/java/org/huangpu/mydog/web/vo/ValidateParams.java -------------------------------------------------------------------------------- /mydog-web/src/main/resources/all_in_one.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/all_in_one.json -------------------------------------------------------------------------------- /mydog-web/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/application.properties -------------------------------------------------------------------------------- /mydog-web/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/logback.xml -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/applications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/applications.html -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/css/animate.css -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/css/bootstrap.css -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/css/bootstrap.css.map -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/css/patterns/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/css/patterns/1.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/css/patterns/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/css/patterns/2.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/css/patterns/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/css/patterns/3.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/css/patterns/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/css/patterns/4.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/css/patterns/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/css/patterns/5.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/css/patterns/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/css/patterns/6.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/css/patterns/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/css/patterns/7.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/css/patterns/shattered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/css/patterns/shattered.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/css/patterns/triangular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/css/patterns/triangular.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/css/plugins/c3/c3.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/css/plugins/c3/c3.min.css -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/css/plugins/images/sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/css/plugins/images/sort.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/css/plugins/jsTree/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/css/plugins/jsTree/32px.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/css/plugins/jsTree/39px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/css/plugins/jsTree/39px.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/css/plugins/jsTree/40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/css/plugins/jsTree/40px.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/css/plugins/slick/slick.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/css/plugins/slick/slick.css -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/css/style.css -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/css/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/css/style.css.map -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/font-awesome/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/font-awesome/less/core.less -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/font-awesome/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/font-awesome/less/list.less -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/font-awesome/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/font-awesome/less/path.less -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/a1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/a1.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/a2.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/a3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/a3.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/a4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/a4.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/a5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/a5.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/a6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/a6.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/a7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/a7.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/a8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/a8.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/add.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/angular_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/angular_logo.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/dashboard4_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/dashboard4_1.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/dashboard4_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/dashboard4_2.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/database.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/email_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/email_1.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/email_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/email_2.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/email_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/email_3.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/entity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/entity.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Abkhazia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Abkhazia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Aland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Aland.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Albania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Albania.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Algeria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Algeria.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Andorra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Andorra.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Angola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Angola.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Anguilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Anguilla.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Antarctica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Antarctica.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Argentina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Argentina.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Armenia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Armenia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Aruba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Aruba.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Australia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Australia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Austria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Austria.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Azerbaijan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Azerbaijan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Bahamas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Bahamas.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Bahrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Bahrain.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Bangladesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Bangladesh.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Barbados.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Barbados.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Belarus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Belarus.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Belgium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Belgium.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Belize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Belize.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Benin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Benin.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Bermuda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Bermuda.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Bhutan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Bhutan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Bolivia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Bolivia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Botswana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Botswana.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Brazil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Brazil.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Brunei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Brunei.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Bulgaria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Bulgaria.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Burundi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Burundi.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Cambodia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Cambodia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Cameroon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Cameroon.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Canada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Canada.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Cape-Verde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Cape-Verde.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Chad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Chad.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Chile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Chile.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/China.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/China.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Colombia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Colombia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Comoros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Comoros.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Costa-Rica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Costa-Rica.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Croatia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Croatia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Cuba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Cuba.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Curacao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Curacao.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Cyprus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Cyprus.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Denmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Denmark.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Djibouti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Djibouti.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Dominica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Dominica.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/East-Timor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/East-Timor.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Ecuador.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Ecuador.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Egypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Egypt.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/England.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/England.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Eritrea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Eritrea.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Estonia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Estonia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Ethiopia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Ethiopia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Faroes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Faroes.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Fiji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Fiji.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Finland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Finland.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/France.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/France.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Gabon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Gabon.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Gambia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Gambia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Georgia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Georgia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Germany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Germany.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Ghana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Ghana.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Gibraltar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Gibraltar.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/GoSquared.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/GoSquared.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Greece.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Greece.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Greenland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Greenland.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Grenada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Grenada.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Guam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Guam.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Guatemala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Guatemala.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Guernsey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Guernsey.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Guinea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Guinea.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Guyana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Guyana.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Haiti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Haiti.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Honduras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Honduras.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Hong-Kong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Hong-Kong.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Hungary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Hungary.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Iceland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Iceland.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/India.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/India.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Indonesia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Indonesia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Iran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Iran.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Iraq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Iraq.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Ireland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Ireland.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Israel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Israel.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Italy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Italy.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Jamaica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Jamaica.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Japan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Japan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Jersey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Jersey.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Jordan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Jordan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Kazakhstan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Kazakhstan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Kenya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Kenya.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Kiribati.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Kiribati.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Kosovo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Kosovo.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Kuwait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Kuwait.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Kyrgyzstan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Kyrgyzstan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Laos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Laos.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Latvia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Latvia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Lebanon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Lebanon.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Lesotho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Lesotho.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Liberia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Liberia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Libya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Libya.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Lithuania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Lithuania.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Luxembourg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Luxembourg.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Macau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Macau.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Macedonia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Macedonia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Madagascar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Madagascar.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Malawi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Malawi.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Malaysia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Malaysia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Maldives.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Maldives.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Mali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Mali.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Malta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Malta.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Mars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Mars.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Martinique.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Martinique.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Mauritania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Mauritania.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Mauritius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Mauritius.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Mayotte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Mayotte.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Mexico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Mexico.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Micronesia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Micronesia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Moldova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Moldova.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Monaco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Monaco.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Mongolia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Mongolia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Montenegro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Montenegro.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Montserrat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Montserrat.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Morocco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Morocco.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Mozambique.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Mozambique.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Myanmar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Myanmar.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/NATO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/NATO.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Namibia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Namibia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Nauru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Nauru.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Nepal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Nepal.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Nicaragua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Nicaragua.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Niger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Niger.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Nigeria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Nigeria.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Niue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Niue.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Norway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Norway.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Olympics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Olympics.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Oman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Oman.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Pakistan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Pakistan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Palau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Palau.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Palestine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Palestine.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Panama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Panama.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Paraguay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Paraguay.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Peru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Peru.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Poland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Poland.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Portugal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Portugal.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Qatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Qatar.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Red-Cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Red-Cross.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Romania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Romania.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Russia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Russia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Rwanda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Rwanda.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Samoa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Samoa.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/San-Marino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/San-Marino.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Scotland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Scotland.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Senegal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Senegal.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Serbia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Serbia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Seychelles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Seychelles.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Singapore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Singapore.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Slovakia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Slovakia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Slovenia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Slovenia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Somalia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Somalia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Somaliland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Somaliland.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Spain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Spain.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Sri-Lanka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Sri-Lanka.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Sudan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Sudan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Suriname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Suriname.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Swaziland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Swaziland.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Sweden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Sweden.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Syria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Syria.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Taiwan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Taiwan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Tajikistan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Tajikistan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Tanzania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Tanzania.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Thailand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Thailand.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Togo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Togo.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Tokelau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Tokelau.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Tonga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Tonga.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Tunisia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Tunisia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Turkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Turkey.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Tuvalu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Tuvalu.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Uganda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Uganda.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Ukraine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Ukraine.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Unknown.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Uruguay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Uruguay.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Uzbekistan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Uzbekistan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Vanuatu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Vanuatu.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Venezuela.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Venezuela.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Vietnam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Vietnam.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Wales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Wales.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Yemen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Yemen.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Zambia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Zambia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/16/Zimbabwe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/16/Zimbabwe.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Abkhazia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Abkhazia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Aland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Aland.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Albania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Albania.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Algeria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Algeria.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Andorra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Andorra.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Angola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Angola.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Anguilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Anguilla.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Antarctica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Antarctica.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Argentina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Argentina.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Armenia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Armenia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Aruba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Aruba.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Australia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Australia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Austria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Austria.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Azerbaijan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Azerbaijan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Bahamas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Bahamas.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Bahrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Bahrain.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Bangladesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Bangladesh.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Barbados.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Barbados.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Belarus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Belarus.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Belgium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Belgium.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Belize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Belize.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Benin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Benin.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Bermuda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Bermuda.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Bhutan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Bhutan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Bolivia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Bolivia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Botswana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Botswana.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Brazil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Brazil.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Brunei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Brunei.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Bulgaria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Bulgaria.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Burundi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Burundi.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Cambodia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Cambodia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Cameroon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Cameroon.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Canada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Canada.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Cape-Verde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Cape-Verde.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Chad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Chad.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Chile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Chile.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/China.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/China.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Colombia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Colombia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Comoros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Comoros.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Costa-Rica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Costa-Rica.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Croatia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Croatia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Cuba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Cuba.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Curacao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Curacao.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Cyprus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Cyprus.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Denmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Denmark.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Djibouti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Djibouti.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Dominica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Dominica.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/East-Timor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/East-Timor.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Ecuador.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Ecuador.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Egypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Egypt.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/England.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/England.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Eritrea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Eritrea.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Estonia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Estonia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Ethiopia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Ethiopia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Faroes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Faroes.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Fiji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Fiji.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Finland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Finland.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/France.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/France.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Gabon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Gabon.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Gambia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Gambia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Georgia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Georgia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Germany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Germany.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Ghana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Ghana.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Gibraltar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Gibraltar.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/GoSquared.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/GoSquared.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Greece.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Greece.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Greenland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Greenland.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Grenada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Grenada.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Guam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Guam.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Guatemala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Guatemala.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Guernsey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Guernsey.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Guinea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Guinea.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Guyana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Guyana.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Haiti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Haiti.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Honduras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Honduras.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Hong-Kong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Hong-Kong.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Hungary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Hungary.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Iceland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Iceland.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/India.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/India.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Indonesia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Indonesia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Iran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Iran.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Iraq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Iraq.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Ireland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Ireland.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Israel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Israel.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Italy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Italy.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Jamaica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Jamaica.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Japan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Japan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Jersey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Jersey.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Jordan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Jordan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Kazakhstan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Kazakhstan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Kenya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Kenya.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Kiribati.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Kiribati.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Kosovo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Kosovo.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Kuwait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Kuwait.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Kyrgyzstan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Kyrgyzstan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Laos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Laos.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Latvia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Latvia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Lebanon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Lebanon.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Lesotho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Lesotho.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Liberia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Liberia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Libya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Libya.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Lithuania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Lithuania.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Luxembourg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Luxembourg.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Macau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Macau.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Macedonia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Macedonia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Madagascar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Madagascar.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Malawi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Malawi.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Malaysia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Malaysia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Maldives.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Maldives.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Mali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Mali.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Malta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Malta.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Mars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Mars.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Martinique.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Martinique.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Mauritania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Mauritania.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Mayotte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Mayotte.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Mexico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Mexico.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Moldova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Moldova.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Monaco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Monaco.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Morocco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Morocco.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Myanmar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Myanmar.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/NATO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/NATO.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Namibia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Namibia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Nauru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Nauru.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Nepal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Nepal.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Niger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Niger.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Nigeria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Nigeria.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Niue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Niue.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Norway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Norway.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Oman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Oman.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Palau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Palau.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Panama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Panama.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Peru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Peru.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Poland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Poland.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Qatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Qatar.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Romania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Romania.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Russia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Russia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Rwanda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Rwanda.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Samoa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Samoa.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Senegal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Senegal.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Serbia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Serbia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Somalia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Somalia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Spain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Spain.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Sudan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Sudan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Sweden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Sweden.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Syria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Syria.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Taiwan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Taiwan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Togo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Togo.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Tokelau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Tokelau.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Tonga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Tonga.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Tunisia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Tunisia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Turkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Turkey.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Tuvalu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Tuvalu.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Uganda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Uganda.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Ukraine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Ukraine.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Unknown.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Uruguay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Uruguay.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Vanuatu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Vanuatu.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Vietnam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Vietnam.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Wales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Wales.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Yemen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Yemen.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/32/Zambia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/32/Zambia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Aland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Aland.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Albania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Albania.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Algeria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Algeria.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Andorra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Andorra.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Angola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Angola.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Armenia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Armenia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Aruba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Aruba.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Austria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Austria.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Bahamas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Bahamas.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Bahrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Bahrain.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Belarus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Belarus.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Belgium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Belgium.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Belize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Belize.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Benin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Benin.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Bermuda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Bermuda.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Bhutan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Bhutan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Bolivia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Bolivia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Brazil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Brazil.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Brunei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Brunei.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Burundi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Burundi.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Canada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Canada.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Chad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Chad.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Chile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Chile.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/China.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/China.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Comoros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Comoros.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Croatia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Croatia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Cuba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Cuba.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Curacao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Curacao.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Cyprus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Cyprus.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Denmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Denmark.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Ecuador.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Ecuador.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Egypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Egypt.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/England.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/England.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Eritrea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Eritrea.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Estonia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Estonia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Faroes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Faroes.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Fiji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Fiji.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Finland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Finland.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/France.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/France.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Gabon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Gabon.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Gambia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Gambia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Georgia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Georgia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Germany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Germany.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Ghana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Ghana.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Greece.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Greece.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Grenada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Grenada.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Guam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Guam.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Guinea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Guinea.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Guyana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Guyana.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Haiti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Haiti.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Hungary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Hungary.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Iceland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Iceland.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/India.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/India.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Iran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Iran.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Iraq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Iraq.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Ireland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Ireland.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Israel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Israel.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Italy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Italy.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Jamaica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Jamaica.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Japan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Japan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Jersey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Jersey.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Jordan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Jordan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Kenya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Kenya.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Kosovo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Kosovo.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Kuwait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Kuwait.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Laos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Laos.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Latvia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Latvia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Lebanon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Lebanon.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Lesotho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Lesotho.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Liberia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Liberia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Libya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Libya.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Macau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Macau.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Malawi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Malawi.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Mali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Mali.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Malta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Malta.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Mars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Mars.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Mayotte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Mayotte.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Mexico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Mexico.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Moldova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Moldova.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Monaco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Monaco.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Morocco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Morocco.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Myanmar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Myanmar.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/NATO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/NATO.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Namibia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Namibia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Nauru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Nauru.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Nepal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Nepal.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Niger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Niger.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Nigeria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Nigeria.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Niue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Niue.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Norway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Norway.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Oman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Oman.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Palau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Palau.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Panama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Panama.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Peru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Peru.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Poland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Poland.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Qatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Qatar.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Romania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Romania.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Russia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Russia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Rwanda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Rwanda.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Samoa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Samoa.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Senegal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Senegal.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Serbia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Serbia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Somalia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Somalia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Spain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Spain.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Sudan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Sudan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Sweden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Sweden.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Syria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Syria.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Taiwan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Taiwan.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Togo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Togo.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Tokelau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Tokelau.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Tonga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Tonga.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Tunisia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Tunisia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Turkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Turkey.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Tuvalu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Tuvalu.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Uganda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Uganda.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Ukraine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Ukraine.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Unknown.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Uruguay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Uruguay.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Vanuatu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Vanuatu.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Vietnam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Vietnam.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Wales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Wales.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Yemen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Yemen.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/flags/64/Zambia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/flags/64/Zambia.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/full_height.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/full_height.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/1.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/10.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/10s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/10s.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/11.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/11s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/11s.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/12.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/12s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/12s.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/1s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/1s.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/2.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/2s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/2s.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/3.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/3s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/3s.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/4.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/4s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/4s.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/5.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/5s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/5s.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/6.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/6s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/6s.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/7.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/7s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/7s.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/8.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/8s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/8s.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/9.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/gallery/9s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/gallery/9s.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/headphones.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/headphones.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/html_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/html_logo.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/landing/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/landing/avatar1.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/landing/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/landing/avatar2.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/landing/avatar3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/landing/avatar3.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/landing/avatar4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/landing/avatar4.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/landing/avatar5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/landing/avatar5.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/landing/avatar6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/landing/avatar6.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/landing/avatar7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/landing/avatar7.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/landing/avatar8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/landing/avatar8.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/landing/avatar9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/landing/avatar9.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/landing/iphone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/landing/iphone.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/landing/laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/landing/laptop.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/landing/word_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/landing/word_map.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/meteor_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/meteor_logo.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/mvc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/mvc_logo.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/mydog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/mydog.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/off_canvas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/off_canvas.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/ormming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/ormming.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/p1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/p1.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/p2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/p2.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/p3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/p3.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/p4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/p4.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/p5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/p5.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/p6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/p6.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/p7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/p7.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/p8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/p8.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/p_big1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/p_big1.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/p_big2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/p_big2.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/p_big3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/p_big3.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/profile.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/profile_big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/profile_big.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/profile_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/profile_small.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/profile_smallbak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/profile_smallbak.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/project.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/project.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/rails_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/rails_logo.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/remove.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/shenli.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/shenli.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/starter_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/starter_logo.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/web.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/web.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/img/zender_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/img/zender_logo.png -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/js/demo/chartjs-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/js/demo/chartjs-demo.js -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/js/demo/flot-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/js/demo/flot-demo.js -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/js/demo/flot-demo2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/js/demo/flot-demo2.js -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/js/demo/morris-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/js/demo/morris-demo.js -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/js/demo/peity-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/js/demo/peity-demo.js -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/js/demo/rickshaw-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/js/demo/rickshaw-demo.js -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/js/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/js/http.js -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/js/lib/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/js/lib/bootstrap.js -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/js/lib/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/js/lib/bootstrap.min.js -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/js/lib/jquery-2.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/js/lib/jquery-2.1.1.js -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/js/main.js -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/js/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/js/menu.html -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/js/plugins/c3/c3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/js/plugins/c3/c3.min.js -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/js/plugins/d3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/js/plugins/d3/LICENSE -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/js/plugins/d3/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/js/plugins/d3/d3.min.js -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/js/plugins/pdfjs/pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/js/plugins/pdfjs/pdf.js -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/locales/en.json -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/assets/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/assets/locales/es.json -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/contacts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/contacts.html -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/document.html -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/email_templates/action.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/email_templates/action.html -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/email_templates/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/email_templates/alert.html -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/email_templates/billing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/email_templates/billing.html -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/email_templates/img/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/email_templates/img/header.jpg -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/email_templates/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/email_templates/styles.css -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/generate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/generate.html -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/index.html -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/login.html -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/plugins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/plugins.html -------------------------------------------------------------------------------- /mydog-web/src/main/resources/static/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/main/resources/static/profile.html -------------------------------------------------------------------------------- /mydog-web/src/test/java/org/huangpu/mydog/test/TestAjax.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/test/java/org/huangpu/mydog/test/TestAjax.java -------------------------------------------------------------------------------- /mydog-web/src/test/java/org/huangpu/mydog/test/TestClassLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/test/java/org/huangpu/mydog/test/TestClassLoader.java -------------------------------------------------------------------------------- /mydog-web/src/test/java/org/huangpu/mydog/test/TestJson.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/test/java/org/huangpu/mydog/test/TestJson.java -------------------------------------------------------------------------------- /mydog-web/src/test/java/org/huangpu/mydog/test/TestLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/test/java/org/huangpu/mydog/test/TestLoader.java -------------------------------------------------------------------------------- /mydog-web/src/test/java/org/huangpu/mydog/test/TestPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/test/java/org/huangpu/mydog/test/TestPlugin.java -------------------------------------------------------------------------------- /mydog-web/src/test/resources/all_in_one.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/mydog-web/src/test/resources/all_in_one.json -------------------------------------------------------------------------------- /mydog-web/src/test/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8083 -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShenli/MyDog/HEAD/pom.xml --------------------------------------------------------------------------------