You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

465 lines
14 KiB

3 weeks ago
.
|-- 123.txt
|-- acapp
| |-- __init__.py
| |-- __pycache__
| | |-- __init__.cpython-38.pyc
| | |-- asgi.cpython-38.pyc
| | |-- settings.cpython-38.pyc
| | |-- urls.cpython-38.pyc
| | `-- wsgi.cpython-38.pyc
| |-- asgi.py
| |-- settings.py
| |-- urls.py
| `-- wsgi.py
|-- db.sqlite3
|-- game
| |-- __init__.py
| |-- __pycache__
| | |-- __init__.cpython-38.pyc
| | |-- admin.cpython-38.pyc
| | |-- apps.cpython-38.pyc
| | |-- channelsmiddleware.cpython-38.pyc
| | `-- routing.cpython-38.pyc
| |-- admin.py
| |-- apps.py
| |-- channelsmiddleware.py
| |-- consumers
| | |-- __init__.py
| | |-- __pycache__
| | | `-- __init__.cpython-38.pyc
| | `-- multiplayer
| | |-- __init__.py
| | |-- __pycache__
| | | |-- __init__.cpython-38.pyc
| | | `-- index.cpython-38.pyc
| | `-- index.py
| |-- migrations
| | |-- 0001_initial.py
| | |-- 0002_rename_phote_player_photo.py
| | |-- 0003_player_openid.py
| | |-- 0004_player_score.py
| | |-- __init__.py
| | `-- __pycache__
| | |-- 0001_initial.cpython-38.pyc
| | |-- 0002_rename_phote_player_photo.cpython-38.pyc
| | |-- 0003_player_openid.cpython-38.pyc
| | |-- 0004_player_score.cpython-38.pyc
| | `-- __init__.cpython-38.pyc
| |-- models
| | |-- __init__.py
| | |-- __pycache__
| | | `-- __init__.cpython-38.pyc
| | `-- player
| | |-- __init__.py
| | |-- __pycache__
| | | |-- __init__.cpython-38.pyc
| | | `-- player.cpython-38.pyc
| | `-- player.py
| |-- routing.py
| |-- static
| | |-- css
| | | `-- game.css
| | |-- image
| | | |-- lxq.jpg
| | | |-- menu
| | | | |-- 123.gif
| | | | |-- background.gif
| | | | `-- ch.jpg
| | | |-- playground
| | | |-- settings
| | | | `-- acwing_logo.png
| | | |-- swgq.jpg
| | | |-- user_photo
| | | `-- zyj.jpg
| | `-- js
| | |-- dist
| | | `-- game.js
| | `-- src
| | |-- menu
| | | |-- cphoto
| | | | `-- base.js
| | | `-- zbase.js
| | |-- playground
| | | |-- ac_game_object
| | | | `-- zbase.js
| | | |-- chat_field
| | | | `-- zbase.js
| | | |-- game_map
| | | | `-- zbase.js
| | | |-- notice_board
| | | | `-- zbase.js
| | | |-- particle
| | | | `-- zbase.js
| | | |-- player
| | | | `-- zbase.js
| | | |-- score_board
| | | | `-- zbase.js
| | | |-- skill
| | | | `-- fireball
| | | | `-- zbase.js
| | | |-- socket
| | | | `-- multiplayer
| | | | `-- zbase.js
| | | `-- zbase.js
| | |-- settings
| | | `-- zbase.js
| | `-- zbase.js
| |-- templates
| | |-- menu
| | | |-- new.html
| | | |-- profile.html
| | | `-- ranklist\ html
| | |-- multiends
| | | `-- web.html
| | |-- plaground
| | `-- settings
| |-- tests.py
| |-- urls
| | |-- __init__.py
| | |-- __pycache__
| | | |-- __init__.cpython-38.pyc
| | | `-- index.cpython-38.pyc
| | |-- index.py
| | |-- menu
| | | |-- __init__.py
| | | |-- __pycache__
| | | | |-- __init__.cpython-38.pyc
| | | | `-- index.cpython-38.pyc
| | | `-- index.py
| | |-- playground
| | | |-- __init__.py
| | | |-- __pycache__
| | | | |-- __init__.cpython-38.pyc
| | | | `-- index.cpython-38.pyc
| | | `-- index.py
| | `-- settings
| | |-- __init__.py
| | |-- __pycache__
| | | |-- __init__.cpython-38.pyc
| | | `-- index.cpython-38.pyc
| | |-- acwing
| | | |-- __init__.py
| | | |-- __pycache__
| | | | |-- __init__.cpython-38.pyc
| | | | `-- index.cpython-38.pyc
| | | `-- index.py
| | `-- index.py
| `-- views
| |-- __init__.py
| |-- __pycache__
| | |-- __init__.cpython-38.pyc
| | `-- index.cpython-38.pyc
| |-- index.py
| |-- menu
| | `-- __init__.py
| |-- playground
| | `-- __init__.py
| `-- settings
| |-- __init__.py
| |-- __pycache__
| | |-- __init__.cpython-38.pyc
| | |-- getinfo.cpython-38.pyc
| | |-- login.cpython-38.pyc
| | |-- logout.cpython-38.pyc
| | |-- ranklist.cpython-38.pyc
| | `-- register.cpython-38.pyc
| |-- acwing
| | |-- __init__.py
| | |-- __pycache__
| | | `-- __init__.cpython-38.pyc
| | |-- acapp
| | | |-- __init__.py
| | | |-- __pycache__
| | | | |-- __init__.cpython-38.pyc
| | | | |-- apply_code.cpython-38.pyc
| | | | `-- receive_code.cpython-38.pyc
| | | |-- apply_code.py
| | | `-- receive_code.py
| | `-- web
| | |-- __init__.py
| | |-- __pycache__
| | | |-- __init__.cpython-38.pyc
| | | |-- apply_code.cpython-38.pyc
| | | `-- receive_code.cpython-38.pyc
| | |-- apply_code.py
| | `-- receive_code.py
| |-- getinfo.py
| |-- ranklist.py
| `-- register.py
|-- manage.py
|-- match_system
| |-- __init__.py
| |-- __pycache__
| | `-- __init__.cpython-38.pyc
| |-- src
| | |-- __init__.py
| | |-- __pycache__
| | | `-- __init__.cpython-38.pyc
| | |-- main.py
| | `-- match_server
| | |-- __init__.py
| | |-- __pycache__
| | | `-- __init__.cpython-38.pyc
| | `-- match_service
| | |-- Match-remote
| | |-- Match.py
| | |-- __init__.py
| | |-- __pycache__
| | | |-- Match.cpython-38.pyc
| | | |-- __init__.cpython-38.pyc
| | | `-- ttypes.cpython-38.pyc
| | |-- constants.py
| | `-- ttypes.py
| `-- thrift
| `-- match.thrift
|-- readme.md
|-- scripts
| |-- compress_game_js.sh
| `-- uwsgi.ini
|-- static
| |-- admin
| | |-- css
| | | |-- autocomplete.css
| | | |-- base.css
| | | |-- changelists.css
| | | |-- dark_mode.css
| | | |-- dashboard.css
| | | |-- fonts.css
| | | |-- forms.css
| | | |-- login.css
| | | |-- nav_sidebar.css
| | | |-- responsive.css
| | | |-- responsive_rtl.css
| | | |-- rtl.css
| | | |-- vendor
| | | | `-- select2
| | | | |-- LICENSE-SELECT2.md
| | | | |-- select2.css
| | | | `-- select2.min.css
| | | `-- widgets.css
| | |-- fonts
| | | |-- LICENSE.txt
| | | |-- README.txt
| | | |-- Roboto-Bold-webfont.woff
| | | |-- Roboto-Light-webfont.woff
| | | `-- Roboto-Regular-webfont.woff
| | |-- img
| | | |-- LICENSE
| | | |-- README.txt
| | | |-- calendar-icons.svg
| | | |-- gis
| | | | |-- move_vertex_off.svg
| | | | `-- move_vertex_on.svg
| | | |-- icon-addlink.svg
| | | |-- icon-alert.svg
| | | |-- icon-calendar.svg
| | | |-- icon-changelink.svg
| | | |-- icon-clock.svg
| | | |-- icon-deletelink.svg
| | | |-- icon-no.svg
| | | |-- icon-unknown-alt.svg
| | | |-- icon-unknown.svg
| | | |-- icon-viewlink.svg
| | | |-- icon-yes.svg
| | | |-- inline-delete.svg
| | | |-- search.svg
| | | |-- selector-icons.svg
| | | |-- sorting-icons.svg
| | | |-- tooltag-add.svg
| | | `-- tooltag-arrowright.svg
| | `-- js
| | |-- SelectBox.js
| | |-- SelectFilter2.js
| | |-- actions.js
| | |-- admin
| | | |-- DateTimeShortcuts.js
| | | `-- RelatedObjectLookups.js
| | |-- autocomplete.js
| | |-- calendar.js
| | |-- cancel.js
| | |-- change_form.js
| | |-- collapse.js
| | |-- core.js
| | |-- filters.js
| | |-- inlines.js
| | |-- jquery.init.js
| | |-- nav_sidebar.js
| | |-- popup_response.js
| | |-- prepopulate.js
| | |-- prepopulate_init.js
| | |-- theme.js
| | |-- urlify.js
| | `-- vendor
| | |-- jquery
| | | |-- LICENSE.txt
| | | |-- jquery.js
| | | `-- jquery.min.js
| | |-- select2
| | | |-- LICENSE.md
| | | |-- i18n
| | | | |-- af.js
| | | | |-- ar.js
| | | | |-- az.js
| | | | |-- bg.js
| | | | |-- bn.js
| | | | |-- bs.js
| | | | |-- ca.js
| | | | |-- cs.js
| | | | |-- da.js
| | | | |-- de.js
| | | | |-- dsb.js
| | | | |-- el.js
| | | | |-- en.js
| | | | |-- es.js
| | | | |-- et.js
| | | | |-- eu.js
| | | | |-- fa.js
| | | | |-- fi.js
| | | | |-- fr.js
| | | | |-- gl.js
| | | | |-- he.js
| | | | |-- hi.js
| | | | |-- hr.js
| | | | |-- hsb.js
| | | | |-- hu.js
| | | | |-- hy.js
| | | | |-- id.js
| | | | |-- is.js
| | | | |-- it.js
| | | | |-- ja.js
| | | | |-- ka.js
| | | | |-- km.js
| | | | |-- ko.js
| | | | |-- lt.js
| | | | |-- lv.js
| | | | |-- mk.js
| | | | |-- ms.js
| | | | |-- nb.js
| | | | |-- ne.js
| | | | |-- nl.js
| | | | |-- pl.js
| | | | |-- ps.js
| | | | |-- pt-BR.js
| | | | |-- pt.js
| | | | |-- ro.js
| | | | |-- ru.js
| | | | |-- sk.js
| | | | |-- sl.js
| | | | |-- sq.js
| | | | |-- sr-Cyrl.js
| | | | |-- sr.js
| | | | |-- sv.js
| | | | |-- th.js
| | | | |-- tk.js
| | | | |-- tr.js
| | | | |-- uk.js
| | | | |-- vi.js
| | | | |-- zh-CN.js
| | | | `-- zh-TW.js
| | | |-- select2.full.js
| | | `-- select2.full.min.js
| | `-- xregexp
| | |-- LICENSE.txt
| | |-- xregexp.js
| | `-- xregexp.min.js
| |-- css
| | `-- game.css
| |-- image
| | |-- lxq.jpg
| | |-- menu
| | | |-- 1.gif
| | | |-- 123.gif
| | | |-- background.gif
| | | `-- ch.jpg
| | |-- settings
| | | `-- acwing_logo.png
| | |-- swgq.jpg
| | |-- user_photo
| | | |-- lxq.jpg
| | | `-- zyj.jpg
| | `-- zyj.jpg
| |-- js
| | |-- dist
| | | |-- game.js
| | | `-- game.jspython3
| | `-- src
| | |-- menu
| | | |-- cphoto
| | | | `-- base.js
| | | |-- ranklist
| | | `-- zbase.js
| | |-- playground
| | | |-- ac_game_object
| | | | `-- zbase.js
| | | |-- chat_field
| | | | `-- zbase.js
| | | |-- game_map
| | | | `-- zbase.js
| | | |-- notice_board
| | | | `-- zbase.js
| | | |-- particle
| | | | `-- zbase.js
| | | |-- player
| | | | `-- zbase.js
| | | |-- score_board
| | | | `-- zbase.js
| | | |-- skill
| | | | `-- fireball
| | | | `-- zbase.js
| | | |-- socket
| | | | `-- multiplayer
| | | | `-- zbase.js
| | | `-- zbase.js
| | |-- settings
| | | `-- zbase.js
| | `-- zbase.js
| `-- rest_framework
| |-- css
| | |-- bootstrap-theme.min.css
| | |-- bootstrap-theme.min.css.map
| | |-- bootstrap-tweaks.css
| | |-- bootstrap.min.css
| | |-- bootstrap.min.css.map
| | |-- default.css
| | |-- font-awesome-4.0.3.css
| | `-- prettify.css
| |-- docs
| | |-- css
| | | |-- base.css
| | | |-- highlight.css
| | | `-- jquery.json-view.min.css
| | |-- img
| | | |-- favicon.ico
| | | `-- grid.png
| | `-- js
| | |-- api.js
| | |-- highlight.pack.js
| | `-- jquery.json-view.min.js
| |-- fonts
| | |-- fontawesome-webfont.eot
| | |-- fontawesome-webfont.svg
| | |-- fontawesome-webfont.ttf
| | |-- fontawesome-webfont.woff
| | |-- glyphicons-halflings-regular.eot
| | |-- glyphicons-halflings-regular.svg
| | |-- glyphicons-halflings-regular.ttf
| | |-- glyphicons-halflings-regular.woff
| | `-- glyphicons-halflings-regular.woff2
| |-- img
| | |-- glyphicons-halflings-white.png
| | |-- glyphicons-halflings.png
| | `-- grid.png
| `-- js
| |-- ajax-form.js
| |-- bootstrap.min.js
| |-- coreapi-0.1.1.js
| |-- csrf.js
| |-- default.js
| |-- jquery-3.7.1.min.js
| |-- load-ajax-form.js
| `-- prettify-min.js
`-- terser
124 directories, 337 files