diff --git a/.gitignore b/.gitignore index 7320547895d616a132efd9bd18d1a182357d50fb..2808f6befa1b014c5af8e7ce990a943d8782bd64 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ dist/ .idea/ venv/ .venv/ +pdm.lock result.png result.jpg diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c7123e76eaae968535af9071fcd087e48dfc634f..642550abc26560ad3fabee59c823befeaa10af81 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,26 +1,37 @@ -default_install_hook_types: [pre-commit, prepare-commit-msg] ci: - autofix_commit_msg: ":rotating_light: auto fix by pre-commit hooks" + autofix_commit_msg: "style: auto fix by pre-commit hooks" autofix_prs: true - autoupdate_branch: master - autoupdate_schedule: monthly - autoupdate_commit_msg: ":arrow_up: auto update by pre-commit hooks" + autoupdate_branch: main + autoupdate_schedule: quarterly + autoupdate_commit_msg: "chore: auto update by pre-commit hooks" repos: - - repo: https://github.com/hadialqattan/pycln - rev: v2.1.3 + - repo: https://github.com/astral-sh/ruff-pre-commit + rev: v0.1.9 hooks: - - id: pycln - args: [--config, pyproject.toml] + - id: ruff + args: [--fix, --exit-non-zero-on-fix] + stages: [commit] - repo: https://github.com/pycqa/isort - rev: 5.12.0 + rev: 5.13.2 hooks: - id: isort stages: [commit] - repo: https://github.com/psf/black - rev: 23.1.0 + rev: 23.12.1 hooks: - id: black stages: [commit] + - repo: https://github.com/pre-commit/mirrors-prettier + rev: v4.0.0-alpha.8 + hooks: + - id: prettier + types_or: [javascript, jsx, ts, tsx, markdown, yaml, json] + stages: [commit] + exclude: | + (?x)^( + resources/resource_list.json| + docs/memes.md + )$ diff --git a/Dockerfile b/Dockerfile index 9a787703454d32b47309d7a125c40c2bfec248d7..20012fa6df2f6b83b5321f812bb4a61ee5ef1e5d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ FROM python:3.10-slim as app WORKDIR /app -EXPOSE 7860 +EXPOSE 2233 VOLUME /data diff --git a/README.md b/README.md index 6448b446984a8d5f739174fb4de39b97c83b6160..170c32639ad745f8d3ce76229f7d2d5f3933bc71 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ emoji: 🌖 colorFrom: purple colorTo: indigo sdk: docker +app_port: 2233 pinned: false --- diff --git a/docker/config.toml.template b/docker/config.toml.template index ebf8de16c4d565b9ba050c72888f9d0e29389f56..6c8c228abf1ecdb71392c0a7feb1de639a515cbd 100644 --- a/docker/config.toml.template +++ b/docker/config.toml.template @@ -13,7 +13,7 @@ baidu_trans_apikey = "$BAIDU_TRANS_APIKEY" [server] host = "0.0.0.0" -port = 7860 +port = 2233 [log] log_level = "$LOG_LEVEL" diff --git a/docs/develop.md b/docs/develop.md index 89e8641e1b1c0abbcd88ddf31d64be407d1c02e4..1cd5f6337e586aa582165d7373b9aa38f96c2f58 100644 --- a/docs/develop.md +++ b/docs/develop.md @@ -72,7 +72,6 @@ add_meme( 也可以一个文件中注册多个表情,如:[gif_subtitle](../meme_generator/memes/gif_subtitle/__init__.py) - ## 参数定义 部分表情需要额外的参数。表情参数的类型定义如下: diff --git a/docs/docker.md b/docs/docker.md index 009ee8ca410293773e8e9acf97d0c0083c987585..82c25073ac6443527650f1d0c3e0fb6aa326ea17 100644 --- a/docs/docker.md +++ b/docs/docker.md @@ -14,19 +14,17 @@ docker run -d \ 运行后可通过 api 方式调用 - ### 环境变量 -| 变量名 | 默认值 | 说明 | -| --- | --- | --- | -| `MEME_DIRS` | `'["/data/memes"]'` | 额外表情路径 | -| `MEME_DISABLED_LIST` | `'[]'` | 禁用表情列表 | -| `GIF_MAX_SIZE` | `10.0` | 限制生成的 gif 文件大小 | -| `GIF_MAX_FRAMES` | `100` | 限制生成的 gif 文件帧数 | -| `BAIDU_TRANS_APPID` | `''` | 百度翻译 appid | -| `BAIDU_TRANS_APIKEY` | `''` | 百度翻译 apikey | -| `LOG_LEVEL` | `'INFO'` | 日志等级 | - +| 变量名 | 默认值 | 说明 | +| -------------------- | ------------------- | ----------------------- | +| `MEME_DIRS` | `'["/data/memes"]'` | 额外表情路径 | +| `MEME_DISABLED_LIST` | `'[]'` | 禁用表情列表 | +| `GIF_MAX_SIZE` | `10.0` | 限制生成的 gif 文件大小 | +| `GIF_MAX_FRAMES` | `100` | 限制生成的 gif 文件帧数 | +| `BAIDU_TRANS_APPID` | `''` | 百度翻译 appid | +| `BAIDU_TRANS_APIKEY` | `''` | 百度翻译 apikey | +| `LOG_LEVEL` | `'INFO'` | 日志等级 | ### 加载额外表情 @@ -36,7 +34,6 @@ docker run -d \ 将额外表情放置于 `/memes` 即可 - 完整的运行示例: ```shell diff --git a/docs/images/bluearchive.jpg b/docs/images/bluearchive.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e58d81cccaaafccf20be38cc8891c13945e0d818 Binary files /dev/null and b/docs/images/bluearchive.jpg differ diff --git a/docs/images/certificate.png b/docs/images/certificate.png new file mode 100644 index 0000000000000000000000000000000000000000..4c582fe3b5aeaa7c64724cb14e4c9cdf0d015835 --- /dev/null +++ b/docs/images/certificate.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ba077918e7fed9ad1617e82e8b15e25833efe7a9381553fccf0ab24b2b87dec +size 1831588 diff --git a/docs/images/clown.png b/docs/images/clown.png new file mode 100644 index 0000000000000000000000000000000000000000..f756dfd25979c076200d4114847b1e9c605fce81 --- /dev/null +++ b/docs/images/clown.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:017a9a7467b61b65c478f0b72e1e0f115f865746af196fb779115b6199d415d4 +size 467472 diff --git a/docs/images/clown_instance0.png b/docs/images/clown_instance0.png new file mode 100644 index 0000000000000000000000000000000000000000..1805b896a31adc041bed92b8df1728ec38836ae4 --- /dev/null +++ b/docs/images/clown_instance0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:610cd9e872c4c4c78731b4ac493f303ffe2ed6580c3091ffaae50d5528d08ee5 +size 476895 diff --git a/docs/images/clown_instance1.png b/docs/images/clown_instance1.png new file mode 100644 index 0000000000000000000000000000000000000000..fa64d010c427720b5c6d817c031b9cb4a623b1d1 --- /dev/null +++ b/docs/images/clown_instance1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ea0f59962e0d5eaeecfa8eff729b0d65f7d8f8e1f97ca89b34d1d7e2d0fa022 +size 505503 diff --git a/docs/images/daynight.jpg b/docs/images/daynight.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ee24b5fc24dd9a2ab37bda729acb2a8442d6fbee Binary files /dev/null and b/docs/images/daynight.jpg differ diff --git a/docs/images/dog_dislike.gif b/docs/images/dog_dislike.gif new file mode 100644 index 0000000000000000000000000000000000000000..3115a6fe0bfd00f68b7518a040137596248d0881 --- /dev/null +++ b/docs/images/dog_dislike.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bfa37e78e853a4d2f6418509a40ca5382f48089b72780810f5164540d786f52 +size 1173208 diff --git a/docs/images/dog_dislike_instance0.gif b/docs/images/dog_dislike_instance0.gif new file mode 100644 index 0000000000000000000000000000000000000000..4f78fab94b7756fd5b37241344c49d798e2c174d --- /dev/null +++ b/docs/images/dog_dislike_instance0.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:251033bc6ed4dcce37943d46e5a02961da0cb69cb3055e307faaa1df56d2756d +size 1199406 diff --git a/docs/images/dog_dislike_instance1.gif b/docs/images/dog_dislike_instance1.gif new file mode 100644 index 0000000000000000000000000000000000000000..f00e3024776c2cd4236a58f19edb3de621c44264 --- /dev/null +++ b/docs/images/dog_dislike_instance1.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab8738f588608466129783ad1618733512cb54fce594b88e2699a0e4eac9bb5d +size 1211406 diff --git a/docs/images/frieren_take.jpg b/docs/images/frieren_take.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7dd58b9434e0fc4108d8a5bd1bc4454b903d2119 Binary files /dev/null and b/docs/images/frieren_take.jpg differ diff --git a/docs/images/lim_x_0.jpg b/docs/images/lim_x_0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8f8638bc34a3e51ffdc3289e8f104805b94cfa3d Binary files /dev/null and b/docs/images/lim_x_0.jpg differ diff --git a/docs/images/listen_music.gif b/docs/images/listen_music.gif new file mode 100644 index 0000000000000000000000000000000000000000..16edfea6e2f57ea1f9cc99f5d4867215a29f299b --- /dev/null +++ b/docs/images/listen_music.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5c9e11105067999e47422feda856c9dd7e5d6817ff1b0264702d06419495d13 +size 777798 diff --git a/docs/images/little_angel.jpg b/docs/images/little_angel.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3852ec56d300ce8f138c29d4107a3e6c4ab6de9e Binary files /dev/null and b/docs/images/little_angel.jpg differ diff --git a/docs/images/loading.jpg b/docs/images/loading.jpg new file mode 100644 index 0000000000000000000000000000000000000000..38fbb129987dd076dba21c2adefd4dab38032971 Binary files /dev/null and b/docs/images/loading.jpg differ diff --git a/docs/images/look_flat.jpg b/docs/images/look_flat.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a5c923987812d7cd3fe7c4fc330fb132957a605d Binary files /dev/null and b/docs/images/look_flat.jpg differ diff --git a/docs/images/look_this_icon.jpg b/docs/images/look_this_icon.jpg new file mode 100644 index 0000000000000000000000000000000000000000..036c90cd21854fb7ccb7462fc2c4363da19eb65f Binary files /dev/null and b/docs/images/look_this_icon.jpg differ diff --git a/docs/images/lost_dog.jpg b/docs/images/lost_dog.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ad0a5584f601af440589c34ce82834302c010875 Binary files /dev/null and b/docs/images/lost_dog.jpg differ diff --git a/docs/images/love_you.gif b/docs/images/love_you.gif new file mode 100644 index 0000000000000000000000000000000000000000..d6ad132a3d04508257054df84e8846287b812b2b --- /dev/null +++ b/docs/images/love_you.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2a50ea572f11f657fbc34293fa5b293d0fd8ed56e5b168ae391eafdbba5f999 +size 15236 diff --git a/docs/images/luoyonghao_say.jpg b/docs/images/luoyonghao_say.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5b02d242e4954afb2e5c9bf38bbc36a0aafe63c3 Binary files /dev/null and b/docs/images/luoyonghao_say.jpg differ diff --git a/docs/images/luxun_say.jpg b/docs/images/luxun_say.jpg new file mode 100644 index 0000000000000000000000000000000000000000..62803b2d5e7f9febb135aa5a846b6b61940c0243 Binary files /dev/null and b/docs/images/luxun_say.jpg differ diff --git a/docs/images/maikease.gif b/docs/images/maikease.gif new file mode 100644 index 0000000000000000000000000000000000000000..5b6b41a7c90cf8e780e30832db31716caf735b32 --- /dev/null +++ b/docs/images/maikease.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed930e075b151063738c9ed6915bcba2a746a37b3d2fbb3e4df66babbbdccc7 +size 2991448 diff --git a/docs/images/maimai_awaken.jpg b/docs/images/maimai_awaken.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2dcb3fd2627a62c682f4c05295e6a5685a9dc02 Binary files /dev/null and b/docs/images/maimai_awaken.jpg differ diff --git a/docs/images/maimai_join.jpg b/docs/images/maimai_join.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d6f3e23f0917912aefa54c704e8cce916558c7c5 Binary files /dev/null and b/docs/images/maimai_join.jpg differ diff --git a/docs/images/make_friend.jpg b/docs/images/make_friend.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f0becaebb4ad25e91c7179da8435874fb2d9572 Binary files /dev/null and b/docs/images/make_friend.jpg differ diff --git a/docs/images/marriage.jpg b/docs/images/marriage.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bcd0de484362b64475ade941dbc6f3092b2bf362 Binary files /dev/null and b/docs/images/marriage.jpg differ diff --git a/docs/images/meteor.jpg b/docs/images/meteor.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9fbb3330831245acd3f4687882558e1e3c2a5eb4 Binary files /dev/null and b/docs/images/meteor.jpg differ diff --git a/docs/images/mihoyo.png b/docs/images/mihoyo.png new file mode 100644 index 0000000000000000000000000000000000000000..ca31d9fe222d622dc0a50f5a5cac10aa1ff01ece --- /dev/null +++ b/docs/images/mihoyo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b6e53d99ee6206791821fea74de00f5dd29c1acc60864561fc833bd4d1923eb +size 146911 diff --git a/docs/images/mourning.jpg b/docs/images/mourning.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a202374a67d086b2847e9d4829e156e1022a0317 Binary files /dev/null and b/docs/images/mourning.jpg differ diff --git a/docs/images/mourning_instance0.jpg b/docs/images/mourning_instance0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..43c17cf1d6e2a9c61a4070014fe3a171460169dd Binary files /dev/null and b/docs/images/mourning_instance0.jpg differ diff --git a/docs/images/mourning_instance1.jpg b/docs/images/mourning_instance1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..96c6b784862b228857fababf497ec0fa576d4386 Binary files /dev/null and b/docs/images/mourning_instance1.jpg differ diff --git a/docs/images/murmur.jpg b/docs/images/murmur.jpg new file mode 100644 index 0000000000000000000000000000000000000000..01565987185aa3695ce4abc05a0dce0aaf4d02f1 Binary files /dev/null and b/docs/images/murmur.jpg differ diff --git a/docs/images/my_friend.jpg b/docs/images/my_friend.jpg new file mode 100644 index 0000000000000000000000000000000000000000..75ee9db95bf6de97fc0b914d3ac578191831756f Binary files /dev/null and b/docs/images/my_friend.jpg differ diff --git a/docs/images/my_wife.jpg b/docs/images/my_wife.jpg new file mode 100644 index 0000000000000000000000000000000000000000..744dd4babcf51eeefc940a297c63439bd14e3353 Binary files /dev/null and b/docs/images/my_wife.jpg differ diff --git a/docs/images/name_generator.jpg b/docs/images/name_generator.jpg new file mode 100644 index 0000000000000000000000000000000000000000..622224b5b3bbc09be06b6443ffe46c8b1060ae2f Binary files /dev/null and b/docs/images/name_generator.jpg differ diff --git a/docs/images/need.jpg b/docs/images/need.jpg new file mode 100644 index 0000000000000000000000000000000000000000..36bbb54605cab5f990657ff6451d2357f1dff910 Binary files /dev/null and b/docs/images/need.jpg differ diff --git a/docs/images/nekoha_holdsign.jpg b/docs/images/nekoha_holdsign.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7ea5d40ac8cdf109f059dd25759adc1d88676664 Binary files /dev/null and b/docs/images/nekoha_holdsign.jpg differ diff --git a/docs/images/nihaosaoa.gif b/docs/images/nihaosaoa.gif new file mode 100644 index 0000000000000000000000000000000000000000..86acc4ac4399b6421f2eb23d658438d330534a20 --- /dev/null +++ b/docs/images/nihaosaoa.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40a3ba7497a2b7c4ba28d33d114b13102f77dbdb243fc3995a6578c5d5a4c217 +size 1107600 diff --git a/docs/images/nijika_holdsign.jpg b/docs/images/nijika_holdsign.jpg new file mode 100644 index 0000000000000000000000000000000000000000..089c9e774af76e03acea4e2c099a0d4dafb861bd Binary files /dev/null and b/docs/images/nijika_holdsign.jpg differ diff --git a/docs/images/no_response.jpg b/docs/images/no_response.jpg new file mode 100644 index 0000000000000000000000000000000000000000..282e250cba213db0f31a2130be1db1a9da3ad5db Binary files /dev/null and b/docs/images/no_response.jpg differ diff --git a/docs/images/nokia.jpg b/docs/images/nokia.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ad3f9a43d7545353bbf4b745504e2fd5251fb10 Binary files /dev/null and b/docs/images/nokia.jpg differ diff --git a/docs/images/not_call_me.png b/docs/images/not_call_me.png new file mode 100644 index 0000000000000000000000000000000000000000..6d1210fb95352b437e514eba4f7ca8953696edcb --- /dev/null +++ b/docs/images/not_call_me.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8a826fb18ebf65b5b334e94eedfdc0848a09f579912f0b65c38d2a8b000a93f +size 131737 diff --git a/docs/images/note_for_leave.jpg b/docs/images/note_for_leave.jpg new file mode 100644 index 0000000000000000000000000000000000000000..63568d2ea61eba764063d13c4ed56e193ef51f62 Binary files /dev/null and b/docs/images/note_for_leave.jpg differ diff --git a/docs/images/oshi_no_ko.png b/docs/images/oshi_no_ko.png new file mode 100644 index 0000000000000000000000000000000000000000..9cfef12bfd645f44fab716e392a65fe408fe090f --- /dev/null +++ b/docs/images/oshi_no_ko.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:975bac38ce96a7aa26d9e0b1079bed864d1bd443ae7f33bd83abaecc05ea88f2 +size 407363 diff --git a/docs/images/osu.png b/docs/images/osu.png new file mode 100644 index 0000000000000000000000000000000000000000..f6b0f43b011fdcfafa3c081b7ce6faf1a613d436 --- /dev/null +++ b/docs/images/osu.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:376110880c05869d41df1eb100a5620dced4340aee202e8296ba5e634693be8c +size 46527 diff --git a/docs/images/overtime.jpg b/docs/images/overtime.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b09433d2d80e01b712a09b20938ce4869be15a72 Binary files /dev/null and b/docs/images/overtime.jpg differ diff --git a/docs/images/paint.jpg b/docs/images/paint.jpg new file mode 100644 index 0000000000000000000000000000000000000000..56402526099097a894670738dc708566267abe2b Binary files /dev/null and b/docs/images/paint.jpg differ diff --git a/docs/images/painter.jpg b/docs/images/painter.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b4e222d35a8a0eaedb4169b1adb600a77c91bf88 Binary files /dev/null and b/docs/images/painter.jpg differ diff --git a/docs/images/pass_the_buck.gif b/docs/images/pass_the_buck.gif new file mode 100644 index 0000000000000000000000000000000000000000..a59f31a15fe82988019264233ba1cd404c719559 --- /dev/null +++ b/docs/images/pass_the_buck.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5e610242bd7fed4b378b345deabaaba336e7df673be2b18639397d0843ef25e +size 15235 diff --git a/docs/images/pat.gif b/docs/images/pat.gif new file mode 100644 index 0000000000000000000000000000000000000000..f3d30f827b41ac08a08630a5dda5a939422485ea --- /dev/null +++ b/docs/images/pat.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7904e7cf5adcdc74980219672c593ca14705958419d1e416343deb7387111655 +size 170213 diff --git a/docs/images/perfect.jpg b/docs/images/perfect.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f2c4ea02963b9cf53a122d03c589a179b899b967 Binary files /dev/null and b/docs/images/perfect.jpg differ diff --git a/docs/images/petpet.gif b/docs/images/petpet.gif new file mode 100644 index 0000000000000000000000000000000000000000..e5c3fad60a5138246bd8304ef0a84d86f8f5990f --- /dev/null +++ b/docs/images/petpet.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6e9760e6f96a892c8ae1a18846599246c281955f21678b07aa644e8cf65e133 +size 20139 diff --git a/docs/images/petpet_instance0.gif b/docs/images/petpet_instance0.gif new file mode 100644 index 0000000000000000000000000000000000000000..e5c3fad60a5138246bd8304ef0a84d86f8f5990f --- /dev/null +++ b/docs/images/petpet_instance0.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6e9760e6f96a892c8ae1a18846599246c281955f21678b07aa644e8cf65e133 +size 20139 diff --git a/docs/images/petpet_instance1.gif b/docs/images/petpet_instance1.gif new file mode 100644 index 0000000000000000000000000000000000000000..594aaf218795463b77459fa2d7684e2871cad4c9 --- /dev/null +++ b/docs/images/petpet_instance1.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7529bfb0406845b4e738d5e226b151e2972be96b0d6e0775e51455ffdc3664e2 +size 21554 diff --git a/docs/images/pinch.jpg b/docs/images/pinch.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7b48b9692877433f5ca009e21b736d494327d562 Binary files /dev/null and b/docs/images/pinch.jpg differ diff --git a/docs/images/play.gif b/docs/images/play.gif new file mode 100644 index 0000000000000000000000000000000000000000..61982f7fdcf0e51cd4ae75e7e1f8443e2172bb6b --- /dev/null +++ b/docs/images/play.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60858f275432ff95ec27120ffe2227cb767442f6e2663f062ad96b64cd9c3bd2 +size 503142 diff --git a/docs/images/play_game.jpg b/docs/images/play_game.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be49808e2ec4f9409d4eaa882fd14fef32cb2968 Binary files /dev/null and b/docs/images/play_game.jpg differ diff --git a/docs/images/police.jpg b/docs/images/police.jpg new file mode 100644 index 0000000000000000000000000000000000000000..04f3f575b7e7d0b54d135bccf9635e885aa2fb89 Binary files /dev/null and b/docs/images/police.jpg differ diff --git a/docs/images/police1.jpg b/docs/images/police1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a3d2b984b1cbf01848e5260e1f14abe55e291148 Binary files /dev/null and b/docs/images/police1.jpg differ diff --git a/docs/images/pornhub.jpg b/docs/images/pornhub.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f62170606174a2d21bb4e1572b0d871df541236 Binary files /dev/null and b/docs/images/pornhub.jpg differ diff --git a/docs/images/potato.jpg b/docs/images/potato.jpg new file mode 100644 index 0000000000000000000000000000000000000000..06233a6ec5023fb82ec2b952f11b0af2414a4e29 Binary files /dev/null and b/docs/images/potato.jpg differ diff --git a/docs/images/pound.gif b/docs/images/pound.gif new file mode 100644 index 0000000000000000000000000000000000000000..d53ca3191e7d30a7bce8fbcea66c59a2c9b99ee9 --- /dev/null +++ b/docs/images/pound.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98a69ddacfdc5ca7e7c21a7c491b062e492edc526e40f0387b6c0e9a3b49c98c +size 68772 diff --git a/docs/images/printing.gif b/docs/images/printing.gif new file mode 100644 index 0000000000000000000000000000000000000000..09ba923c12f574f324ff75c0022a8a5e58fa2dca --- /dev/null +++ b/docs/images/printing.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:464e8e96d656dc93dfe4c99fbe172421826edb57a6c3425ff174686cdba87a51 +size 1242393 diff --git a/docs/images/prpr.jpg b/docs/images/prpr.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4f91a417468bbc223b77f927b7ee1a1a335c6247 Binary files /dev/null and b/docs/images/prpr.jpg differ diff --git a/docs/images/psyduck.gif b/docs/images/psyduck.gif new file mode 100644 index 0000000000000000000000000000000000000000..cca1bfb00c93469622c37c344d889205bba8af22 --- /dev/null +++ b/docs/images/psyduck.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e74ee0ca287a067dcb93f9d53bcf3efaf9ae2bea1d9a249f41c34b0a06e844f +size 1076164 diff --git a/docs/images/punch.gif b/docs/images/punch.gif new file mode 100644 index 0000000000000000000000000000000000000000..e3d51788e21d6017bb9bffcb9896b64030a2e8d3 --- /dev/null +++ b/docs/images/punch.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3404dcda031a7545a337cc36a818cfc94295c9b745d3aaa05e7f7318c14784d2 +size 140610 diff --git a/docs/images/qiegewala.gif b/docs/images/qiegewala.gif new file mode 100644 index 0000000000000000000000000000000000000000..d387d5e7d9ede6689a3996bdfa5825b86699abd9 --- /dev/null +++ b/docs/images/qiegewala.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd916ccc0df424df482614683bf29bd1856d3f467d8a8ba1008f36d7a6d533ff +size 1694119 diff --git a/docs/images/raise_image.jpg b/docs/images/raise_image.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b2c63e811e864329ef5e9050a7650ea634b3253 Binary files /dev/null and b/docs/images/raise_image.jpg differ diff --git a/docs/images/raise_sign.jpg b/docs/images/raise_sign.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7581c328691028aaeee494be0c7e8a4d3331b80e Binary files /dev/null and b/docs/images/raise_sign.jpg differ diff --git a/docs/images/read_book.jpg b/docs/images/read_book.jpg new file mode 100644 index 0000000000000000000000000000000000000000..97b4a79e229f51f13a3b3819990c013354c63459 Binary files /dev/null and b/docs/images/read_book.jpg differ diff --git a/docs/images/repeat.gif b/docs/images/repeat.gif new file mode 100644 index 0000000000000000000000000000000000000000..d974ee5273294bb1fd7537fc5addae61f9c5dd9c --- /dev/null +++ b/docs/images/repeat.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ca2af90d3890734bc735f0927814d980030c680d060777775aeeed57c4d317f +size 4165998 diff --git a/docs/images/rip.jpg b/docs/images/rip.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc3604d68475feaa6c6f79a8182767403ab42bbc Binary files /dev/null and b/docs/images/rip.jpg differ diff --git a/docs/images/rip_angrily.jpg b/docs/images/rip_angrily.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f591d2ca4f36fac1dbe7cc2106ce1c3e7270d89 Binary files /dev/null and b/docs/images/rip_angrily.jpg differ diff --git a/docs/images/rise_dead.gif b/docs/images/rise_dead.gif new file mode 100644 index 0000000000000000000000000000000000000000..c652d85fcc765ac3489a818ed85a1bce3835ca9f --- /dev/null +++ b/docs/images/rise_dead.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:581410d76b72398f48ba89d4ffda4647f2b01145815c376b02a754d7d6865daa +size 418462 diff --git a/docs/images/roll.gif b/docs/images/roll.gif new file mode 100644 index 0000000000000000000000000000000000000000..894c8c4d38b97102fc23cf2945cec9196b26d09c --- /dev/null +++ b/docs/images/roll.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:154695cbfeeb981c23b1b07a3520c9474ee4e065168d55430c577af328686520 +size 176758 diff --git a/docs/images/rub.gif b/docs/images/rub.gif new file mode 100644 index 0000000000000000000000000000000000000000..65f68d4605c668110281a6eb4c15effa26b35edd --- /dev/null +++ b/docs/images/rub.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a16ed68aa37982ea8fd74f9fdd21a343951b363678feb4f8deb58a015cf9b978 +size 45574 diff --git a/docs/images/run.jpg b/docs/images/run.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c949f424b0e25a65e2cd23e01fad645a01d7477 Binary files /dev/null and b/docs/images/run.jpg differ diff --git a/docs/images/safe_sense.jpg b/docs/images/safe_sense.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4d45cdad47a74f5bca9ee66f2b9ac361d2e5efb9 Binary files /dev/null and b/docs/images/safe_sense.jpg differ diff --git a/docs/images/scratch_head.gif b/docs/images/scratch_head.gif new file mode 100644 index 0000000000000000000000000000000000000000..286157a1e21e334c45e7dbd639ddf77fd84565fa --- /dev/null +++ b/docs/images/scratch_head.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d26ce08de54318117fbcf61ad17f046cdf9c6fdfb70359c569f7b35c9930318 +size 13890 diff --git a/docs/images/scratchcard.jpg b/docs/images/scratchcard.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2ba06223c4113a84e251c20d90decf4bb47dbb9 Binary files /dev/null and b/docs/images/scratchcard.jpg differ diff --git a/docs/images/scroll.gif b/docs/images/scroll.gif new file mode 100644 index 0000000000000000000000000000000000000000..85befbf5fa84ab0c769d7d1aa04b8c7d575c051a --- /dev/null +++ b/docs/images/scroll.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38a04f7bbe9539329344c4ba292eca37ce6029970f88ebef7970b10dd420f104 +size 309041 diff --git a/docs/images/shishilani.gif b/docs/images/shishilani.gif new file mode 100644 index 0000000000000000000000000000000000000000..71f9bed9f78fe7f1807107e257dfebe285486562 --- /dev/null +++ b/docs/images/shishilani.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f71ef633e7d45ffe3bdc0097edd7af212562ca622341e9f839d202d514be81a7 +size 940553 diff --git a/docs/images/shock.gif b/docs/images/shock.gif new file mode 100644 index 0000000000000000000000000000000000000000..a0554504434f0787b6843123563376026ef660dc --- /dev/null +++ b/docs/images/shock.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2291ce3815f6d28ad57977674cf774b3c7fee6d38fb19d055028c150ab9e886a +size 568360 diff --git a/docs/images/shuifandui.gif b/docs/images/shuifandui.gif new file mode 100644 index 0000000000000000000000000000000000000000..cd27cdd48374273b45927390c91920f3802a8fc2 --- /dev/null +++ b/docs/images/shuifandui.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f890ede246eca315351d0114e9fae4b0dfc91e8df4f9db30b84c404d9ea8ea9e +size 1163387 diff --git a/docs/images/shutup.jpg b/docs/images/shutup.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e7c0d7c74c9822c7d0f95ec5c70558330689fe48 Binary files /dev/null and b/docs/images/shutup.jpg differ diff --git a/docs/images/sit_still.jpg b/docs/images/sit_still.jpg new file mode 100644 index 0000000000000000000000000000000000000000..84c0598fc587460998bfd7515a06098b9c7b26fc Binary files /dev/null and b/docs/images/sit_still.jpg differ diff --git a/docs/images/slap.jpg b/docs/images/slap.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a2e0baebdca67abccf870bb1f74e7cf4a394299b Binary files /dev/null and b/docs/images/slap.jpg differ diff --git a/docs/images/slogan.jpg b/docs/images/slogan.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e2d75006aa984e60e0aafe646eac88e5fa23bb0c Binary files /dev/null and b/docs/images/slogan.jpg differ diff --git a/docs/images/smash.jpg b/docs/images/smash.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e2a9d2b8c9e3bcf085d629dd05731686505ef00a Binary files /dev/null and b/docs/images/smash.jpg differ diff --git a/docs/images/step_on.gif b/docs/images/step_on.gif new file mode 100644 index 0000000000000000000000000000000000000000..fe68477163910bf90f26b59e27734111159a3be7 --- /dev/null +++ b/docs/images/step_on.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:462c4deb358e013634d1bf8576c9fa566af4dfb0ead09e6364643c1e2f1873d8 +size 44205 diff --git a/docs/images/stew.jpg b/docs/images/stew.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e43cd64b14111c56c9c93634f0cecc39eb606cdd Binary files /dev/null and b/docs/images/stew.jpg differ diff --git a/docs/images/suck.gif b/docs/images/suck.gif new file mode 100644 index 0000000000000000000000000000000000000000..62d8d6084f3370341ca7a2a69227ad3451af023e --- /dev/null +++ b/docs/images/suck.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b2fc6da6e5d34fae3c4638abbeb8562d4013f9c0ade6ba78b491dbc702e147b +size 100235 diff --git a/docs/images/support.jpg b/docs/images/support.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0cc5520435cdc6227bcf7ad88c9daa8c4b8b127a Binary files /dev/null and b/docs/images/support.jpg differ diff --git a/docs/images/symmetric.jpg b/docs/images/symmetric.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fe28b31f52e87f84f4297ce3ced13fdaebf4e0d7 Binary files /dev/null and b/docs/images/symmetric.jpg differ diff --git a/docs/images/symmetric_instance0.jpg b/docs/images/symmetric_instance0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e6542784f35439aa540698904227fc4f0b8a9f7 Binary files /dev/null and b/docs/images/symmetric_instance0.jpg differ diff --git a/docs/images/symmetric_instance1.jpg b/docs/images/symmetric_instance1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f91985e7354438a65d916561ed4277f1fdbcc02 Binary files /dev/null and b/docs/images/symmetric_instance1.jpg differ diff --git a/docs/images/symmetric_instance2.jpg b/docs/images/symmetric_instance2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..afce2a2ede5f61a02636fdde3a081f266e0a8f42 Binary files /dev/null and b/docs/images/symmetric_instance2.jpg differ diff --git a/docs/images/symmetric_instance3.jpg b/docs/images/symmetric_instance3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b0abe0923aeab8608d3f0642b6f07ddae158ff13 Binary files /dev/null and b/docs/images/symmetric_instance3.jpg differ diff --git a/docs/images/tankuku_raisesign.gif b/docs/images/tankuku_raisesign.gif new file mode 100644 index 0000000000000000000000000000000000000000..39e0dee6d38ce0833ada659fabe6dae463de9cf1 --- /dev/null +++ b/docs/images/tankuku_raisesign.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e65823cfa0d76e6001f8aeba9dbede10442479808c0f7c52c4adad9c25317d82 +size 1833321 diff --git a/docs/images/taunt.jpg b/docs/images/taunt.jpg new file mode 100644 index 0000000000000000000000000000000000000000..423c322b4168dc5c38c46b480fc7349065a79887 Binary files /dev/null and b/docs/images/taunt.jpg differ diff --git a/docs/images/teach.jpg b/docs/images/teach.jpg new file mode 100644 index 0000000000000000000000000000000000000000..daa39f704ec24272ed958f9b6751920fdb2203db Binary files /dev/null and b/docs/images/teach.jpg differ diff --git a/docs/images/tease.gif b/docs/images/tease.gif new file mode 100644 index 0000000000000000000000000000000000000000..82989bce655d4a50a0478352dba8fa99030a22c1 --- /dev/null +++ b/docs/images/tease.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad0da441334c7d56e6480f0b4528345479cfbddf6cd007004c0a7b492c34b534 +size 717873 diff --git a/docs/images/telescope.gif b/docs/images/telescope.gif new file mode 100644 index 0000000000000000000000000000000000000000..211f52b0ba2a8ff506eec978d1acd8c0e148ec9d --- /dev/null +++ b/docs/images/telescope.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63784076c9024b33b0d5e741e0dfe99e814b7c56d1b0b9ec72ecadd21ad187d4 +size 770454 diff --git a/docs/images/think_what.jpg b/docs/images/think_what.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f2dd3b6c2e97f67fe5126c58c5923f8b35090fa Binary files /dev/null and b/docs/images/think_what.jpg differ diff --git a/docs/images/this_chicken.jpg b/docs/images/this_chicken.jpg new file mode 100644 index 0000000000000000000000000000000000000000..05a4488c7ca60763da1f1eaee1ccd0711a82d4ad Binary files /dev/null and b/docs/images/this_chicken.jpg differ diff --git a/docs/images/throw.jpg b/docs/images/throw.jpg new file mode 100644 index 0000000000000000000000000000000000000000..28cad282f13edde99cd8d887243d50f9e8f2ee11 Binary files /dev/null and b/docs/images/throw.jpg differ diff --git a/docs/images/throw_gif.gif b/docs/images/throw_gif.gif new file mode 100644 index 0000000000000000000000000000000000000000..6099d680c34539e6bfd0b7e9efe850bac31ab9c9 --- /dev/null +++ b/docs/images/throw_gif.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15511119a80ea47d9223cfd2695a4909810834104ad30eba279a7785065ac7d8 +size 288190 diff --git a/docs/images/thump.gif b/docs/images/thump.gif new file mode 100644 index 0000000000000000000000000000000000000000..d463b1976860b6e1c0905f5e2ee5bc7b4e1cfa6c --- /dev/null +++ b/docs/images/thump.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eab3b8bb640e74be34b9f2eba594eff642616eb4bbdc47106ae5190f49ea98d +size 31112 diff --git a/docs/images/thump_wildly.gif b/docs/images/thump_wildly.gif new file mode 100644 index 0000000000000000000000000000000000000000..24b5f8ee3a3460c34c1d57fe08f79e021b277d44 --- /dev/null +++ b/docs/images/thump_wildly.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79a27f5fe1c1bc6de8526b60e9ade096c830a5688ac82e258e585e6ea30869b9 +size 721040 diff --git a/docs/images/tightly.gif b/docs/images/tightly.gif new file mode 100644 index 0000000000000000000000000000000000000000..e1dc43b57d0751febef254c6554af23f2ae455ab --- /dev/null +++ b/docs/images/tightly.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31dedae4bdc18e4d475e212239b4786fab03739ec115fd825f4adfe61a13e2b1 +size 320978 diff --git a/docs/images/together.jpg b/docs/images/together.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c0d0a164f59aa815aae73e17ef544d2135ea7ad6 Binary files /dev/null and b/docs/images/together.jpg differ diff --git a/docs/images/tom_tease.gif b/docs/images/tom_tease.gif new file mode 100644 index 0000000000000000000000000000000000000000..4132d806d1ea3e7f26846f448d651360269ed0c9 --- /dev/null +++ b/docs/images/tom_tease.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd7fccd7dc72fd7fccf09bf768ee5c477ee63c785fcfdd177327be3807add2a7 +size 492916 diff --git a/docs/images/tomb_yeah.jpg b/docs/images/tomb_yeah.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ed87bd2a623147408de77fb018ade3cee943fa0c Binary files /dev/null and b/docs/images/tomb_yeah.jpg differ diff --git a/docs/images/trance.jpg b/docs/images/trance.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c917da2574f7a51e18540e21e15efd46fc567c98 Binary files /dev/null and b/docs/images/trance.jpg differ diff --git a/docs/images/turn.gif b/docs/images/turn.gif new file mode 100644 index 0000000000000000000000000000000000000000..724367e1681743e7b879afb39f9c49fca1c0fad1 --- /dev/null +++ b/docs/images/turn.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9409149bce8113d9dc00a6fb3fffaaa8b0cede73112aabb367b1d3fbc5d8fe10 +size 328404 diff --git a/docs/images/twist.gif b/docs/images/twist.gif new file mode 100644 index 0000000000000000000000000000000000000000..58935c92591819c7634c2b131c0f150a81c2e2f1 --- /dev/null +++ b/docs/images/twist.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c6470401a46ed8d68ebbbc1a4f54c08f86c3438450c50461c24d4c1493c5c10 +size 59992 diff --git a/docs/images/universal.jpg b/docs/images/universal.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ca5b2d991c3710831e7fc0b5d10a474e55e2a4c Binary files /dev/null and b/docs/images/universal.jpg differ diff --git a/docs/images/vibrate.gif b/docs/images/vibrate.gif new file mode 100644 index 0000000000000000000000000000000000000000..663d508b720cdcfc8066e53c0a8d6ac3073944dd --- /dev/null +++ b/docs/images/vibrate.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adc51e235e58fbd80e7fd62cd4abeffd7d267a96fefc0986668cd8613d75bd55 +size 107507 diff --git a/docs/images/wakeup.jpg b/docs/images/wakeup.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca960065be69e6453018a214bd57fdcb0761b2d2 Binary files /dev/null and b/docs/images/wakeup.jpg differ diff --git a/docs/images/wallpaper.gif b/docs/images/wallpaper.gif new file mode 100644 index 0000000000000000000000000000000000000000..81325737a131092a1048b36389cda224f0b6d344 --- /dev/null +++ b/docs/images/wallpaper.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:860c8e290239163d8b4b33f5a11c7a77041730804ba7d2c3656b529c46701bfd +size 915319 diff --git a/docs/images/walnut_pad.jpg b/docs/images/walnut_pad.jpg new file mode 100644 index 0000000000000000000000000000000000000000..851e405bcbac454509fd89d436e5bbd7eac02067 Binary files /dev/null and b/docs/images/walnut_pad.jpg differ diff --git a/docs/images/walnut_zoom.gif b/docs/images/walnut_zoom.gif new file mode 100644 index 0000000000000000000000000000000000000000..540ef5d9efbe93e516666578b0d52f41d9ff98ee --- /dev/null +++ b/docs/images/walnut_zoom.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d09fd3dd02836d7ef16ccd26412743125bd5ae0c18a734ac373f95b24b9b9902 +size 1845692 diff --git a/docs/images/wangjingze.gif b/docs/images/wangjingze.gif new file mode 100644 index 0000000000000000000000000000000000000000..50a9a0d1c1432bbc95676d7ed71d9608757a422f --- /dev/null +++ b/docs/images/wangjingze.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6152afcf8508018835846908d93e0b557e79eb4b948fb45534f1901fefc6a332 +size 1253180 diff --git a/docs/images/washer.gif b/docs/images/washer.gif new file mode 100644 index 0000000000000000000000000000000000000000..fb6bff897061bdacafe9c1247a45242e1829fdab --- /dev/null +++ b/docs/images/washer.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:457de7940e7ed0e44356889496a831d3ab0cdd8e75b82c8bb505848ddfcaef4b +size 183288 diff --git a/docs/images/wave.gif b/docs/images/wave.gif new file mode 100644 index 0000000000000000000000000000000000000000..1a24ca266fedd62c5089961666830be945b83e6a --- /dev/null +++ b/docs/images/wave.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cf963aee3cac62d5641e7bc3ffac9c006b043679664b26d403c0c848125e834 +size 239863 diff --git a/docs/images/weisuoyuwei.gif b/docs/images/weisuoyuwei.gif new file mode 100644 index 0000000000000000000000000000000000000000..5f0d3213b59940bf84e9f85c64978f99453a5429 --- /dev/null +++ b/docs/images/weisuoyuwei.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ea536a5914ff995c7b6c2d43ed7d6f27314db2335438bad65802daadfc76ccf +size 3529449 diff --git a/docs/images/what_I_want_to_do.jpg b/docs/images/what_I_want_to_do.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3b4846c88ff2dca8d4f6bf05597063c99ec99de6 Binary files /dev/null and b/docs/images/what_I_want_to_do.jpg differ diff --git a/docs/images/what_he_wants.jpg b/docs/images/what_he_wants.jpg new file mode 100644 index 0000000000000000000000000000000000000000..072769751888e9224811c4f8a5fca7996abab1ed Binary files /dev/null and b/docs/images/what_he_wants.jpg differ diff --git a/docs/images/why_at_me.jpg b/docs/images/why_at_me.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4945d840358cf8a9dbf825625bff1dcd98eee59 Binary files /dev/null and b/docs/images/why_at_me.jpg differ diff --git a/docs/images/why_have_hands.jpg b/docs/images/why_have_hands.jpg new file mode 100644 index 0000000000000000000000000000000000000000..499b980e11c1f89ae726c6910292f5afe6e26e4f Binary files /dev/null and b/docs/images/why_have_hands.jpg differ diff --git a/docs/images/windmill_turn.gif b/docs/images/windmill_turn.gif new file mode 100644 index 0000000000000000000000000000000000000000..de9b4f81d811c73609da264feb625bdb97b4f06f --- /dev/null +++ b/docs/images/windmill_turn.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3016348d3e2d83811ba9e4fd921d1682306f8085b07c2f43cdd0b36e705f317 +size 169312 diff --git a/docs/images/wish_fail.jpg b/docs/images/wish_fail.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d03e7bfc09e3bc138480f58982465cedf42044c Binary files /dev/null and b/docs/images/wish_fail.jpg differ diff --git a/docs/images/wooden_fish.gif b/docs/images/wooden_fish.gif new file mode 100644 index 0000000000000000000000000000000000000000..d7f1efaa8cd7d240d5441decc861153277b172da --- /dev/null +++ b/docs/images/wooden_fish.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eda25f56dd5f2e35bb37c9ddf8deca22dd482d08b918fdc1d0a0304c3e1bb4d +size 2894137 diff --git a/docs/images/worship.gif b/docs/images/worship.gif new file mode 100644 index 0000000000000000000000000000000000000000..e40612c5cf9f874ff69a235b33a20dd66219e8f2 --- /dev/null +++ b/docs/images/worship.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48ba4105bc077013fc475dc5013c323923c0a951d0421b89e726abb461f218e5 +size 209935 diff --git a/docs/images/wujing.jpg b/docs/images/wujing.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79082533bbfff4da1c7a864ae5d87f1a94992cc4 Binary files /dev/null and b/docs/images/wujing.jpg differ diff --git a/docs/images/wunian.gif b/docs/images/wunian.gif new file mode 100644 index 0000000000000000000000000000000000000000..7e37741e0db15848fd2af56de7d4df936c61775a --- /dev/null +++ b/docs/images/wunian.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e2a056b10ce5ee0c21140309adc4f691cdbf9b42d811849b2baf3bd44461403 +size 1352425 diff --git a/docs/images/yalidaye.gif b/docs/images/yalidaye.gif new file mode 100644 index 0000000000000000000000000000000000000000..0f1c6e78f38bb12112858fd26130166ca4482a12 --- /dev/null +++ b/docs/images/yalidaye.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc0a08f6fee57df2c18b1d17fae77d3e77837fd9f8d54c17c91ff25fe45aedb0 +size 1782162 diff --git a/docs/images/youtube.jpg b/docs/images/youtube.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b75dfdbf6e02767d929c46a425d6c60a2dcca37 Binary files /dev/null and b/docs/images/youtube.jpg differ diff --git a/docs/images/zengxiaoxian.gif b/docs/images/zengxiaoxian.gif new file mode 100644 index 0000000000000000000000000000000000000000..138ff80981d0f884f98ce4a73a0bb65953c268c9 --- /dev/null +++ b/docs/images/zengxiaoxian.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d5f8d2b2a024e9ba3fa952778d72acbc3780f64f09b523ca6a93578a7fa8802 +size 1158724 diff --git a/docs/install.md b/docs/install.md index 54cce4221e20f53f0dfadefb43b43e3c31197ab0..9c78c9331668e29447686ce7c335155bb1b7bf02 100644 --- a/docs/install.md +++ b/docs/install.md @@ -26,7 +26,6 @@ git clone https://github.com/MeetWq/meme-generator 通过 `python -m meme_generator.cli` 运行命令行程序 - ### 字体安装 为确保表情包中的文字生成正常,需要自行安装字体 @@ -36,11 +35,11 @@ git clone https://github.com/MeetWq/meme-generator > 字体安装后若文字仍显示不正常,可删掉 `matplotlib` 字体缓存文件重新运行程序 > > 缓存文件位置: +> > - Windows: `C:\Users\\.matplotlib\fontlist-xxx.json` > - Linux: `~/.cache/matplotlib/fontlist-xxx.json` > - Mac: `~/Library/Caches/matplotlib/fontlist-xxx.json` - #### 中文字体 和 emoji字体 安装 根据系统的不同,推荐安装的字体如下: @@ -49,7 +48,6 @@ git clone https://github.com/MeetWq/meme-generator 大部分 Windows 系统自带 [微软雅黑](https://learn.microsoft.com/zh-cn/typography/font-list/microsoft-yahei) 中文字体 和 [Segoe UI Emoji](https://learn.microsoft.com/zh-cn/typography/font-list/segoe-ui-emoji) emoji 字体,一般情况下无需额外安装 - - Linux: 部分系统可能自带 [文泉驿微米黑](http://wenq.org/wqy2/index.cgi?MicroHei) 中文字体; @@ -76,38 +74,38 @@ NotoSansSC:https://fonts.google.com/noto/specimen/Noto+Sans+SC Noto Color Emoji:https://github.com/googlefonts/noto-emoji - - Mac: 苹果系统一般自带 "PingFang SC" 中文字体 与 "Apple Color Emoji" emoji 字体 - #### 其他字体安装 某些表情包需要用到一些额外字体,存放于仓库中 [resources/fonts](https://github.com/MeetWq/meme-generator/tree/main/resources/fonts),需要自行下载安装 具体字体及对应的表情如下: -| 字体名 | 字体文件名 | 用到该字体的表情 | 备注 | -| --- | --- | --- | --- | -| [Consolas](https://learn.microsoft.com/zh-cn/typography/font-list/consolas) | [consola.ttf](https://github.com/MeetWq/meme-generator/blob/main/resources/fonts/consola.ttf) | `charpic` | | -| [FZKaTong-M19S](https://www.foundertype.com/index.php/FontInfo/index/id/136) | [FZKATJW.ttf](https://github.com/MeetWq/meme-generator/blob/main/resources/fonts/FZKATJW.ttf) | `capoo_say` | 方正卡通 | -| [FZXS14](https://www.foundertype.com/index.php/FontInfo/index/id/208) | [FZXS14.ttf](https://github.com/MeetWq/meme-generator/blob/main/resources/fonts/FZXS14.ttf) | `nokia` | 方正像素14 | -| [FZSJ-QINGCRJ](https://www.foundertype.com/index.php/FontInfo/index/id/5178) | [FZSJ-QINGCRJ.ttf](https://github.com/MeetWq/meme-generator/blob/main/resources/fonts/FZSJ-QINGCRJ.ttf) | `psyduck`、`nijika_holdsign` | 方正手迹-青春日记 | -| [FZShaoEr-M11S](https://www.foundertype.com/index.php/FontInfo/index/id/149) | [FZSEJW.ttf](https://github.com/MeetWq/meme-generator/blob/main/resources/fonts/FZSEJW.ttf) | `raise_sign`、`nekoha_holdsign` | 方正少儿 | -| [NotoSansSC](https://fonts.google.com/noto/specimen/Noto+Sans+SC) | [NotoSansSC-Regular.otf](https://github.com/MeetWq/meme-generator/blob/main/resources/fonts/NotoSansSC-Regular.otf) | `5000choyen` | | -| [NotoSerifSC](https://fonts.google.com/noto/specimen/Noto+Serif+SC) | [NotoSerifSC-Regular.otf](https://github.com/MeetWq/meme-generator/blob/main/resources/fonts/NotoSerifSC-Regular.otf) | `5000choyen` | | -| [HiraginoMin](https://www.fonts.net.cn/font-36201269101.html) | [HiraginoMin-W5-90-RKSJ-H-2.ttc](https://github.com/MeetWq/meme-generator/blob/main/resources/fonts/HiraginoMin-W5-90-RKSJ-H-2.ttc) | `oshi_no_ko` | 明朝体 | -| [Aller](https://fonts.adobe.com/fonts/aller) | [Aller_Bd.ttf](https://github.com/MeetWq/meme-generator/blob/main/resources/fonts/Aller_Bd.ttf) | `osu` | | - +| 字体名 | 字体文件名 | 用到该字体的表情 | 备注 | +| ---------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ------------------------------- | ----------------- | +| [Consolas](https://learn.microsoft.com/zh-cn/typography/font-list/consolas) | [consola.ttf](https://github.com/MeetWq/meme-generator/blob/main/resources/fonts/consola.ttf) | `charpic` | | +| [FZKaTong-M19S](https://www.foundertype.com/index.php/FontInfo/index/id/136) | [FZKATJW.ttf](https://github.com/MeetWq/meme-generator/blob/main/resources/fonts/FZKATJW.ttf) | `capoo_say` | 方正卡通 | +| [FZXS14](https://www.foundertype.com/index.php/FontInfo/index/id/208) | [FZXS14.ttf](https://github.com/MeetWq/meme-generator/blob/main/resources/fonts/FZXS14.ttf) | `nokia` | 方正像素14 | +| [FZSJ-QINGCRJ](https://www.foundertype.com/index.php/FontInfo/index/id/5178) | [FZSJ-QINGCRJ.ttf](https://github.com/MeetWq/meme-generator/blob/main/resources/fonts/FZSJ-QINGCRJ.ttf) | `psyduck`、`nijika_holdsign` | 方正手迹-青春日记 | +| [FZShaoEr-M11S](https://www.foundertype.com/index.php/FontInfo/index/id/149) | [FZSEJW.ttf](https://github.com/MeetWq/meme-generator/blob/main/resources/fonts/FZSEJW.ttf) | `raise_sign`、`nekoha_holdsign` | 方正少儿 | +| [NotoSansSC](https://fonts.google.com/noto/specimen/Noto+Sans+SC) | [NotoSansSC-Regular.otf](https://github.com/MeetWq/meme-generator/blob/main/resources/fonts/NotoSansSC-Regular.otf) | `5000choyen` | | +| [NotoSerifSC](https://fonts.google.com/noto/specimen/Noto+Serif+SC) | [NotoSerifSC-Regular.otf](https://github.com/MeetWq/meme-generator/blob/main/resources/fonts/NotoSerifSC-Regular.otf) | `5000choyen` | | +| [HiraginoMin](https://www.fonts.net.cn/font-36201269101.html) | [HiraginoMin-W5-90-RKSJ-H-2.ttc](https://github.com/MeetWq/meme-generator/blob/main/resources/fonts/HiraginoMin-W5-90-RKSJ-H-2.ttc) | `oshi_no_ko` | 明朝体 | +| [Aller](https://fonts.adobe.com/fonts/aller) | [Aller_Bd.ttf](https://github.com/MeetWq/meme-generator/blob/main/resources/fonts/Aller_Bd.ttf) | `osu` | | +| [Ro GSan Serif Std](https://www.morisawa.co.jp/fonts/specimen/1646) | [RoGSanSrfStd-Bd.otf](https://github.com/MeetWq/meme-generator/blob/main/resources/fonts/RoGSanSrfStd-Bd.otf) | `bluearchive` | | +| [Glow Sans SC](https://github.com/welai/glow-sans) | [GlowSansSC-Normal-Heavy.otf](https://github.com/MeetWq/meme-generator/blob/main/resources/fonts/GlowSansSC-Normal-Heavy.otf) | `bluearchive` | 未来荧黑 | #### 字体安装方式 不同系统的字体安装方式: - Windows: - - 双击通过字体查看器安装 - - 复制到字体文件夹:`C:\Windows\Fonts` + + - 双击通过字体查看器安装 + - 复制到字体文件夹:`C:\Windows\Fonts` - Linux: diff --git a/docs/memes.md b/docs/memes.md index 2942de12f9e500f5649b543ce78f74d03ac803b9..1a39f0253ddaffe4d710e06ca6a653d78256ab22 100644 --- a/docs/memes.md +++ b/docs/memes.md @@ -22,182 +22,196 @@ 15. [beat_head (拍头)](#beat_head) 16. [bite (啃)](#bite) 17. [blood_pressure (高血压)](#blood_pressure) -18. [bocchi_draft (波奇手稿)](#bocchi_draft) -19. [bronya_holdsign (布洛妮娅举牌/大鸭鸭举牌)](#bronya_holdsign) -20. [bubble_tea (奶茶)](#bubble_tea) -21. [call_110 (遇到困难请拨打)](#call_110) -22. [caoshen_bite (草神啃)](#caoshen_bite) -23. [capoo_draw (咖波画)](#capoo_draw) -24. [capoo_rip (咖波撕)](#capoo_rip) -25. [capoo_rub (咖波蹭/咖波贴)](#capoo_rub) -26. [capoo_say (咖波说)](#capoo_say) -27. [capoo_strike (咖波撞/咖波头槌)](#capoo_strike) -28. [captain (舰长)](#captain) -29. [chanshenzi (馋身子)](#chanshenzi) -30. [charpic (字符画)](#charpic) -31. [chase_train (追列车/追火车)](#chase_train) -32. [china_flag (国旗)](#china_flag) -33. [confuse (迷惑)](#confuse) -34. [coupon (兑换券)](#coupon) -35. [cover_face (捂脸)](#cover_face) -36. [crawl (爬)](#crawl) -37. [cyan (群青)](#cyan) -38. [decent_kiss (像样的亲亲)](#decent_kiss) -39. [dianzhongdian (入典/典中典/黑白草图)](#dianzhongdian) -40. [dinosaur (恐龙/小恐龙)](#dinosaur) -41. [distracted (注意力涣散)](#distracted) -42. [divorce (离婚协议/离婚申请)](#divorce) -43. [dog_of_vtb (管人痴)](#dog_of_vtb) -44. [dont_go_near (不要靠近)](#dont_go_near) -45. [dont_touch (别碰)](#dont_touch) -46. [douyin (douyin)](#douyin) -47. [eat (吃)](#eat) -48. [fanatic (狂爱/狂粉)](#fanatic) -49. [fencing (击剑/🤺)](#fencing) -50. [fill_head (满脑子)](#fill_head) -51. [find_chips (整点薯条)](#find_chips) -52. [flash_blind (闪瞎)](#flash_blind) -53. [follow (关注)](#follow) -54. [funny_mirror (哈哈镜)](#funny_mirror) -55. [garbage (垃圾/垃圾桶)](#garbage) -56. [genshin_start (原神启动)](#genshin_start) -57. [good_news (喜报)](#good_news) -58. [google (google)](#google) -59. [guichu (鬼畜)](#guichu) -60. [gun (手枪)](#gun) -61. [hammer (锤)](#hammer) -62. [high_EQ (低情商xx高情商xx)](#high_EQ) -63. [hit_screen (打穿/打穿屏幕)](#hit_screen) -64. [hold_grudge (记仇)](#hold_grudge) -65. [hold_tight (抱紧)](#hold_tight) -66. [hug_leg (抱大腿)](#hug_leg) -67. [hutao_bite (胡桃啃)](#hutao_bite) -68. [imprison (坐牢)](#imprison) -69. [incivilization (不文明)](#incivilization) -70. [interview (采访)](#interview) -71. [jiji_king (急急国王)](#jiji_king) -72. [jiujiu (啾啾)](#jiujiu) -73. [kaleidoscope (万花筒/万花镜)](#kaleidoscope) -74. [karyl_point (凯露指)](#karyl_point) -75. [keep_away (远离)](#keep_away) -76. [kick_ball (踢球)](#kick_ball) -77. [kirby_hammer (卡比锤/卡比重锤)](#kirby_hammer) -78. [kiss (亲/亲亲)](#kiss) -79. [klee_eat (可莉吃)](#klee_eat) -80. [knock (敲)](#knock) -81. [learn (偷学)](#learn) -82. [lim_x_0 (等价无穷小)](#lim_x_0) -83. [listen_music (听音乐)](#listen_music) -84. [little_angel (小天使)](#little_angel) -85. [loading (加载中)](#loading) -86. [look_flat (看扁)](#look_flat) -87. [look_this_icon (看图标)](#look_this_icon) -88. [love_you (永远爱你)](#love_you) -89. [luoyonghao_say (罗永浩说)](#luoyonghao_say) -90. [luxun_say (鲁迅说/鲁迅说过)](#luxun_say) -91. [maikease (麦克阿瑟说)](#maikease) -92. [maimai_awaken (旅行伙伴觉醒)](#maimai_awaken) -93. [maimai_join (旅行伙伴加入)](#maimai_join) -94. [make_friend (交个朋友)](#make_friend) -95. [marriage (结婚申请/结婚登记)](#marriage) -96. [meteor (流星)](#meteor) -97. [mihoyo (米哈游)](#mihoyo) -98. [mourning (上香)](#mourning) -99. [murmur (低语)](#murmur) -100. [my_friend (我朋友说)](#my_friend) -101. [my_wife (我老婆/这是我老婆)](#my_wife) -102. [name_generator (亚文化取名机/亚名)](#name_generator) -103. [need (需要/你可能需要)](#need) -104. [nekoha_holdsign (猫羽雫举牌/猫猫举牌)](#nekoha_holdsign) -105. [nihaosaoa (你好骚啊)](#nihaosaoa) -106. [nijika_holdsign (伊地知虹夏举牌/虹夏举牌)](#nijika_holdsign) -107. [no_response (无响应)](#no_response) -108. [nokia (诺基亚/有内鬼)](#nokia) -109. [not_call_me (不喊我)](#not_call_me) -110. [note_for_leave (请假条)](#note_for_leave) -111. [oshi_no_ko (我推的网友)](#oshi_no_ko) -112. [osu (osu)](#osu) -113. [overtime (加班)](#overtime) -114. [paint (这像画吗)](#paint) -115. [painter (小画家)](#painter) -116. [pass_the_buck (推锅/甩锅)](#pass_the_buck) -117. [pat (拍)](#pat) -118. [perfect (完美)](#perfect) -119. [petpet (摸/摸摸/摸头/rua)](#petpet) -120. [play (顶/玩)](#play) -121. [play_game (玩游戏)](#play_game) -122. [police (出警)](#police) -123. [police1 (警察)](#police1) -124. [pornhub (ph/pornhub)](#pornhub) -125. [potato (土豆)](#potato) -126. [pound (捣)](#pound) -127. [printing (打印)](#printing) -128. [prpr (舔/舔屏/prpr)](#prpr) -129. [psyduck (可达鸭)](#psyduck) -130. [punch (打拳)](#punch) -131. [qiegewala (切格瓦拉)](#qiegewala) -132. [raise_image (举)](#raise_image) -133. [raise_sign (举牌)](#raise_sign) -134. [read_book (看书)](#read_book) -135. [repeat (复读)](#repeat) -136. [rip (撕)](#rip) -137. [rip_angrily (怒撕)](#rip_angrily) -138. [rise_dead (诈尸/秽土转生)](#rise_dead) -139. [roll (滚)](#roll) -140. [rub (贴/贴贴/蹭/蹭蹭)](#rub) -141. [run (快跑)](#run) -142. [safe_sense (安全感)](#safe_sense) -143. [scratch_head (挠头)](#scratch_head) -144. [scratchcard (刮刮乐)](#scratchcard) -145. [scroll (滚屏)](#scroll) -146. [shishilani (食屎啦你)](#shishilani) -147. [shock (震惊)](#shock) -148. [shuifandui (谁反对)](#shuifandui) -149. [shutup (别说了)](#shutup) -150. [sit_still (坐得住/坐的住)](#sit_still) -151. [slap (一巴掌)](#slap) -152. [slogan (口号)](#slogan) -153. [smash (砸)](#smash) -154. [step_on (踩)](#step_on) -155. [suck (吸/嗦)](#suck) -156. [support (精神支柱)](#support) -157. [symmetric (对称)](#symmetric) -158. [tankuku_raisesign (唐可可举牌)](#tankuku_raisesign) -159. [taunt (嘲讽)](#taunt) -160. [teach (讲课/敲黑板)](#teach) -161. [tease (拿捏/戏弄)](#tease) -162. [think_what (想什么)](#think_what) -163. [throw (丢/扔)](#throw) -164. [throw_gif (抛/掷)](#throw_gif) -165. [thump (捶)](#thump) -166. [thump_wildly (捶爆/爆捶)](#thump_wildly) -167. [tightly (紧贴/紧紧贴着)](#tightly) -168. [together (一起)](#together) -169. [trance (恍惚)](#trance) -170. [turn (转)](#turn) -171. [twist (搓)](#twist) -172. [universal (万能表情/空白表情)](#universal) -173. [vibrate (震动)](#vibrate) -174. [wakeup (xx起来了)](#wakeup) -175. [wallpaper (墙纸)](#wallpaper) -176. [walnut_pad (胡桃平板)](#walnut_pad) -177. [walnut_zoom (胡桃放大)](#walnut_zoom) -178. [wangjingze (王境泽)](#wangjingze) -179. [wave (波纹)](#wave) -180. [weisuoyuwei (为所欲为)](#weisuoyuwei) -181. [what_I_want_to_do (我想上的)](#what_I_want_to_do) -182. [what_he_wants (最想要的东西)](#what_he_wants) -183. [why_at_me (为什么@我)](#why_at_me) -184. [why_have_hands (为什么要有手)](#why_have_hands) -185. [windmill_turn (风车转)](#windmill_turn) -186. [wish_fail (许愿失败)](#wish_fail) -187. [wooden_fish (木鱼)](#wooden_fish) -188. [worship (膜/膜拜)](#worship) -189. [wujing (吴京xx中国xx)](#wujing) -190. [wunian (五年怎么过的)](#wunian) -191. [yalidaye (压力大爷)](#yalidaye) -192. [youtube (yt/youtube)](#youtube) -193. [zengxiaoxian (曾小贤)](#zengxiaoxian) +18. [bluearchive (蔚蓝档案标题/batitle)](#bluearchive) +19. [bocchi_draft (波奇手稿)](#bocchi_draft) +20. [bronya_holdsign (布洛妮娅举牌/大鸭鸭举牌)](#bronya_holdsign) +21. [bubble_tea (奶茶)](#bubble_tea) +22. [call_110 (遇到困难请拨打)](#call_110) +23. [caoshen_bite (草神啃)](#caoshen_bite) +24. [capoo_draw (咖波画)](#capoo_draw) +25. [capoo_rip (咖波撕)](#capoo_rip) +26. [capoo_rub (咖波蹭/咖波贴)](#capoo_rub) +27. [capoo_say (咖波说)](#capoo_say) +28. [capoo_strike (咖波撞/咖波头槌)](#capoo_strike) +29. [captain (舰长)](#captain) +30. [certificate (奖状/证书)](#certificate) +31. [chanshenzi (馋身子)](#chanshenzi) +32. [charpic (字符画)](#charpic) +33. [chase_train (追列车/追火车)](#chase_train) +34. [china_flag (国旗)](#china_flag) +35. [clown (小丑)](#clown) +36. [confuse (迷惑)](#confuse) +37. [coupon (兑换券)](#coupon) +38. [cover_face (捂脸)](#cover_face) +39. [crawl (爬)](#crawl) +40. [cyan (群青)](#cyan) +41. [daynight (白天黑夜/白天晚上)](#daynight) +42. [decent_kiss (像样的亲亲)](#decent_kiss) +43. [dianzhongdian (入典/典中典/黑白草图)](#dianzhongdian) +44. [dinosaur (恐龙/小恐龙)](#dinosaur) +45. [distracted (注意力涣散)](#distracted) +46. [divorce (离婚协议/离婚申请)](#divorce) +47. [dog_dislike (狗都不玩)](#dog_dislike) +48. [dog_of_vtb (管人痴)](#dog_of_vtb) +49. [dont_go_near (不要靠近)](#dont_go_near) +50. [dont_touch (别碰)](#dont_touch) +51. [douyin (douyin)](#douyin) +52. [eat (吃)](#eat) +53. [fanatic (狂爱/狂粉)](#fanatic) +54. [fencing (击剑/🤺)](#fencing) +55. [fill_head (满脑子)](#fill_head) +56. [find_chips (整点薯条)](#find_chips) +57. [flash_blind (闪瞎)](#flash_blind) +58. [follow (关注)](#follow) +59. [frieren_take (芙莉莲拿)](#frieren_take) +60. [funny_mirror (哈哈镜)](#funny_mirror) +61. [garbage (垃圾/垃圾桶)](#garbage) +62. [genshin_start (原神启动)](#genshin_start) +63. [good_news (喜报)](#good_news) +64. [google (google)](#google) +65. [guichu (鬼畜)](#guichu) +66. [gun (手枪)](#gun) +67. [hammer (锤)](#hammer) +68. [high_EQ (低情商xx高情商xx)](#high_EQ) +69. [hit_screen (打穿/打穿屏幕)](#hit_screen) +70. [hold_grudge (记仇)](#hold_grudge) +71. [hold_tight (抱紧)](#hold_tight) +72. [hug_leg (抱大腿)](#hug_leg) +73. [hutao_bite (胡桃啃)](#hutao_bite) +74. [imprison (坐牢)](#imprison) +75. [incivilization (不文明)](#incivilization) +76. [interview (采访)](#interview) +77. [jiji_king (急急国王)](#jiji_king) +78. [jiujiu (啾啾)](#jiujiu) +79. [kaleidoscope (万花筒/万花镜)](#kaleidoscope) +80. [karyl_point (凯露指)](#karyl_point) +81. [keep_away (远离)](#keep_away) +82. [kick_ball (踢球)](#kick_ball) +83. [kirby_hammer (卡比锤/卡比重锤)](#kirby_hammer) +84. [kiss (亲/亲亲)](#kiss) +85. [klee_eat (可莉吃)](#klee_eat) +86. [knock (敲)](#knock) +87. [learn (偷学)](#learn) +88. [lim_x_0 (等价无穷小)](#lim_x_0) +89. [listen_music (听音乐)](#listen_music) +90. [little_angel (小天使)](#little_angel) +91. [loading (加载中)](#loading) +92. [look_flat (看扁)](#look_flat) +93. [look_this_icon (看图标)](#look_this_icon) +94. [lost_dog (寻狗启事)](#lost_dog) +95. [love_you (永远爱你)](#love_you) +96. [luoyonghao_say (罗永浩说)](#luoyonghao_say) +97. [luxun_say (鲁迅说/鲁迅说过)](#luxun_say) +98. [maikease (麦克阿瑟说)](#maikease) +99. [maimai_awaken (旅行伙伴觉醒)](#maimai_awaken) +100. [maimai_join (旅行伙伴加入)](#maimai_join) +101. [make_friend (交个朋友)](#make_friend) +102. [marriage (结婚申请/结婚登记)](#marriage) +103. [meteor (流星)](#meteor) +104. [mihoyo (米哈游)](#mihoyo) +105. [mourning (上香)](#mourning) +106. [murmur (低语)](#murmur) +107. [my_friend (我朋友说)](#my_friend) +108. [my_wife (我老婆/这是我老婆)](#my_wife) +109. [name_generator (亚文化取名机/亚名)](#name_generator) +110. [need (需要/你可能需要)](#need) +111. [nekoha_holdsign (猫羽雫举牌/猫猫举牌)](#nekoha_holdsign) +112. [nihaosaoa (你好骚啊)](#nihaosaoa) +113. [nijika_holdsign (伊地知虹夏举牌/虹夏举牌)](#nijika_holdsign) +114. [no_response (无响应)](#no_response) +115. [nokia (诺基亚/有内鬼)](#nokia) +116. [not_call_me (不喊我)](#not_call_me) +117. [note_for_leave (请假条)](#note_for_leave) +118. [oshi_no_ko (我推的网友)](#oshi_no_ko) +119. [osu (osu)](#osu) +120. [overtime (加班)](#overtime) +121. [paint (这像画吗)](#paint) +122. [painter (小画家)](#painter) +123. [pass_the_buck (推锅/甩锅)](#pass_the_buck) +124. [pat (拍)](#pat) +125. [perfect (完美)](#perfect) +126. [petpet (摸/摸摸/摸头/rua)](#petpet) +127. [pinch (捏/捏脸)](#pinch) +128. [play (顶/玩)](#play) +129. [play_game (玩游戏)](#play_game) +130. [police (出警)](#police) +131. [police1 (警察)](#police1) +132. [pornhub (ph/pornhub)](#pornhub) +133. [potato (土豆)](#potato) +134. [pound (捣)](#pound) +135. [printing (打印)](#printing) +136. [prpr (舔/舔屏/prpr)](#prpr) +137. [psyduck (可达鸭)](#psyduck) +138. [punch (打拳)](#punch) +139. [qiegewala (切格瓦拉)](#qiegewala) +140. [raise_image (举)](#raise_image) +141. [raise_sign (举牌)](#raise_sign) +142. [read_book (看书)](#read_book) +143. [repeat (复读)](#repeat) +144. [rip (撕)](#rip) +145. [rip_angrily (怒撕)](#rip_angrily) +146. [rise_dead (诈尸/秽土转生)](#rise_dead) +147. [roll (滚)](#roll) +148. [rub (贴/贴贴/蹭/蹭蹭)](#rub) +149. [run (快跑)](#run) +150. [safe_sense (安全感)](#safe_sense) +151. [scratch_head (挠头)](#scratch_head) +152. [scratchcard (刮刮乐)](#scratchcard) +153. [scroll (滚屏)](#scroll) +154. [shishilani (食屎啦你)](#shishilani) +155. [shock (震惊)](#shock) +156. [shuifandui (谁反对)](#shuifandui) +157. [shutup (别说了)](#shutup) +158. [sit_still (坐得住/坐的住)](#sit_still) +159. [slap (一巴掌)](#slap) +160. [slogan (口号)](#slogan) +161. [smash (砸)](#smash) +162. [step_on (踩)](#step_on) +163. [stew (炖)](#stew) +164. [suck (吸/嗦)](#suck) +165. [support (精神支柱)](#support) +166. [symmetric (对称)](#symmetric) +167. [tankuku_raisesign (唐可可举牌)](#tankuku_raisesign) +168. [taunt (嘲讽)](#taunt) +169. [teach (讲课/敲黑板)](#teach) +170. [tease (拿捏/戏弄)](#tease) +171. [telescope (望远镜)](#telescope) +172. [think_what (想什么)](#think_what) +173. [this_chicken (这是鸡/🐔)](#this_chicken) +174. [throw (丢/扔)](#throw) +175. [throw_gif (抛/掷)](#throw_gif) +176. [thump (捶)](#thump) +177. [thump_wildly (捶爆/爆捶)](#thump_wildly) +178. [tightly (紧贴/紧紧贴着)](#tightly) +179. [together (一起)](#together) +180. [tom_tease (汤姆嘲笑)](#tom_tease) +181. [tomb_yeah (上坟/坟前比耶)](#tomb_yeah) +182. [trance (恍惚)](#trance) +183. [turn (转)](#turn) +184. [twist (搓)](#twist) +185. [universal (万能表情/空白表情)](#universal) +186. [vibrate (震动)](#vibrate) +187. [wakeup (xx起来了)](#wakeup) +188. [wallpaper (墙纸)](#wallpaper) +189. [walnut_pad (胡桃平板)](#walnut_pad) +190. [walnut_zoom (胡桃放大)](#walnut_zoom) +191. [wangjingze (王境泽)](#wangjingze) +192. [washer (洗衣机)](#washer) +193. [wave (波纹)](#wave) +194. [weisuoyuwei (为所欲为)](#weisuoyuwei) +195. [what_I_want_to_do (我想上的)](#what_I_want_to_do) +196. [what_he_wants (最想要的东西)](#what_he_wants) +197. [why_at_me (为什么@我)](#why_at_me) +198. [why_have_hands (为什么要有手)](#why_have_hands) +199. [windmill_turn (风车转)](#windmill_turn) +200. [wish_fail (许愿失败)](#wish_fail) +201. [wooden_fish (木鱼)](#wooden_fish) +202. [worship (膜/膜拜)](#worship) +203. [wujing (吴京xx中国xx)](#wujing) +204. [wunian (五年怎么过的)](#wunian) +205. [yalidaye (压力大爷)](#yalidaye) +206. [youtube (yt/youtube)](#youtube) +207. [zengxiaoxian (曾小贤)](#zengxiaoxian) ## 5000choyen @@ -404,6 +418,17 @@ options: +## bluearchive + +- 关键词:`蔚蓝档案标题`、`batitle` +- 需要图片数目:`0` +- 需要文字数目:`2` +- 默认文字:[`Blue`, `Archive`] +- 预览: +
+ +
+ ## bocchi_draft - 关键词:`波奇手稿` @@ -546,6 +571,31 @@ options: +## certificate + +- 关键词:`奖状`、`证书` +- 需要图片数目:`0` +- 需要文字数目:`3` ~ `4` +- 默认文字:[`小王`, `优秀学生`, `一年一班`] +- 其他参数: + - `time` + - 描述:指定时间 + - 类型:`string` + - 默认值:`` +- 其他参数(命令行选项): +```shell +usage: meme generate certificate [-h] [-t TIME] + +options: + -h, --help show this help message and exit + -t TIME, --time TIME 指定时间 +``` + +- 预览: +
+ +
+ ## chanshenzi - 关键词:`馋身子` @@ -587,6 +637,36 @@ options: +## clown + +- 关键词:`小丑` +- 需要图片数目:`1` +- 需要文字数目:`0` +- 其他参数: + - `person` + - 描述:是否使用爷爷头轮廓 + - 类型:`boolean` + - 默认值:`False` +- 其他参数(命令行选项): +```shell +usage: meme generate clown [-h] [--person] + +options: + -h, --help show this help message and exit + --person, /爷 是否使用爷爷头轮廓 +``` + +- 预览: +> 参数:{"person":false} +
+ +
+ +> 参数:{"person":true} +
+ +
+ ## confuse - 关键词:`迷惑` @@ -652,6 +732,16 @@ options: +## daynight + +- 关键词:`白天黑夜`、`白天晚上` +- 需要图片数目:`2` +- 需要文字数目:`0` +- 预览: +
+ +
+ ## decent_kiss - 关键词:`像样的亲亲` @@ -703,6 +793,36 @@ options: +## dog_dislike + +- 关键词:`狗都不玩` +- 需要图片数目:`1` +- 需要文字数目:`0` +- 其他参数: + - `circle` + - 描述:是否将图片变为圆形 + - 类型:`boolean` + - 默认值:`False` +- 其他参数(命令行选项): +```shell +usage: meme generate dog_dislike [-h] [--circle] + +options: + -h, --help show this help message and exit + --circle, /圆 是否将图片变为圆形 +``` + +- 预览: +> 参数:{"circle":false} +
+ +
+ +> 参数:{"circle":true} +
+ +
+ ## dog_of_vtb - 关键词:`管人痴` @@ -818,6 +938,16 @@ options: +## frieren_take + +- 关键词:`芙莉莲拿` +- 需要图片数目:`1` +- 需要文字数目:`0` +- 预览: +
+ +
+ ## funny_mirror - 关键词:`哈哈镜` @@ -1316,6 +1446,16 @@ options: +## lost_dog + +- 关键词:`寻狗启事` +- 需要图片数目:`1` +- 需要文字数目:`0` +- 预览: +
+ +
+ ## love_you - 关键词:`永远爱你` @@ -1725,6 +1865,16 @@ options: +## pinch + +- 关键词:`捏`、`捏脸` +- 需要图片数目:`1` +- 需要文字数目:`0` +- 预览: +
+ +
+ ## play - 关键词:`顶`、`玩` @@ -1874,7 +2024,7 @@ options: - 关键词:`看书` - 需要图片数目:`1` -- 需要文字数目:`0` +- 需要文字数目:`0` ~ `1` - 预览:
@@ -2090,6 +2240,16 @@ options:
+## stew + +- 关键词:`炖` +- 需要图片数目:`1` +- 需要文字数目:`0` ~ `1` +- 预览: +
+ +
+ ## suck - 关键词:`吸`、`嗦` @@ -2198,6 +2358,16 @@ options: +## telescope + +- 关键词:`望远镜` +- 需要图片数目:`1` +- 需要文字数目:`0` +- 预览: +
+ +
+ ## think_what - 关键词:`想什么` @@ -2208,6 +2378,17 @@ options: +## this_chicken + +- 关键词:`这是鸡`、`🐔` +- 需要图片数目:`1` +- 需要文字数目:`0` ~ `1` +- 默认文字:[`这是十二生肖中的鸡`] +- 预览: +
+ +
+ ## throw - 关键词:`丢`、`扔` @@ -2268,6 +2449,26 @@ options: +## tom_tease + +- 关键词:`汤姆嘲笑` +- 需要图片数目:`1` +- 需要文字数目:`0` +- 预览: +
+ +
+ +## tomb_yeah + +- 关键词:`上坟`、`坟前比耶` +- 需要图片数目:`1` ~ `2` +- 需要文字数目:`0` +- 预览: +
+ +
+ ## trance - 关键词:`恍惚` @@ -2372,6 +2573,16 @@ options: +## washer + +- 关键词:`洗衣机` +- 需要图片数目:`1` +- 需要文字数目:`0` +- 预览: +
+ +
+ ## wave - 关键词:`波纹` diff --git a/meme_generator/cli.py b/meme_generator/cli.py index d3398b3ed1edaeba7bf4df106f00ce509c7c364e..3b87b432f4071b659857c33c520bd6a3dcd8bccc 100644 --- a/meme_generator/cli.py +++ b/meme_generator/cli.py @@ -166,15 +166,15 @@ def main(): handle = str(args.handle) if handle in ["list", "ls"]: - print(list_memes()) + print(list_memes()) # noqa: T201 elif handle in ["info", "show"]: key = str(args.key) - print(meme_info(key)) + print(meme_info(key)) # noqa: T201 elif handle in ["preview"]: key = str(args.key) - print(generate_meme_preview(key)) + print(generate_meme_preview(key)) # noqa: T201 elif handle in ["generate", "make"]: kwargs = vars(args) @@ -182,7 +182,7 @@ def main(): key: str = kwargs.pop("key") images: List[str] = kwargs.pop("images") texts: List[str] = kwargs.pop("texts") - print(generate_meme(key, images, texts, kwargs)) + print(generate_meme(key, images, texts, kwargs)) # noqa: T201 elif handle in ["run", "start"]: run_server() @@ -193,7 +193,7 @@ def main(): loop.run_until_complete(check_resources()) else: - print(parser.format_help()) + print(parser.format_help()) # noqa: T201 if __name__ == "__main__": diff --git a/meme_generator/config.py b/meme_generator/config.py index cc78bb2fa342e0cebb2a60db5388f51b791ab241..b361c9ab02c8142b80b2d2bd6a2289b33e058122 100644 --- a/meme_generator/config.py +++ b/meme_generator/config.py @@ -41,7 +41,7 @@ class TranslatorConfig(BaseModel): class ServerConfig(BaseModel): host: str = "127.0.0.1" - port: int = 7860 + port: int = 2233 class LogConfig(BaseModel): diff --git a/meme_generator/memes/certificate/__init__.py b/meme_generator/memes/certificate/__init__.py index 234ee250c16710b93e50af43e1946e25fd1194a1..c93148311bf7590c90a350a9ea5c11ede7446557 100644 --- a/meme_generator/memes/certificate/__init__.py +++ b/meme_generator/memes/certificate/__init__.py @@ -72,22 +72,25 @@ def certificate(images, texts: List[str], args: Model): raise TextOverLength(texts[3]) frame.draw_text( - (1565, 1527), + (1565, 1525, 1700, 1600), f"{time.year:04d}", allow_wrap=False, - fontsize=60, + max_fontsize=60, + min_fontsize=40, ) frame.draw_text( - (1752, 1527), + (1752, 1525, 1816, 1600), f"{time.month:02d}", allow_wrap=False, - fontsize=60, + max_fontsize=60, + min_fontsize=40, ) frame.draw_text( - (1865, 1527), + (1865, 1525, 1930, 1600), f"{time.day:02d}", allow_wrap=False, - fontsize=60, + max_fontsize=60, + min_fontsize=40, ) return frame.save_png() @@ -98,11 +101,7 @@ add_meme( certificate, min_texts=3, max_texts=4, - default_texts=[ - "小王", - "优秀学生", - "一年一班", - ], + default_texts=["小王", "优秀学生", "一年一班"], args_type=MemeArgsType(parser, Model), keywords=["奖状", "证书"], ) diff --git a/meme_generator/memes/frieren_take/__init__.py b/meme_generator/memes/frieren_take/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..82376333f8a3fda2ea07ca1995e05d9d58cd1669 --- /dev/null +++ b/meme_generator/memes/frieren_take/__init__.py @@ -0,0 +1,22 @@ +from pathlib import Path +from typing import List + +from pil_utils import BuildImage + +from meme_generator import add_meme +from meme_generator.utils import make_jpg_or_gif + +img_dir = Path(__file__).parent / "images" + + +def frieren_take(images: List[BuildImage], texts, args): + frame = BuildImage.open(img_dir / "0.png") + + def make(img: BuildImage) -> BuildImage: + img = img.convert("RGBA").resize((102, 108), keep_ratio=True) + return frame.copy().paste(img, (130, 197), below=True) + + return make_jpg_or_gif(images[0], make) + + +add_meme("frieren_take", frieren_take, min_images=1, max_images=1, keywords=["芙莉莲拿"]) diff --git a/meme_generator/memes/frieren_take/images/0.png b/meme_generator/memes/frieren_take/images/0.png new file mode 100644 index 0000000000000000000000000000000000000000..8a7921a0d9f36bb7bc40210157a6aa547a0c11c9 --- /dev/null +++ b/meme_generator/memes/frieren_take/images/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a5b838ca9bbe806a0862f61baf0585f25a4c8f660e1ac66b294d90cf20cff22 +size 556437 diff --git a/meme_generator/memes/lost_dog/__init__.py b/meme_generator/memes/lost_dog/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..12ea3c4e49f0ecc47ea12d02d1d482dcb927ff4c --- /dev/null +++ b/meme_generator/memes/lost_dog/__init__.py @@ -0,0 +1,39 @@ +import math +from pathlib import Path +from typing import List + +from pil_utils import BuildImage + +from meme_generator import add_meme + +img_dir = Path(__file__).parent / "images" + + +def lost_dog(images: List[BuildImage], texts, args): + k = 2 + w_ = 663 * k + w = 540 * k + h = 540 * k + r = 466 * k + img = images[0].convert("RGBA").resize((w_, h), keep_ratio=True) + img_new = BuildImage.new("RGBA", (w, h)) + for x in range(w): + for y in range(h): + theta = math.asin(abs(x - w / 2) / r) + x_ = round(w_ / 2 + (x - w / 2) / math.cos(theta)) + y_ = round(h / 2 + (y - h / 2) / math.cos(theta)) + if 0 <= x_ < w_ and 0 <= y_ < h: + img_new.image.putpixel((x, y), img.image.getpixel((x_, y_))) + img_new = img_new.resize((w // k, h // k)) + frame = BuildImage.open(img_dir / "0.png") + frame.paste(img_new, (295, 165), below=True) + return frame.save_jpg() + + +add_meme( + "lost_dog", + lost_dog, + min_images=1, + max_images=1, + keywords=["寻狗启事"], +) diff --git a/meme_generator/memes/lost_dog/images/0.png b/meme_generator/memes/lost_dog/images/0.png new file mode 100644 index 0000000000000000000000000000000000000000..f6aba4e6e7d258644a79ac5cf28629885667daad --- /dev/null +++ b/meme_generator/memes/lost_dog/images/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5669c59c949284e9fdb71a1c0ea9c1de5385937bd690257606fe3518c38cdfc8 +size 368353 diff --git a/meme_generator/memes/stew/__init__.py b/meme_generator/memes/stew/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..179b2d1a31dc5c31a3d86e9ad9fc7f6c2627d97f --- /dev/null +++ b/meme_generator/memes/stew/__init__.py @@ -0,0 +1,44 @@ +from pathlib import Path +from typing import List + +from pil_utils import BuildImage + +from meme_generator import MemeArgsModel, add_meme +from meme_generator.exception import TextOverLength +from meme_generator.utils import make_jpg_or_gif + +img_dir = Path(__file__).parent / "images" + + +def stew(images: List[BuildImage], texts: List[str], args: MemeArgsModel): + name = texts[0] if texts else args.user_infos[0].name if args.user_infos else "群友" + text = f"生活不易,炖{name}出气" + + frame = BuildImage.open(img_dir / "0.png") + try: + frame.draw_text( + (2, frame.height - 30, frame.width - 2, frame.height), + text, + max_fontsize=30, + min_fontsize=6, + lines_align="center", + ) + except ValueError: + raise TextOverLength(name) + + def make(img: BuildImage) -> BuildImage: + img = img.convert("RGBA").resize((181, 154), keep_ratio=True) + return frame.copy().paste(img, (9, -2), below=True) + + return make_jpg_or_gif(images[0], make) + + +add_meme( + "stew", + stew, + min_images=1, + max_images=1, + min_texts=0, + max_texts=1, + keywords=["炖"], +) diff --git a/meme_generator/memes/stew/images/0.png b/meme_generator/memes/stew/images/0.png new file mode 100644 index 0000000000000000000000000000000000000000..7cf7d32f03fc3f33f8941633c46cc9dc6fda595b --- /dev/null +++ b/meme_generator/memes/stew/images/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3680aa48ca8ed223c073e5f2b67d4477d07c52c4d4e47accc1b3d678a0cba3bc +size 12422 diff --git a/meme_generator/memes/telescope/__init__.py b/meme_generator/memes/telescope/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..a9e0e399ea418fed8b24c4833958af7cd6efbef7 --- /dev/null +++ b/meme_generator/memes/telescope/__init__.py @@ -0,0 +1,44 @@ +from pathlib import Path +from typing import List + +from pil_utils import BuildImage + +from meme_generator import add_meme +from meme_generator.utils import FrameAlignPolicy, Maker, make_gif_or_combined_gif + +img_dir = Path(__file__).parent / "images" + + +def telescope(images: List[BuildImage], texts, args): + def maker(i: int) -> Maker: + def make(img: BuildImage) -> BuildImage: + img = img.convert("RGBA").square() + img_big = img.resize((600, 600)) + img_small = img.resize((230, 230)) + frame = BuildImage.open(img_dir / f"{i}.png") + if 4 <= i < 18: + x = -167 + (i - 4) * 4 + y = -361 + (i - 4) * 7 + frame.paste(img_big, (x, y), below=True) + elif 23 <= i < 38: + x = -90 + (i - 23) * 5 + y = -245 + (i - 23) * 5 + frame.paste(img_big, (x, y), below=True) + elif 43 <= i < 46: + x = -15 + y = -210 + frame.paste(img_big, (x, y), below=True) + elif 46 <= i < 57: + x = 8 + y = -21 + frame.paste(img_small, (x, y), below=True) + return frame + + return make + + return make_gif_or_combined_gif( + images[0], maker, 69, 0.1, FrameAlignPolicy.extend_first + ) + + +add_meme("telescope", telescope, min_images=1, max_images=1, keywords=["望远镜"]) diff --git a/meme_generator/memes/telescope/images/0.png b/meme_generator/memes/telescope/images/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3fd485d548b3d17bd94da3b50fba3609ceec48ae --- /dev/null +++ b/meme_generator/memes/telescope/images/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54acf1431db203117a8003557e57158ad9f2bf52a4fe0ddef7acd6703fb349b1 +size 38968 diff --git a/meme_generator/memes/telescope/images/1.png b/meme_generator/memes/telescope/images/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b4dcb29846086690890c4461a83a3b1e89d6fb86 --- /dev/null +++ b/meme_generator/memes/telescope/images/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69e8f740bf9f331d5bef627e2a5b73af1a6bf8f03ebd87f98e4a51de23081773 +size 38978 diff --git a/meme_generator/memes/telescope/images/10.png b/meme_generator/memes/telescope/images/10.png new file mode 100644 index 0000000000000000000000000000000000000000..35a174169c2406326cdbdfe18382c9b550cef0c7 --- /dev/null +++ b/meme_generator/memes/telescope/images/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b53aa2c4d6b1669801fbd0b85f407bb95ed32f4fa99535b7b0e0f7617ef1ab20 +size 9243 diff --git a/meme_generator/memes/telescope/images/11.png b/meme_generator/memes/telescope/images/11.png new file mode 100644 index 0000000000000000000000000000000000000000..bf255ecdbe1bbb2c197d1b5d46163c661d2e6054 --- /dev/null +++ b/meme_generator/memes/telescope/images/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d440bf1b965d267f8bd1370d7870a2f40338d99cc8476549dc4db967fb230d5 +size 9198 diff --git a/meme_generator/memes/telescope/images/12.png b/meme_generator/memes/telescope/images/12.png new file mode 100644 index 0000000000000000000000000000000000000000..0c1175c22f5c2ab88e45ef2a32b1edd1f0eff7bd --- /dev/null +++ b/meme_generator/memes/telescope/images/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f458b1a3feb2311070e734715df1f6d1bb5e78c1a21c82ab83cdfc739f01b5a +size 9198 diff --git a/meme_generator/memes/telescope/images/13.png b/meme_generator/memes/telescope/images/13.png new file mode 100644 index 0000000000000000000000000000000000000000..7d10c11b961429bc568f78ef09be0cedb9c56326 --- /dev/null +++ b/meme_generator/memes/telescope/images/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f86706c85fb6a937ed0968033826690055430a3d102b8414c495a59dfdaace3b +size 9267 diff --git a/meme_generator/memes/telescope/images/14.png b/meme_generator/memes/telescope/images/14.png new file mode 100644 index 0000000000000000000000000000000000000000..68d8b314d60327a6cf29ceb245c22c12a6b4b5d2 --- /dev/null +++ b/meme_generator/memes/telescope/images/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4cf5e9e8868f4a04e0600fbf54147d1b7ee2dec1e38b163014d1a38f108c45c +size 9311 diff --git a/meme_generator/memes/telescope/images/15.png b/meme_generator/memes/telescope/images/15.png new file mode 100644 index 0000000000000000000000000000000000000000..12e283ef6305ca495721481a387f663f41f5caa4 --- /dev/null +++ b/meme_generator/memes/telescope/images/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed781c192823293aba64b122d0497d234280e23e832fdb2f9ba3dba4f5043be7 +size 9369 diff --git a/meme_generator/memes/telescope/images/16.png b/meme_generator/memes/telescope/images/16.png new file mode 100644 index 0000000000000000000000000000000000000000..6c4451a937c3241cd4c2276791c48ef6c7290340 --- /dev/null +++ b/meme_generator/memes/telescope/images/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f12e3d767af83e57b46b8a79bd10b2f9536ba92881df0c5030e2f25ef5c34f61 +size 9400 diff --git a/meme_generator/memes/telescope/images/17.png b/meme_generator/memes/telescope/images/17.png new file mode 100644 index 0000000000000000000000000000000000000000..c53b01a679c97676d3e969c4eab69bf6a55ff1b6 --- /dev/null +++ b/meme_generator/memes/telescope/images/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e02a3a90c729b47110276c4623c9db226d2ceec023c98be270a302f9866579d2 +size 9377 diff --git a/meme_generator/memes/telescope/images/18.png b/meme_generator/memes/telescope/images/18.png new file mode 100644 index 0000000000000000000000000000000000000000..69886d3266359ebc6f14b038d08c826c09950bdc --- /dev/null +++ b/meme_generator/memes/telescope/images/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:373b0a8e3c8cbe524c7a9008604097e0e49486c3faf61c6242c1aee8c5591456 +size 39922 diff --git a/meme_generator/memes/telescope/images/19.png b/meme_generator/memes/telescope/images/19.png new file mode 100644 index 0000000000000000000000000000000000000000..18460b3d96f8c9bc0a96908ba6f57b5b5f908a19 --- /dev/null +++ b/meme_generator/memes/telescope/images/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67132a335a13ae1322c2105e82b5b100d3a91748d2d21ec4b1512940aa3c98c7 +size 39472 diff --git a/meme_generator/memes/telescope/images/2.png b/meme_generator/memes/telescope/images/2.png new file mode 100644 index 0000000000000000000000000000000000000000..2d4f01f42e13bc8f856e367e36da0b8f0f0f61eb --- /dev/null +++ b/meme_generator/memes/telescope/images/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff8bd318f837ea0ca09415fe9db28db525262e0a2ce159b1fb644581ead817f5 +size 39785 diff --git a/meme_generator/memes/telescope/images/20.png b/meme_generator/memes/telescope/images/20.png new file mode 100644 index 0000000000000000000000000000000000000000..ad0a3f17d47e70ea0e8ca49876c7111909791bd2 --- /dev/null +++ b/meme_generator/memes/telescope/images/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5f242ad660c86daed77a1b9cce58a8dbf65b1ef73ca700cc483eb72b7f537e3 +size 39830 diff --git a/meme_generator/memes/telescope/images/21.png b/meme_generator/memes/telescope/images/21.png new file mode 100644 index 0000000000000000000000000000000000000000..3c8bc7e01c92f28cc1941ce10e62c0a3339cb40c --- /dev/null +++ b/meme_generator/memes/telescope/images/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6d25e3f432d825d06263c3d920baef71a60823c48192f8fa95ba0964604842a +size 39924 diff --git a/meme_generator/memes/telescope/images/22.png b/meme_generator/memes/telescope/images/22.png new file mode 100644 index 0000000000000000000000000000000000000000..1022ffd8fd659837e131e58f5102b922592e36b7 --- /dev/null +++ b/meme_generator/memes/telescope/images/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce2aaca5e1709c151994e05c6e677a270a843e60b84a19a66570ae159fcb43b1 +size 39969 diff --git a/meme_generator/memes/telescope/images/23.png b/meme_generator/memes/telescope/images/23.png new file mode 100644 index 0000000000000000000000000000000000000000..455e2f15ac0c077913801cb93d155cd38085747d --- /dev/null +++ b/meme_generator/memes/telescope/images/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcbc0bb3f3e4a65527632174d8aaa9c5e8363fff2fde8b2a572580ac97dcc32a +size 9731 diff --git a/meme_generator/memes/telescope/images/24.png b/meme_generator/memes/telescope/images/24.png new file mode 100644 index 0000000000000000000000000000000000000000..5378efbc7f21e7d16fae5b547b7fca2d81bcd8fc --- /dev/null +++ b/meme_generator/memes/telescope/images/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57f0efd3849200f4eae7a9de940c3d9bf2e21c4947b25ae8232e68260d78baab +size 9603 diff --git a/meme_generator/memes/telescope/images/25.png b/meme_generator/memes/telescope/images/25.png new file mode 100644 index 0000000000000000000000000000000000000000..732e81e8d12d99e42a60de873a03962168e2364b --- /dev/null +++ b/meme_generator/memes/telescope/images/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:421a7986dcda824712ff725cd1287169806bca5985d8eba34b800692714b173b +size 9813 diff --git a/meme_generator/memes/telescope/images/26.png b/meme_generator/memes/telescope/images/26.png new file mode 100644 index 0000000000000000000000000000000000000000..48bc3685a041a13bfe2e1930880a76a068c245c5 --- /dev/null +++ b/meme_generator/memes/telescope/images/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a093eae5de95ccae5a00ddb75a9bbc7477c7e4fad18eb79d74d7a1411f4bcde2 +size 9634 diff --git a/meme_generator/memes/telescope/images/27.png b/meme_generator/memes/telescope/images/27.png new file mode 100644 index 0000000000000000000000000000000000000000..18074a8f37c61e066d17a8097ada18d95a2b9224 --- /dev/null +++ b/meme_generator/memes/telescope/images/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:818ffa721cb3534962754afba5d0b602e161d7a564d1bad8c5ade0b80ab812ad +size 9789 diff --git a/meme_generator/memes/telescope/images/28.png b/meme_generator/memes/telescope/images/28.png new file mode 100644 index 0000000000000000000000000000000000000000..693af96ab4f0820ec6cbd7d863523c9e984f129c --- /dev/null +++ b/meme_generator/memes/telescope/images/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d9993cc35481b698937b28cbca117c70431b64aacfce4b38e6d08f63975960a +size 9615 diff --git a/meme_generator/memes/telescope/images/29.png b/meme_generator/memes/telescope/images/29.png new file mode 100644 index 0000000000000000000000000000000000000000..e201a2cef2126490ad2d005f72c486fa8344abb6 --- /dev/null +++ b/meme_generator/memes/telescope/images/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfdb9017a0d446bd2540eb950fa4e074876035d33b104bdf413bdadd530f9185 +size 9624 diff --git a/meme_generator/memes/telescope/images/3.png b/meme_generator/memes/telescope/images/3.png new file mode 100644 index 0000000000000000000000000000000000000000..8dc162ea700ce756b2ff8931256fd15a94a0ad25 --- /dev/null +++ b/meme_generator/memes/telescope/images/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6ae42cf050af5d87c7c63d9aa5431cbd71bbaa82edbfb212c3d2e72607c3b80 +size 41633 diff --git a/meme_generator/memes/telescope/images/30.png b/meme_generator/memes/telescope/images/30.png new file mode 100644 index 0000000000000000000000000000000000000000..b6e49c2cef9c25682078bf87706b17720f7c97ac --- /dev/null +++ b/meme_generator/memes/telescope/images/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d72eb1f64e258c311672a61e333e96f338e734272d15564b26ccac077c27495d +size 9520 diff --git a/meme_generator/memes/telescope/images/31.png b/meme_generator/memes/telescope/images/31.png new file mode 100644 index 0000000000000000000000000000000000000000..afb58bf47717ee8512c620fd3f5ca088284b145b --- /dev/null +++ b/meme_generator/memes/telescope/images/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1df1a6ee95dff71a9a8ff941793d308db7a56154ac8a1e1ee179f550cde51498 +size 9579 diff --git a/meme_generator/memes/telescope/images/32.png b/meme_generator/memes/telescope/images/32.png new file mode 100644 index 0000000000000000000000000000000000000000..cb46346f86ada00c3250b4b7d3ee4fefc2d9a9a5 --- /dev/null +++ b/meme_generator/memes/telescope/images/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a2d3d902532f06ecb48863ee96dfebe0472c4d1a79bcccc8186f0f297ca887b +size 9546 diff --git a/meme_generator/memes/telescope/images/33.png b/meme_generator/memes/telescope/images/33.png new file mode 100644 index 0000000000000000000000000000000000000000..d0e229f1fb44bbfc14e1168a7f37495ca0521980 --- /dev/null +++ b/meme_generator/memes/telescope/images/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:232db4b64c2aab3ec2ddc76f7773c4bc083d29558add537715b81779e003cc06 +size 9545 diff --git a/meme_generator/memes/telescope/images/34.png b/meme_generator/memes/telescope/images/34.png new file mode 100644 index 0000000000000000000000000000000000000000..7743a7a7cd8b4610ed158418a96bcdc82513a19a --- /dev/null +++ b/meme_generator/memes/telescope/images/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1963d0759c043631a4d5faf3db0e54753794379e10241c824fc4f96ba337e039 +size 9501 diff --git a/meme_generator/memes/telescope/images/35.png b/meme_generator/memes/telescope/images/35.png new file mode 100644 index 0000000000000000000000000000000000000000..77f49f5cdf1cec0f7db6a58b460da639376bb728 --- /dev/null +++ b/meme_generator/memes/telescope/images/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2066f23acb641d10ed862619aaa572ce037aa8e3a5e75b411da68c38cf676fa8 +size 9597 diff --git a/meme_generator/memes/telescope/images/36.png b/meme_generator/memes/telescope/images/36.png new file mode 100644 index 0000000000000000000000000000000000000000..63dc4de0a755416fbb65b258c6f2b35954226cf2 --- /dev/null +++ b/meme_generator/memes/telescope/images/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5be04aeaa50b781fe815e404e9eacc927697a5f7ead721a6f7c55bc7f0845362 +size 9612 diff --git a/meme_generator/memes/telescope/images/37.png b/meme_generator/memes/telescope/images/37.png new file mode 100644 index 0000000000000000000000000000000000000000..8a79fde951fe3073bad186162fc3851f2e5c2424 --- /dev/null +++ b/meme_generator/memes/telescope/images/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee1850990cf8ef1de1a3fe225f9032d090bf014981c23da3b8ecd3f136b0db9f +size 9678 diff --git a/meme_generator/memes/telescope/images/38.png b/meme_generator/memes/telescope/images/38.png new file mode 100644 index 0000000000000000000000000000000000000000..758963b8e956dc44e331bbd95ae4ee2605a14f57 --- /dev/null +++ b/meme_generator/memes/telescope/images/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22f4b570b2a64edda6bc2914cf8851bbe85c48becd061188af52ee0cd1bb5aa +size 36848 diff --git a/meme_generator/memes/telescope/images/39.png b/meme_generator/memes/telescope/images/39.png new file mode 100644 index 0000000000000000000000000000000000000000..a52a72b1b944c8f4295860202e21236aadb7d53e --- /dev/null +++ b/meme_generator/memes/telescope/images/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c63fcb6380b63f421868c8eda2df3c187912f9624468887c4f80f7cd6c063855 +size 38138 diff --git a/meme_generator/memes/telescope/images/4.png b/meme_generator/memes/telescope/images/4.png new file mode 100644 index 0000000000000000000000000000000000000000..4fe259dba0603641d3054332e9870d232872c4ca --- /dev/null +++ b/meme_generator/memes/telescope/images/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f378cbba77c41bc13ab7ad33ce016afdb850de227f351cbbc6fe8f04782c170f +size 9200 diff --git a/meme_generator/memes/telescope/images/40.png b/meme_generator/memes/telescope/images/40.png new file mode 100644 index 0000000000000000000000000000000000000000..d88b4660175891c9832ce6340ba2a848ec375d1d --- /dev/null +++ b/meme_generator/memes/telescope/images/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:862c27e6bc8b5b027b45d25aedccf5861164dab0b110dc8df6a7ba08e6839319 +size 39184 diff --git a/meme_generator/memes/telescope/images/41.png b/meme_generator/memes/telescope/images/41.png new file mode 100644 index 0000000000000000000000000000000000000000..1a8c02b019db3b3f580f3d4d174bc1b87b735a3e --- /dev/null +++ b/meme_generator/memes/telescope/images/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a244d6f2e8b62bba3abab426a034a6603a8e0fbe31c4c07184e3e8a6af4bc598 +size 39331 diff --git a/meme_generator/memes/telescope/images/42.png b/meme_generator/memes/telescope/images/42.png new file mode 100644 index 0000000000000000000000000000000000000000..4a0b71426f397cc836a0b4636bd1ce1c7efb999d --- /dev/null +++ b/meme_generator/memes/telescope/images/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73e4023bece51bee1a6e4499003d54ceaa4eeeaf39622d57036e888e77a988c1 +size 39288 diff --git a/meme_generator/memes/telescope/images/43.png b/meme_generator/memes/telescope/images/43.png new file mode 100644 index 0000000000000000000000000000000000000000..abcdde20b7544d15b562ca59f5a4a5c8276220dc --- /dev/null +++ b/meme_generator/memes/telescope/images/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bb3c319ac7f415994625e0aec1bb60aa8ea798a735c40e050de4b7ebb94f7da +size 9595 diff --git a/meme_generator/memes/telescope/images/44.png b/meme_generator/memes/telescope/images/44.png new file mode 100644 index 0000000000000000000000000000000000000000..83a5153b83b21ca8524c18ecc51fc8a26fc660dc --- /dev/null +++ b/meme_generator/memes/telescope/images/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3314ac794dce55b24d1a89f65b6e9d70b48f2cb44a16f2a07c95cdf4c6b4a398 +size 9480 diff --git a/meme_generator/memes/telescope/images/45.png b/meme_generator/memes/telescope/images/45.png new file mode 100644 index 0000000000000000000000000000000000000000..dd546196a21e1be8ad69ee22200c538229f2e699 --- /dev/null +++ b/meme_generator/memes/telescope/images/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fc2edb2aecc924fea88ab724fc2c992eae21a9296a7baaded72a42ba8158902 +size 9356 diff --git a/meme_generator/memes/telescope/images/46.png b/meme_generator/memes/telescope/images/46.png new file mode 100644 index 0000000000000000000000000000000000000000..37a767290730c4ef9a54be2b167c85d526f62688 --- /dev/null +++ b/meme_generator/memes/telescope/images/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69e6b477255eb5b99bc64456b9ae687613e9693be100eb9f286ca027b1db1285 +size 9456 diff --git a/meme_generator/memes/telescope/images/47.png b/meme_generator/memes/telescope/images/47.png new file mode 100644 index 0000000000000000000000000000000000000000..38639dc032718cd1c0e100fea190dc31ce35260d --- /dev/null +++ b/meme_generator/memes/telescope/images/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0aa29d97c1c70d18103cf95ea7f87aba3dbd7019b5f127d0a707350879e97b7 +size 9454 diff --git a/meme_generator/memes/telescope/images/48.png b/meme_generator/memes/telescope/images/48.png new file mode 100644 index 0000000000000000000000000000000000000000..7666ad285e990d7b16f8ced0d7c8ce83ac23e219 --- /dev/null +++ b/meme_generator/memes/telescope/images/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f77e546a37160a6b8d6836e85c7f4b80452365e8c8d1b458bac4b028409af9c +size 9509 diff --git a/meme_generator/memes/telescope/images/49.png b/meme_generator/memes/telescope/images/49.png new file mode 100644 index 0000000000000000000000000000000000000000..8c95fcdd8580b83b2ba6b4ecfd01977323d4a8f5 --- /dev/null +++ b/meme_generator/memes/telescope/images/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d94bcaa7f28205ba87fe532d2d9f4b5bcd5771e22addd445e1b3224191128ed +size 9344 diff --git a/meme_generator/memes/telescope/images/5.png b/meme_generator/memes/telescope/images/5.png new file mode 100644 index 0000000000000000000000000000000000000000..253ea1bc93a4c90d9e7ccc08f651643902bac4fa --- /dev/null +++ b/meme_generator/memes/telescope/images/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33023b3ffb15aac9826aaef72da4e3d992b785dfbb61cc76c03f19939b59de02 +size 9740 diff --git a/meme_generator/memes/telescope/images/50.png b/meme_generator/memes/telescope/images/50.png new file mode 100644 index 0000000000000000000000000000000000000000..05f2a913eee59b01e2004b9fb87bf6c4d5e38296 --- /dev/null +++ b/meme_generator/memes/telescope/images/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cc13b97ebbe311d355947d28bd4b445ca231715a8f29adce7e7471fb1f9b478 +size 9465 diff --git a/meme_generator/memes/telescope/images/51.png b/meme_generator/memes/telescope/images/51.png new file mode 100644 index 0000000000000000000000000000000000000000..0e27c5ad28761c671fa2dac1e005c764970b1815 --- /dev/null +++ b/meme_generator/memes/telescope/images/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c363febae346a3c6e0df0f18aaf2603c1be41098bf54d171c85f77faf3af3129 +size 9469 diff --git a/meme_generator/memes/telescope/images/52.png b/meme_generator/memes/telescope/images/52.png new file mode 100644 index 0000000000000000000000000000000000000000..02c0ebde31a24f22a62227afe9827b749968789a --- /dev/null +++ b/meme_generator/memes/telescope/images/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71ab9ec4e4e8bdbb5ea793926e16ce8961727261bae5c900def57960d82f25b7 +size 9531 diff --git a/meme_generator/memes/telescope/images/53.png b/meme_generator/memes/telescope/images/53.png new file mode 100644 index 0000000000000000000000000000000000000000..ec5c7d8e8205e1c7a103d798a660c09f79d9945b --- /dev/null +++ b/meme_generator/memes/telescope/images/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13ff2fbc1e0fd9b3b0d288ffd7de08dbb9acf8e0b8f3152e02c884f8c7668fb +size 9445 diff --git a/meme_generator/memes/telescope/images/54.png b/meme_generator/memes/telescope/images/54.png new file mode 100644 index 0000000000000000000000000000000000000000..eaf0e108d47e3ad72d7a1c65b3df66e808304e40 --- /dev/null +++ b/meme_generator/memes/telescope/images/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de5fde98c1a026979fcace57171bdf844e9da2ee9e0f6aaf2da19d565f64b932 +size 9379 diff --git a/meme_generator/memes/telescope/images/55.png b/meme_generator/memes/telescope/images/55.png new file mode 100644 index 0000000000000000000000000000000000000000..50b9f9bac08fbd19287c3642278433c6c67fa6bd --- /dev/null +++ b/meme_generator/memes/telescope/images/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb64f568202cf80ef21b0e26547cc2c99d9c09b3f9d4f18dc3251f324c13294 +size 9381 diff --git a/meme_generator/memes/telescope/images/56.png b/meme_generator/memes/telescope/images/56.png new file mode 100644 index 0000000000000000000000000000000000000000..882773251c5f6b0a05297f8af96ea1971da53716 --- /dev/null +++ b/meme_generator/memes/telescope/images/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6fe994be1172354271adf57c2ea5503bd145dafeca511261c5a3752d19cb02d +size 9321 diff --git a/meme_generator/memes/telescope/images/57.png b/meme_generator/memes/telescope/images/57.png new file mode 100644 index 0000000000000000000000000000000000000000..db052bd4b18237604c5dc0f51095a004584a07b1 --- /dev/null +++ b/meme_generator/memes/telescope/images/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991a0d62115731219d8d2cac2a29d931f0efd20b2c457d858dc548e2a99a2cde +size 32481 diff --git a/meme_generator/memes/telescope/images/58.png b/meme_generator/memes/telescope/images/58.png new file mode 100644 index 0000000000000000000000000000000000000000..d644cdb515b0efc7c12dd743c510c13da332016a --- /dev/null +++ b/meme_generator/memes/telescope/images/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9f5abf4a966aeb9f71ff506ae3744e1b71d1360a14af75f497e8c5c7f5ee605 +size 33851 diff --git a/meme_generator/memes/telescope/images/59.png b/meme_generator/memes/telescope/images/59.png new file mode 100644 index 0000000000000000000000000000000000000000..2de292345ac97cc934fc2cd99569e23fb68742b9 --- /dev/null +++ b/meme_generator/memes/telescope/images/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b48cc5079a30695a97a2c86a2bc950177b020a1c8cdb6d531961397fbc5313ab +size 33908 diff --git a/meme_generator/memes/telescope/images/6.png b/meme_generator/memes/telescope/images/6.png new file mode 100644 index 0000000000000000000000000000000000000000..efa209efaaadc674333d41b04ff813512b988931 --- /dev/null +++ b/meme_generator/memes/telescope/images/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e1d43d2cc543384846d47375b317b68b347518c8374bb625d9d1feb9a0d891c +size 9432 diff --git a/meme_generator/memes/telescope/images/60.png b/meme_generator/memes/telescope/images/60.png new file mode 100644 index 0000000000000000000000000000000000000000..c098deee1c5f1c58f18980b0cfb30495e6cede59 --- /dev/null +++ b/meme_generator/memes/telescope/images/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83267aebd7fed5469e2ef391441b398b957aaf1f1a23530adaf76b342620f111 +size 30406 diff --git a/meme_generator/memes/telescope/images/61.png b/meme_generator/memes/telescope/images/61.png new file mode 100644 index 0000000000000000000000000000000000000000..0f5e695d75302e057c80922642ab9dfc3d63e482 --- /dev/null +++ b/meme_generator/memes/telescope/images/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efa25d0b7aa681a5dc5ac2ad08746597d3cdd4737c29367fbaa8f51b4cb081f3 +size 30654 diff --git a/meme_generator/memes/telescope/images/62.png b/meme_generator/memes/telescope/images/62.png new file mode 100644 index 0000000000000000000000000000000000000000..80fa035421a2e0dea885ff8769b28b4c61c0834a --- /dev/null +++ b/meme_generator/memes/telescope/images/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27b1f605942cbffa76b19bf439b17e29ff9d83c61f5309b71d6390b66c71aabc +size 30944 diff --git a/meme_generator/memes/telescope/images/63.png b/meme_generator/memes/telescope/images/63.png new file mode 100644 index 0000000000000000000000000000000000000000..743e3d77b77996dcdf05a0608cbca8875247077b --- /dev/null +++ b/meme_generator/memes/telescope/images/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d28decc5b30caaa528c2d51f8a9c34c3f84a1b975ac8ed32c25098d444fb5c0 +size 31883 diff --git a/meme_generator/memes/telescope/images/64.png b/meme_generator/memes/telescope/images/64.png new file mode 100644 index 0000000000000000000000000000000000000000..ce1598269491c36eeed9389a0be58176d9637074 --- /dev/null +++ b/meme_generator/memes/telescope/images/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4338fff73b77d7cc01ed07c8372f1ef7472815b7a0c952a01f65b0b7c87bc5e +size 33076 diff --git a/meme_generator/memes/telescope/images/65.png b/meme_generator/memes/telescope/images/65.png new file mode 100644 index 0000000000000000000000000000000000000000..d568b1ef991e8b820102a4e4500ade3eba73f6b6 --- /dev/null +++ b/meme_generator/memes/telescope/images/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd70df8b958eeca09964f473017411665cb4f657de5c65c6fe604b1ab40dab2d +size 32010 diff --git a/meme_generator/memes/telescope/images/66.png b/meme_generator/memes/telescope/images/66.png new file mode 100644 index 0000000000000000000000000000000000000000..1e4422a2030ebdc1a45ef9553593bf8bcb9bf833 --- /dev/null +++ b/meme_generator/memes/telescope/images/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74e5f1bf752eb00e20ddd8b9975069d50a324def857f1842f738b1c81e1dd0f3 +size 32010 diff --git a/meme_generator/memes/telescope/images/67.png b/meme_generator/memes/telescope/images/67.png new file mode 100644 index 0000000000000000000000000000000000000000..8c02d6963f2a1b484be031fbeabd42cb79567c26 --- /dev/null +++ b/meme_generator/memes/telescope/images/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b536cd00f5b22121e9bade91755d4c8128ee6ef0bce6057fb19bfd7e888bde8b +size 31862 diff --git a/meme_generator/memes/telescope/images/68.png b/meme_generator/memes/telescope/images/68.png new file mode 100644 index 0000000000000000000000000000000000000000..83c59c390a52cd8e3243a42d0c6a339336e3b970 --- /dev/null +++ b/meme_generator/memes/telescope/images/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ff8cc62a89a5ef910077a870106c77188bf7c77f7d5c13323c7102cf7ac5af8 +size 31867 diff --git a/meme_generator/memes/telescope/images/7.png b/meme_generator/memes/telescope/images/7.png new file mode 100644 index 0000000000000000000000000000000000000000..dfe3336916b1c2c559cb5eacf0c55c5a0e6de7bf --- /dev/null +++ b/meme_generator/memes/telescope/images/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28a33b49b57435efd94a7412fd5f0f8c4c9d326d463f74f2293e30f6178555b3 +size 9309 diff --git a/meme_generator/memes/telescope/images/8.png b/meme_generator/memes/telescope/images/8.png new file mode 100644 index 0000000000000000000000000000000000000000..cd7d2bd5d1449caea758319299fa723cf091d21a --- /dev/null +++ b/meme_generator/memes/telescope/images/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1acf9f2ac90d2919d9051828e390d64c09746f062e0daccbabb83eb13d1c400 +size 9264 diff --git a/meme_generator/memes/telescope/images/9.png b/meme_generator/memes/telescope/images/9.png new file mode 100644 index 0000000000000000000000000000000000000000..2096cae54b5ab5456f6bd9581c11c4e01760f91b --- /dev/null +++ b/meme_generator/memes/telescope/images/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55c192b9058ab90c4272a09d3be111c1c5d3fd387f1b6a4e391cc2944965a691 +size 9179 diff --git a/meme_generator/memes/this_chicken/__init__.py b/meme_generator/memes/this_chicken/__init__.py index ac605a12bc2d4dfbbc198f3480e7fb553c7fd8c1..2c97e2f25542ebff69f0d41f8fb917dedf9b1c0d 100644 --- a/meme_generator/memes/this_chicken/__init__.py +++ b/meme_generator/memes/this_chicken/__init__.py @@ -9,7 +9,7 @@ from meme_generator.exception import TextOverLength img_dir = Path(__file__).parent / "images" -def this_chichen(images: List[BuildImage], texts, args): +def this_chicken(images: List[BuildImage], texts, args): text = texts[0] if texts else "这是十二生肖中的鸡" img = images[0].convert("RGBA").resize((640, 640), keep_ratio=True) @@ -35,8 +35,8 @@ def this_chichen(images: List[BuildImage], texts, args): add_meme( - "this_chichen", - this_chichen, + "this_chicken", + this_chicken, min_images=1, max_images=1, max_texts=1, diff --git a/meme_generator/memes/tom_tease/__init__.py b/meme_generator/memes/tom_tease/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..5f70b205e957d65d6ae321879b33dac5871a2c1c --- /dev/null +++ b/meme_generator/memes/tom_tease/__init__.py @@ -0,0 +1,35 @@ +from pathlib import Path +from typing import List + +from pil_utils import BuildImage + +from meme_generator import add_meme +from meme_generator.utils import FrameAlignPolicy, Maker, make_gif_or_combined_gif + +img_dir = Path(__file__).parent / "images" + + +def tom_tease(images: List[BuildImage], texts, args): + def maker(i: int) -> Maker: + def make(img: BuildImage) -> BuildImage: + img = img.convert("RGBA").resize((400, 350), keep_ratio=True) + img = img.perspective(((0, 100), (290, 0), (290, 370), (0, 335))) + bg = BuildImage.open(img_dir / f"{i}.png") + frame = BuildImage.new("RGBA", bg.size, "white") + frame.paste(bg).paste(img, (258, -12), below=True) + return frame + + return make + + return make_gif_or_combined_gif( + images[0], maker, 11, 0.2, FrameAlignPolicy.extend_first + ) + + +add_meme( + "tom_tease", + tom_tease, + min_images=1, + max_images=1, + keywords=["汤姆嘲笑"], +) diff --git a/meme_generator/memes/tom_tease/images/0.png b/meme_generator/memes/tom_tease/images/0.png new file mode 100644 index 0000000000000000000000000000000000000000..44e386313833933fa7ccc8d4294cedb3d7bf68a5 --- /dev/null +++ b/meme_generator/memes/tom_tease/images/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:041389342145a3b1b9fd3582d40489ba04890eec87d6e2680ed21ee24821d1be +size 48354 diff --git a/meme_generator/memes/tom_tease/images/1.png b/meme_generator/memes/tom_tease/images/1.png new file mode 100644 index 0000000000000000000000000000000000000000..d9f52446219a456bd2f0cdc49837ef127e028d7f --- /dev/null +++ b/meme_generator/memes/tom_tease/images/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:808ac93ead7530cdc034c583b7907334af7356e34dc41a812f9b13dab8f2dfbe +size 47686 diff --git a/meme_generator/memes/tom_tease/images/10.png b/meme_generator/memes/tom_tease/images/10.png new file mode 100644 index 0000000000000000000000000000000000000000..df67ea02ef3b9e4df72af0e2487f9191bedafb5c --- /dev/null +++ b/meme_generator/memes/tom_tease/images/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:829019c546a96999bead56079f7eb058317088ea6e06cb74e3126ce47f4a66c3 +size 48334 diff --git a/meme_generator/memes/tom_tease/images/2.png b/meme_generator/memes/tom_tease/images/2.png new file mode 100644 index 0000000000000000000000000000000000000000..de75adce449f0807ccbe57d4888ac22355582031 --- /dev/null +++ b/meme_generator/memes/tom_tease/images/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66e40ee6164a31945fdb289d6256086eba349cde74db81915e105201c50f4f4a +size 48853 diff --git a/meme_generator/memes/tom_tease/images/3.png b/meme_generator/memes/tom_tease/images/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d980fac53aee0261eb8d83fe6692070a01680f32 --- /dev/null +++ b/meme_generator/memes/tom_tease/images/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d33042cbd9708d0f62cec599e90b6c969b621d649eb2ca648f36949586f2391d +size 48169 diff --git a/meme_generator/memes/tom_tease/images/4.png b/meme_generator/memes/tom_tease/images/4.png new file mode 100644 index 0000000000000000000000000000000000000000..63f2ce5e289c3ed572c93376d4fe582fd45029df --- /dev/null +++ b/meme_generator/memes/tom_tease/images/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35a7ba215c7b24834a065b6477a3d918d2b3f64d836e481f2145a065e049b9e9 +size 47801 diff --git a/meme_generator/memes/tom_tease/images/5.png b/meme_generator/memes/tom_tease/images/5.png new file mode 100644 index 0000000000000000000000000000000000000000..3ad56cff3a28f3a2351e4954ddde8892e5ca829f --- /dev/null +++ b/meme_generator/memes/tom_tease/images/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f919d31e2dd2a76f5ec16cae4f93ccdbda09ce28115a0e40328f1ce3fc8fd93 +size 47901 diff --git a/meme_generator/memes/tom_tease/images/6.png b/meme_generator/memes/tom_tease/images/6.png new file mode 100644 index 0000000000000000000000000000000000000000..22d0a34e705e16f94f8c373155da41187ee288e8 --- /dev/null +++ b/meme_generator/memes/tom_tease/images/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b135ad8c08862c472b1138b49e7f349d4f9cf46e0782d80786abf6379bbb6d0 +size 48722 diff --git a/meme_generator/memes/tom_tease/images/7.png b/meme_generator/memes/tom_tease/images/7.png new file mode 100644 index 0000000000000000000000000000000000000000..39cd3c83a05014206fda595c4caf5480cdca42b9 --- /dev/null +++ b/meme_generator/memes/tom_tease/images/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9011c957860473bfb4f6e30485ace1adec9f8a9207ec8214ae31e19cbf7c9cc5 +size 50121 diff --git a/meme_generator/memes/tom_tease/images/8.png b/meme_generator/memes/tom_tease/images/8.png new file mode 100644 index 0000000000000000000000000000000000000000..18ea8fd054d3671a6eb546f23cadd1b51a673d9f --- /dev/null +++ b/meme_generator/memes/tom_tease/images/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:691b0dc1433a9aad5d802c21b13dc836dac49b2c4ee1f7a1c11477185ade9139 +size 47951 diff --git a/meme_generator/memes/tom_tease/images/9.png b/meme_generator/memes/tom_tease/images/9.png new file mode 100644 index 0000000000000000000000000000000000000000..04dadcac0d73b58c091b362a9674349a30a46418 --- /dev/null +++ b/meme_generator/memes/tom_tease/images/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f28856ed443a568091cab9509f18399a53468dc51c350dde766621cead83ca06 +size 48820 diff --git a/meme_generator/memes/washer/__init__.py b/meme_generator/memes/washer/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..7d0a65ca8e81abb0f343caf3cbb31c1f812b613e --- /dev/null +++ b/meme_generator/memes/washer/__init__.py @@ -0,0 +1,26 @@ +from pathlib import Path +from typing import List + +from PIL.Image import Image as IMG +from pil_utils import BuildImage + +from meme_generator import add_meme +from meme_generator.utils import save_gif + +img_dir = Path(__file__).parent / "images" + + +def washer(images: List[BuildImage], texts, args): + img = images[0].convert("RGBA") + frame = BuildImage.open(img_dir / "0.png") + frames: List[IMG] = [] + for i in range(0, 360, 30): + frames.append( + frame.copy() + .paste(img.rotate(-i).resize((74, 74)), (63, 56), below=True) + .image + ) + return save_gif(frames, 0.1) + + +add_meme("washer", washer, min_images=1, max_images=1, keywords=["洗衣机"]) diff --git a/meme_generator/memes/washer/images/0.png b/meme_generator/memes/washer/images/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e9361aca3f9c9a02d0437c430d7589c28f6604d5 --- /dev/null +++ b/meme_generator/memes/washer/images/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beb9f4b460c460bc84e7ffcf3d93f4a11085d67bb5ef42f231fce02ea88bfdb9 +size 50559 diff --git a/meme_generator/utils.py b/meme_generator/utils.py index 4cc2294bd19df0646fa666385a380f050b1c24f5..6e4314522d5357b4d333953e3179f28131eff0c1 100644 --- a/meme_generator/utils.py +++ b/meme_generator/utils.py @@ -411,7 +411,7 @@ def render_meme_list( item_images[num * columns + col] for num in range((len(item_images) - col - 1) // columns + 1) ] - img_w = max((t2m.width for t2m in images)) + item_padding[0] * 2 + img_w = max(t2m.width for t2m in images) + item_padding[0] * 2 img_h = (char_A.ascent + item_padding[1] * 2) * len(images) + char_A.descent image = BuildImage.new("RGB", (img_w, img_h), bg_color) y = item_padding[1] @@ -426,8 +426,8 @@ def render_meme_list( y += char_A.ascent + item_padding[1] * 2 column_images.append(image) - img_w = sum((img.width for img in column_images)) + image_padding[0] * 2 - img_h = max((img.height for img in column_images)) + image_padding[1] * 2 + img_w = sum(img.width for img in column_images) + image_padding[0] * 2 + img_h = max(img.height for img in column_images) + image_padding[1] * 2 image = BuildImage.new("RGB", (img_w, img_h), bg_color) x, y = image_padding for img in column_images: diff --git a/meme_generator/version.py b/meme_generator/version.py index 6561790f155f6bfd436e5b19b2f0a1e7f20c0259..f18e5d0977e73992d319c6d2ab1274bda30fe184 100644 --- a/meme_generator/version.py +++ b/meme_generator/version.py @@ -1 +1 @@ -__version__ = "0.0.15" +__version__ = "0.0.18" diff --git a/poetry.lock b/poetry.lock index c8091f1d2ae4d12ea42661824fe9802b2241b292..098e47607b7135fb2927ee54f845af89e5ba48e3 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,14 +1,14 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. [[package]] name = "annotated-types" -version = "0.5.0" +version = "0.6.0" description = "Reusable constraint types to use with typing.Annotated" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "annotated_types-0.5.0-py3-none-any.whl", hash = "sha256:58da39888f92c276ad970249761ebea80ba544b77acddaa1a4d6cf78287d45fd"}, - {file = "annotated_types-0.5.0.tar.gz", hash = "sha256:47cdc3490d9ac1506ce92c7aaa76c579dc3509ff11e098fc867e5130ab7be802"}, + {file = "annotated_types-0.6.0-py3-none-any.whl", hash = "sha256:0641064de18ba7a25dee8f96403ebc39113d0cb953a01429249d5c7564666a43"}, + {file = "annotated_types-0.6.0.tar.gz", hash = "sha256:563339e807e53ffd9c267e99fc6d9ea23eb8443c08f112651963e24e22f84a5d"}, ] [package.dependencies] @@ -16,24 +16,25 @@ typing-extensions = {version = ">=4.0.0", markers = "python_version < \"3.9\""} [[package]] name = "anyio" -version = "3.7.1" +version = "4.2.0" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "anyio-3.7.1-py3-none-any.whl", hash = "sha256:91dee416e570e92c64041bd18b900d1d6fa78dff7048769ce5ac5ddad004fbb5"}, - {file = "anyio-3.7.1.tar.gz", hash = "sha256:44a3c9aba0f5defa43261a8b3efb97891f2bd7d804e0e1f56419befa1adfc780"}, + {file = "anyio-4.2.0-py3-none-any.whl", hash = "sha256:745843b39e829e108e518c489b31dc757de7d2131d53fac32bd8df268227bfee"}, + {file = "anyio-4.2.0.tar.gz", hash = "sha256:e1875bb4b4e2de1669f4bc7869b6d3f54231cdced71605e6e64c9be77e3be50f"}, ] [package.dependencies] -exceptiongroup = {version = "*", markers = "python_version < \"3.11\""} +exceptiongroup = {version = ">=1.0.2", markers = "python_version < \"3.11\""} idna = ">=2.8" sniffio = ">=1.1" +typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] -doc = ["Sphinx", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme (>=1.2.2)", "sphinxcontrib-jquery"] -test = ["anyio[trio]", "coverage[toml] (>=4.5)", "hypothesis (>=4.0)", "mock (>=4)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"] -trio = ["trio (<0.22)"] +doc = ["Sphinx (>=7)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"] +trio = ["trio (>=0.23)"] [[package]] name = "backports-zoneinfo" @@ -74,50 +75,15 @@ files = [ {file = "bbcode-1.1.0.tar.gz", hash = "sha256:eac4fb1d0f6c7ce5c41e4b5c0522562b15a1ac036fb9131adc59e9a28c7dc1d0"}, ] -[[package]] -name = "black" -version = "22.12.0" -description = "The uncompromising code formatter." -optional = false -python-versions = ">=3.7" -files = [ - {file = "black-22.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9eedd20838bd5d75b80c9f5487dbcb06836a43833a37846cf1d8c1cc01cef59d"}, - {file = "black-22.12.0-cp310-cp310-win_amd64.whl", hash = "sha256:159a46a4947f73387b4d83e87ea006dbb2337eab6c879620a3ba52699b1f4351"}, - {file = "black-22.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d30b212bffeb1e252b31dd269dfae69dd17e06d92b87ad26e23890f3efea366f"}, - {file = "black-22.12.0-cp311-cp311-win_amd64.whl", hash = "sha256:7412e75863aa5c5411886804678b7d083c7c28421210180d67dfd8cf1221e1f4"}, - {file = "black-22.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c116eed0efb9ff870ded8b62fe9f28dd61ef6e9ddd28d83d7d264a38417dcee2"}, - {file = "black-22.12.0-cp37-cp37m-win_amd64.whl", hash = "sha256:1f58cbe16dfe8c12b7434e50ff889fa479072096d79f0a7f25e4ab8e94cd8350"}, - {file = "black-22.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77d86c9f3db9b1bf6761244bc0b3572a546f5fe37917a044e02f3166d5aafa7d"}, - {file = "black-22.12.0-cp38-cp38-win_amd64.whl", hash = "sha256:82d9fe8fee3401e02e79767016b4907820a7dc28d70d137eb397b92ef3cc5bfc"}, - {file = "black-22.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:101c69b23df9b44247bd88e1d7e90154336ac4992502d4197bdac35dd7ee3320"}, - {file = "black-22.12.0-cp39-cp39-win_amd64.whl", hash = "sha256:559c7a1ba9a006226f09e4916060982fd27334ae1998e7a38b3f33a37f7a2148"}, - {file = "black-22.12.0-py3-none-any.whl", hash = "sha256:436cc9167dd28040ad90d3b404aec22cedf24a6e4d7de221bec2730ec0c97bcf"}, - {file = "black-22.12.0.tar.gz", hash = "sha256:229351e5a18ca30f447bf724d007f890f97e13af070bb6ad4c0a441cd7596a2f"}, -] - -[package.dependencies] -click = ">=8.0.0" -mypy-extensions = ">=0.4.3" -pathspec = ">=0.9.0" -platformdirs = ">=2" -tomli = {version = ">=1.1.0", markers = "python_full_version < \"3.11.0a7\""} -typing-extensions = {version = ">=3.10.0.0", markers = "python_version < \"3.10\""} - -[package.extras] -colorama = ["colorama (>=0.4.3)"] -d = ["aiohttp (>=3.7.4)"] -jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] -uvloop = ["uvloop (>=0.15.2)"] - [[package]] name = "certifi" -version = "2023.7.22" +version = "2023.11.17" description = "Python package for providing Mozilla's CA Bundle." optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, - {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, + {file = "certifi-2023.11.17-py3-none-any.whl", hash = "sha256:e036ab49d5b79556f99cfc2d9320b34cfbe5be05c5871b51de9329f0603b0474"}, + {file = "certifi-2023.11.17.tar.gz", hash = "sha256:9b469f3a900bf28dc19b8cfbf8019bf47f7fdd1a65a1d4ffb98fc14166beb4d1"}, ] [[package]] @@ -159,6 +125,7 @@ files = [ {file = "contourpy-1.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:18a64814ae7bce73925131381603fff0116e2df25230dfc80d6d690aa6e20b37"}, {file = "contourpy-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90c81f22b4f572f8a2110b0b741bb64e5a6427e0a198b2cdc1fbaf85f352a3aa"}, {file = "contourpy-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:53cc3a40635abedbec7f1bde60f8c189c49e84ac180c665f2cd7c162cc454baa"}, + {file = "contourpy-1.1.0-cp310-cp310-win32.whl", hash = "sha256:9b2dd2ca3ac561aceef4c7c13ba654aaa404cf885b187427760d7f7d4c57cff8"}, {file = "contourpy-1.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:1f795597073b09d631782e7245016a4323cf1cf0b4e06eef7ea6627e06a37ff2"}, {file = "contourpy-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0b7b04ed0961647691cfe5d82115dd072af7ce8846d31a5fac6c142dcce8b882"}, {file = "contourpy-1.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:27bc79200c742f9746d7dd51a734ee326a292d77e7d94c8af6e08d1e6c15d545"}, @@ -167,6 +134,7 @@ files = [ {file = "contourpy-1.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5cec36c5090e75a9ac9dbd0ff4a8cf7cecd60f1b6dc23a374c7d980a1cd710e"}, {file = "contourpy-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f0cbd657e9bde94cd0e33aa7df94fb73c1ab7799378d3b3f902eb8eb2e04a3a"}, {file = "contourpy-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:181cbace49874f4358e2929aaf7ba84006acb76694102e88dd15af861996c16e"}, + {file = "contourpy-1.1.0-cp311-cp311-win32.whl", hash = "sha256:edb989d31065b1acef3828a3688f88b2abb799a7db891c9e282df5ec7e46221b"}, {file = "contourpy-1.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:fb3b7d9e6243bfa1efb93ccfe64ec610d85cfe5aec2c25f97fbbd2e58b531256"}, {file = "contourpy-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:bcb41692aa09aeb19c7c213411854402f29f6613845ad2453d30bf421fe68fed"}, {file = "contourpy-1.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:5d123a5bc63cd34c27ff9c7ac1cd978909e9c71da12e05be0231c608048bb2ae"}, @@ -175,6 +143,7 @@ files = [ {file = "contourpy-1.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:317267d915490d1e84577924bd61ba71bf8681a30e0d6c545f577363157e5e94"}, {file = "contourpy-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d551f3a442655f3dcc1285723f9acd646ca5858834efeab4598d706206b09c9f"}, {file = "contourpy-1.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:e7a117ce7df5a938fe035cad481b0189049e8d92433b4b33aa7fc609344aafa1"}, + {file = "contourpy-1.1.0-cp38-cp38-win32.whl", hash = "sha256:108dfb5b3e731046a96c60bdc46a1a0ebee0760418951abecbe0fc07b5b93b27"}, {file = "contourpy-1.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:d4f26b25b4f86087e7d75e63212756c38546e70f2a92d2be44f80114826e1cd4"}, {file = "contourpy-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bc00bb4225d57bff7ebb634646c0ee2a1298402ec10a5fe7af79df9a51c1bfd9"}, {file = "contourpy-1.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:189ceb1525eb0655ab8487a9a9c41f42a73ba52d6789754788d1883fb06b2d8a"}, @@ -183,6 +152,7 @@ files = [ {file = "contourpy-1.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:143dde50520a9f90e4a2703f367cf8ec96a73042b72e68fcd184e1279962eb6f"}, {file = "contourpy-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e94bef2580e25b5fdb183bf98a2faa2adc5b638736b2c0a4da98691da641316a"}, {file = "contourpy-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ed614aea8462735e7d70141374bd7650afd1c3f3cb0c2dbbcbe44e14331bf002"}, + {file = "contourpy-1.1.0-cp39-cp39-win32.whl", hash = "sha256:71551f9520f008b2950bef5f16b0e3587506ef4f23c734b71ffb7b89f8721999"}, {file = "contourpy-1.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:438ba416d02f82b692e371858143970ed2eb6337d9cdbbede0d8ad9f3d7dd17d"}, {file = "contourpy-1.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a698c6a7a432789e587168573a864a7ea374c6be8d4f31f9d87c001d5a843493"}, {file = "contourpy-1.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:397b0ac8a12880412da3551a8cb5a187d3298a72802b45a3bd1805e204ad8439"}, @@ -203,26 +173,101 @@ mypy = ["contourpy[bokeh,docs]", "docutils-stubs", "mypy (==1.2.0)", "types-Pill test = ["Pillow", "contourpy[test-no-images]", "matplotlib"] test-no-images = ["pytest", "pytest-cov", "wurlitzer"] +[[package]] +name = "contourpy" +version = "1.1.1" +description = "Python library for calculating contours of 2D quadrilateral grids" +optional = false +python-versions = ">=3.8" +files = [ + {file = "contourpy-1.1.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:46e24f5412c948d81736509377e255f6040e94216bf1a9b5ea1eaa9d29f6ec1b"}, + {file = "contourpy-1.1.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0e48694d6a9c5a26ee85b10130c77a011a4fedf50a7279fa0bdaf44bafb4299d"}, + {file = "contourpy-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a66045af6cf00e19d02191ab578a50cb93b2028c3eefed999793698e9ea768ae"}, + {file = "contourpy-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4ebf42695f75ee1a952f98ce9775c873e4971732a87334b099dde90b6af6a916"}, + {file = "contourpy-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f6aec19457617ef468ff091669cca01fa7ea557b12b59a7908b9474bb9674cf0"}, + {file = "contourpy-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:462c59914dc6d81e0b11f37e560b8a7c2dbab6aca4f38be31519d442d6cde1a1"}, + {file = "contourpy-1.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6d0a8efc258659edc5299f9ef32d8d81de8b53b45d67bf4bfa3067f31366764d"}, + {file = "contourpy-1.1.1-cp310-cp310-win32.whl", hash = "sha256:d6ab42f223e58b7dac1bb0af32194a7b9311065583cc75ff59dcf301afd8a431"}, + {file = "contourpy-1.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:549174b0713d49871c6dee90a4b499d3f12f5e5f69641cd23c50a4542e2ca1eb"}, + {file = "contourpy-1.1.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:407d864db716a067cc696d61fa1ef6637fedf03606e8417fe2aeed20a061e6b2"}, + {file = "contourpy-1.1.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dfe80c017973e6a4c367e037cb31601044dd55e6bfacd57370674867d15a899b"}, + {file = "contourpy-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e30aaf2b8a2bac57eb7e1650df1b3a4130e8d0c66fc2f861039d507a11760e1b"}, + {file = "contourpy-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3de23ca4f381c3770dee6d10ead6fff524d540c0f662e763ad1530bde5112532"}, + {file = "contourpy-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:566f0e41df06dfef2431defcfaa155f0acfa1ca4acbf8fd80895b1e7e2ada40e"}, + {file = "contourpy-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b04c2f0adaf255bf756cf08ebef1be132d3c7a06fe6f9877d55640c5e60c72c5"}, + {file = "contourpy-1.1.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d0c188ae66b772d9d61d43c6030500344c13e3f73a00d1dc241da896f379bb62"}, + {file = "contourpy-1.1.1-cp311-cp311-win32.whl", hash = "sha256:0683e1ae20dc038075d92e0e0148f09ffcefab120e57f6b4c9c0f477ec171f33"}, + {file = "contourpy-1.1.1-cp311-cp311-win_amd64.whl", hash = "sha256:8636cd2fc5da0fb102a2504fa2c4bea3cbc149533b345d72cdf0e7a924decc45"}, + {file = "contourpy-1.1.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:560f1d68a33e89c62da5da4077ba98137a5e4d3a271b29f2f195d0fba2adcb6a"}, + {file = "contourpy-1.1.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:24216552104ae8f3b34120ef84825400b16eb6133af2e27a190fdc13529f023e"}, + {file = "contourpy-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:56de98a2fb23025882a18b60c7f0ea2d2d70bbbcfcf878f9067234b1c4818442"}, + {file = "contourpy-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:07d6f11dfaf80a84c97f1a5ba50d129d9303c5b4206f776e94037332e298dda8"}, + {file = "contourpy-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f1eaac5257a8f8a047248d60e8f9315c6cff58f7803971170d952555ef6344a7"}, + {file = "contourpy-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:19557fa407e70f20bfaba7d55b4d97b14f9480856c4fb65812e8a05fe1c6f9bf"}, + {file = "contourpy-1.1.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:081f3c0880712e40effc5f4c3b08feca6d064cb8cfbb372ca548105b86fd6c3d"}, + {file = "contourpy-1.1.1-cp312-cp312-win32.whl", hash = "sha256:059c3d2a94b930f4dafe8105bcdc1b21de99b30b51b5bce74c753686de858cb6"}, + {file = "contourpy-1.1.1-cp312-cp312-win_amd64.whl", hash = "sha256:f44d78b61740e4e8c71db1cf1fd56d9050a4747681c59ec1094750a658ceb970"}, + {file = "contourpy-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:70e5a10f8093d228bb2b552beeb318b8928b8a94763ef03b858ef3612b29395d"}, + {file = "contourpy-1.1.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:8394e652925a18ef0091115e3cc191fef350ab6dc3cc417f06da66bf98071ae9"}, + {file = "contourpy-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bd5680f844c3ff0008523a71949a3ff5e4953eb7701b28760805bc9bcff217"}, + {file = "contourpy-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:66544f853bfa85c0d07a68f6c648b2ec81dafd30f272565c37ab47a33b220684"}, + {file = "contourpy-1.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e0c02b75acfea5cab07585d25069207e478d12309557f90a61b5a3b4f77f46ce"}, + {file = "contourpy-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:41339b24471c58dc1499e56783fedc1afa4bb018bcd035cfb0ee2ad2a7501ef8"}, + {file = "contourpy-1.1.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:f29fb0b3f1217dfe9362ec55440d0743fe868497359f2cf93293f4b2701b8251"}, + {file = "contourpy-1.1.1-cp38-cp38-win32.whl", hash = "sha256:f9dc7f933975367251c1b34da882c4f0e0b2e24bb35dc906d2f598a40b72bfc7"}, + {file = "contourpy-1.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:498e53573e8b94b1caeb9e62d7c2d053c263ebb6aa259c81050766beb50ff8d9"}, + {file = "contourpy-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ba42e3810999a0ddd0439e6e5dbf6d034055cdc72b7c5c839f37a7c274cb4eba"}, + {file = "contourpy-1.1.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6c06e4c6e234fcc65435223c7b2a90f286b7f1b2733058bdf1345d218cc59e34"}, + {file = "contourpy-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca6fab080484e419528e98624fb5c4282148b847e3602dc8dbe0cb0669469887"}, + {file = "contourpy-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:93df44ab351119d14cd1e6b52a5063d3336f0754b72736cc63db59307dabb718"}, + {file = "contourpy-1.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:eafbef886566dc1047d7b3d4b14db0d5b7deb99638d8e1be4e23a7c7ac59ff0f"}, + {file = "contourpy-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efe0fab26d598e1ec07d72cf03eaeeba8e42b4ecf6b9ccb5a356fde60ff08b85"}, + {file = "contourpy-1.1.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:f08e469821a5e4751c97fcd34bcb586bc243c39c2e39321822060ba902eac49e"}, + {file = "contourpy-1.1.1-cp39-cp39-win32.whl", hash = "sha256:bfc8a5e9238232a45ebc5cb3bfee71f1167064c8d382cadd6076f0d51cff1da0"}, + {file = "contourpy-1.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:c84fdf3da00c2827d634de4fcf17e3e067490c4aea82833625c4c8e6cdea0887"}, + {file = "contourpy-1.1.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:229a25f68046c5cf8067d6d6351c8b99e40da11b04d8416bf8d2b1d75922521e"}, + {file = "contourpy-1.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a10dab5ea1bd4401c9483450b5b0ba5416be799bbd50fc7a6cc5e2a15e03e8a3"}, + {file = "contourpy-1.1.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:4f9147051cb8fdb29a51dc2482d792b3b23e50f8f57e3720ca2e3d438b7adf23"}, + {file = "contourpy-1.1.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a75cc163a5f4531a256f2c523bd80db509a49fc23721b36dd1ef2f60ff41c3cb"}, + {file = "contourpy-1.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b53d5769aa1f2d4ea407c65f2d1d08002952fac1d9e9d307aa2e1023554a163"}, + {file = "contourpy-1.1.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:11b836b7dbfb74e049c302bbf74b4b8f6cb9d0b6ca1bf86cfa8ba144aedadd9c"}, + {file = "contourpy-1.1.1.tar.gz", hash = "sha256:96ba37c2e24b7212a77da85004c38e7c4d155d3e72a45eeaf22c1f03f607e8ab"}, +] + +[package.dependencies] +numpy = {version = ">=1.16,<2.0", markers = "python_version <= \"3.11\""} + +[package.extras] +bokeh = ["bokeh", "selenium"] +docs = ["furo", "sphinx (>=7.2)", "sphinx-copybutton"] +mypy = ["contourpy[bokeh,docs]", "docutils-stubs", "mypy (==1.4.1)", "types-Pillow"] +test = ["Pillow", "contourpy[test-no-images]", "matplotlib"] +test-no-images = ["pytest", "pytest-cov", "wurlitzer"] + [[package]] name = "cycler" -version = "0.11.0" +version = "0.12.1" description = "Composable style cycles" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "cycler-0.11.0-py3-none-any.whl", hash = "sha256:3a27e95f763a428a739d2add979fa7494c912a32c17c4c38c4d5f082cad165a3"}, - {file = "cycler-0.11.0.tar.gz", hash = "sha256:9c87405839a19696e837b3b818fed3f5f69f16f1eec1a1ad77e043dcea9c772f"}, + {file = "cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30"}, + {file = "cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c"}, ] +[package.extras] +docs = ["ipython", "matplotlib", "numpydoc", "sphinx"] +tests = ["pytest", "pytest-cov", "pytest-xdist"] + [[package]] name = "dateparser" -version = "1.1.8" +version = "1.2.0" description = "Date parsing library designed to parse dates from HTML pages" optional = false python-versions = ">=3.7" files = [ - {file = "dateparser-1.1.8-py2.py3-none-any.whl", hash = "sha256:070b29b5bbf4b1ec2cd51c96ea040dc68a614de703910a91ad1abba18f9f379f"}, - {file = "dateparser-1.1.8.tar.gz", hash = "sha256:86b8b7517efcc558f085a142cdb7620f0921543fcabdb538c8a4c4001d8178e3"}, + {file = "dateparser-1.2.0-py2.py3-none-any.whl", hash = "sha256:0b21ad96534e562920a0083e97fd45fa959882d4162acc358705144520a35830"}, + {file = "dateparser-1.2.0.tar.gz", hash = "sha256:7975b43a4222283e0ae15be7b4999d08c9a70e2d378ac87385b1ccf2cffbbb30"}, ] [package.dependencies] @@ -238,13 +283,13 @@ langdetect = ["langdetect"] [[package]] name = "exceptiongroup" -version = "1.1.3" +version = "1.2.0" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.1.3-py3-none-any.whl", hash = "sha256:343280667a4585d195ca1cf9cef84a4e178c4b6cf2274caef9859782b567d5e3"}, - {file = "exceptiongroup-1.1.3.tar.gz", hash = "sha256:097acd85d473d75af5bb98e41b61ff7fe35efe6675e4f9370ec6ec5126d160e9"}, + {file = "exceptiongroup-1.2.0-py3-none-any.whl", hash = "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14"}, + {file = "exceptiongroup-1.2.0.tar.gz", hash = "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68"}, ] [package.extras] @@ -252,19 +297,19 @@ test = ["pytest (>=6)"] [[package]] name = "fastapi" -version = "0.103.0" +version = "0.109.0" description = "FastAPI framework, high performance, easy to learn, fast to code, ready for production" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "fastapi-0.103.0-py3-none-any.whl", hash = "sha256:61ab72c6c281205dd0cbaccf503e829a37e0be108d965ac223779a8479243665"}, - {file = "fastapi-0.103.0.tar.gz", hash = "sha256:4166732f5ddf61c33e9fa4664f73780872511e0598d4d5434b1816dc1e6d9421"}, + {file = "fastapi-0.109.0-py3-none-any.whl", hash = "sha256:8c77515984cd8e8cfeb58364f8cc7a28f0692088475e2614f7bf03275eba9093"}, + {file = "fastapi-0.109.0.tar.gz", hash = "sha256:b978095b9ee01a5cf49b19f4bc1ac9b8ca83aa076e770ef8fd9af09a2b88d191"}, ] [package.dependencies] pydantic = ">=1.7.4,<1.8 || >1.8,<1.8.1 || >1.8.1,<2.0.0 || >2.0.0,<2.0.1 || >2.0.1,<2.1.0 || >2.1.0,<3.0.0" -starlette = ">=0.27.0,<0.28.0" -typing-extensions = ">=4.5.0" +starlette = ">=0.35.0,<0.36.0" +typing-extensions = ">=4.8.0" [package.extras] all = ["email-validator (>=2.0.0)", "httpx (>=0.23.0)", "itsdangerous (>=1.1.0)", "jinja2 (>=2.11.2)", "orjson (>=3.2.1)", "pydantic-extra-types (>=2.0.0)", "pydantic-settings (>=2.0.0)", "python-multipart (>=0.0.5)", "pyyaml (>=5.3.1)", "ujson (>=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0)", "uvicorn[standard] (>=0.12.0)"] @@ -282,51 +327,59 @@ files = [ [[package]] name = "fonttools" -version = "4.42.1" +version = "4.47.2" description = "Tools to manipulate font files" optional = false python-versions = ">=3.8" files = [ - {file = "fonttools-4.42.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ed1a13a27f59d1fc1920394a7f596792e9d546c9ca5a044419dca70c37815d7c"}, - {file = "fonttools-4.42.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c9b1ce7a45978b821a06d375b83763b27a3a5e8a2e4570b3065abad240a18760"}, - {file = "fonttools-4.42.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f720fa82a11c0f9042376fd509b5ed88dab7e3cd602eee63a1af08883b37342b"}, - {file = "fonttools-4.42.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db55cbaea02a20b49fefbd8e9d62bd481aaabe1f2301dabc575acc6b358874fa"}, - {file = "fonttools-4.42.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3a35981d90feebeaef05e46e33e6b9e5b5e618504672ca9cd0ff96b171e4bfff"}, - {file = "fonttools-4.42.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:68a02bbe020dc22ee0540e040117535f06df9358106d3775e8817d826047f3fd"}, - {file = "fonttools-4.42.1-cp310-cp310-win32.whl", hash = "sha256:12a7c247d1b946829bfa2f331107a629ea77dc5391dfd34fdcd78efa61f354ca"}, - {file = "fonttools-4.42.1-cp310-cp310-win_amd64.whl", hash = "sha256:a398bdadb055f8de69f62b0fc70625f7cbdab436bbb31eef5816e28cab083ee8"}, - {file = "fonttools-4.42.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:689508b918332fb40ce117131633647731d098b1b10d092234aa959b4251add5"}, - {file = "fonttools-4.42.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9e36344e48af3e3bde867a1ca54f97c308735dd8697005c2d24a86054a114a71"}, - {file = "fonttools-4.42.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19b7db825c8adee96fac0692e6e1ecd858cae9affb3b4812cdb9d934a898b29e"}, - {file = "fonttools-4.42.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:113337c2d29665839b7d90b39f99b3cac731f72a0eda9306165a305c7c31d341"}, - {file = "fonttools-4.42.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:37983b6bdab42c501202500a2be3a572f50d4efe3237e0686ee9d5f794d76b35"}, - {file = "fonttools-4.42.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:6ed2662a3d9c832afa36405f8748c250be94ae5dfc5283d668308391f2102861"}, - {file = "fonttools-4.42.1-cp311-cp311-win32.whl", hash = "sha256:179737095eb98332a2744e8f12037b2977f22948cf23ff96656928923ddf560a"}, - {file = "fonttools-4.42.1-cp311-cp311-win_amd64.whl", hash = "sha256:f2b82f46917d8722e6b5eafeefb4fb585d23babd15d8246c664cd88a5bddd19c"}, - {file = "fonttools-4.42.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:62f481ac772fd68901573956231aea3e4b1ad87b9b1089a61613a91e2b50bb9b"}, - {file = "fonttools-4.42.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f2f806990160d1ce42d287aa419df3ffc42dfefe60d473695fb048355fe0c6a0"}, - {file = "fonttools-4.42.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:db372213d39fa33af667c2aa586a0c1235e88e9c850f5dd5c8e1f17515861868"}, - {file = "fonttools-4.42.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d18fc642fd0ac29236ff88ecfccff229ec0386090a839dd3f1162e9a7944a40"}, - {file = "fonttools-4.42.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:8708b98c278012ad267ee8a7433baeb809948855e81922878118464b274c909d"}, - {file = "fonttools-4.42.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:c95b0724a6deea2c8c5d3222191783ced0a2f09bd6d33f93e563f6f1a4b3b3a4"}, - {file = "fonttools-4.42.1-cp38-cp38-win32.whl", hash = "sha256:4aa79366e442dbca6e2c8595645a3a605d9eeabdb7a094d745ed6106816bef5d"}, - {file = "fonttools-4.42.1-cp38-cp38-win_amd64.whl", hash = "sha256:acb47f6f8680de24c1ab65ebde39dd035768e2a9b571a07c7b8da95f6c8815fd"}, - {file = "fonttools-4.42.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5fb289b7a815638a7613d46bcf324c9106804725b2bb8ad913c12b6958ffc4ec"}, - {file = "fonttools-4.42.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:53eb5091ddc8b1199330bb7b4a8a2e7995ad5d43376cadce84523d8223ef3136"}, - {file = "fonttools-4.42.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:46a0ec8adbc6ff13494eb0c9c2e643b6f009ce7320cf640de106fb614e4d4360"}, - {file = "fonttools-4.42.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7cc7d685b8eeca7ae69dc6416833fbfea61660684b7089bca666067cb2937dcf"}, - {file = "fonttools-4.42.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:be24fcb80493b2c94eae21df70017351851652a37de514de553435b256b2f249"}, - {file = "fonttools-4.42.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:515607ec756d7865f23070682622c49d922901943697871fc292277cf1e71967"}, - {file = "fonttools-4.42.1-cp39-cp39-win32.whl", hash = "sha256:0eb79a2da5eb6457a6f8ab904838454accc7d4cccdaff1fd2bd3a0679ea33d64"}, - {file = "fonttools-4.42.1-cp39-cp39-win_amd64.whl", hash = "sha256:7286aed4ea271df9eab8d7a9b29e507094b51397812f7ce051ecd77915a6e26b"}, - {file = "fonttools-4.42.1-py3-none-any.whl", hash = "sha256:9398f244e28e0596e2ee6024f808b06060109e33ed38dcc9bded452fd9bbb853"}, - {file = "fonttools-4.42.1.tar.gz", hash = "sha256:c391cd5af88aacaf41dd7cfb96eeedfad297b5899a39e12f4c2c3706d0a3329d"}, + {file = "fonttools-4.47.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3b629108351d25512d4ea1a8393a2dba325b7b7d7308116b605ea3f8e1be88df"}, + {file = "fonttools-4.47.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c19044256c44fe299d9a73456aabee4b4d06c6b930287be93b533b4737d70aa1"}, + {file = "fonttools-4.47.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b8be28c036b9f186e8c7eaf8a11b42373e7e4949f9e9f370202b9da4c4c3f56c"}, + {file = "fonttools-4.47.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f83a4daef6d2a202acb9bf572958f91cfde5b10c8ee7fb1d09a4c81e5d851fd8"}, + {file = "fonttools-4.47.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:4a5a5318ba5365d992666ac4fe35365f93004109d18858a3e18ae46f67907670"}, + {file = "fonttools-4.47.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8f57ecd742545362a0f7186774b2d1c53423ed9ece67689c93a1055b236f638c"}, + {file = "fonttools-4.47.2-cp310-cp310-win32.whl", hash = "sha256:a1c154bb85dc9a4cf145250c88d112d88eb414bad81d4cb524d06258dea1bdc0"}, + {file = "fonttools-4.47.2-cp310-cp310-win_amd64.whl", hash = "sha256:3e2b95dce2ead58fb12524d0ca7d63a63459dd489e7e5838c3cd53557f8933e1"}, + {file = "fonttools-4.47.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:29495d6d109cdbabe73cfb6f419ce67080c3ef9ea1e08d5750240fd4b0c4763b"}, + {file = "fonttools-4.47.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0a1d313a415eaaba2b35d6cd33536560deeebd2ed758b9bfb89ab5d97dc5deac"}, + {file = "fonttools-4.47.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:90f898cdd67f52f18049250a6474185ef6544c91f27a7bee70d87d77a8daf89c"}, + {file = "fonttools-4.47.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3480eeb52770ff75140fe7d9a2ec33fb67b07efea0ab5129c7e0c6a639c40c70"}, + {file = "fonttools-4.47.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0255dbc128fee75fb9be364806b940ed450dd6838672a150d501ee86523ac61e"}, + {file = "fonttools-4.47.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f791446ff297fd5f1e2247c188de53c1bfb9dd7f0549eba55b73a3c2087a2703"}, + {file = "fonttools-4.47.2-cp311-cp311-win32.whl", hash = "sha256:740947906590a878a4bde7dd748e85fefa4d470a268b964748403b3ab2aeed6c"}, + {file = "fonttools-4.47.2-cp311-cp311-win_amd64.whl", hash = "sha256:63fbed184979f09a65aa9c88b395ca539c94287ba3a364517698462e13e457c9"}, + {file = "fonttools-4.47.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:4ec558c543609e71b2275c4894e93493f65d2f41c15fe1d089080c1d0bb4d635"}, + {file = "fonttools-4.47.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e040f905d542362e07e72e03612a6270c33d38281fd573160e1003e43718d68d"}, + {file = "fonttools-4.47.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6dd58cc03016b281bd2c74c84cdaa6bd3ce54c5a7f47478b7657b930ac3ed8eb"}, + {file = "fonttools-4.47.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:32ab2e9702dff0dd4510c7bb958f265a8d3dd5c0e2547e7b5f7a3df4979abb07"}, + {file = "fonttools-4.47.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:3a808f3c1d1df1f5bf39be869b6e0c263570cdafb5bdb2df66087733f566ea71"}, + {file = "fonttools-4.47.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:ac71e2e201df041a2891067dc36256755b1229ae167edbdc419b16da78732c2f"}, + {file = "fonttools-4.47.2-cp312-cp312-win32.whl", hash = "sha256:69731e8bea0578b3c28fdb43dbf95b9386e2d49a399e9a4ad736b8e479b08085"}, + {file = "fonttools-4.47.2-cp312-cp312-win_amd64.whl", hash = "sha256:b3e1304e5f19ca861d86a72218ecce68f391646d85c851742d265787f55457a4"}, + {file = "fonttools-4.47.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:254d9a6f7be00212bf0c3159e0a420eb19c63793b2c05e049eb337f3023c5ecc"}, + {file = "fonttools-4.47.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:eabae77a07c41ae0b35184894202305c3ad211a93b2eb53837c2a1143c8bc952"}, + {file = "fonttools-4.47.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a86a5ab2873ed2575d0fcdf1828143cfc6b977ac448e3dc616bb1e3d20efbafa"}, + {file = "fonttools-4.47.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13819db8445a0cec8c3ff5f243af6418ab19175072a9a92f6cc8ca7d1452754b"}, + {file = "fonttools-4.47.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:4e743935139aa485fe3253fc33fe467eab6ea42583fa681223ea3f1a93dd01e6"}, + {file = "fonttools-4.47.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d49ce3ea7b7173faebc5664872243b40cf88814ca3eb135c4a3cdff66af71946"}, + {file = "fonttools-4.47.2-cp38-cp38-win32.whl", hash = "sha256:94208ea750e3f96e267f394d5588579bb64cc628e321dbb1d4243ffbc291b18b"}, + {file = "fonttools-4.47.2-cp38-cp38-win_amd64.whl", hash = "sha256:0f750037e02beb8b3569fbff701a572e62a685d2a0e840d75816592280e5feae"}, + {file = "fonttools-4.47.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:3d71606c9321f6701642bd4746f99b6089e53d7e9817fc6b964e90d9c5f0ecc6"}, + {file = "fonttools-4.47.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:86e0427864c6c91cf77f16d1fb9bf1bbf7453e824589e8fb8461b6ee1144f506"}, + {file = "fonttools-4.47.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a00bd0e68e88987dcc047ea31c26d40a3c61185153b03457956a87e39d43c37"}, + {file = "fonttools-4.47.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a5d77479fb885ef38a16a253a2f4096bc3d14e63a56d6246bfdb56365a12b20c"}, + {file = "fonttools-4.47.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5465df494f20a7d01712b072ae3ee9ad2887004701b95cb2cc6dcb9c2c97a899"}, + {file = "fonttools-4.47.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:4c811d3c73b6abac275babb8aa439206288f56fdb2c6f8835e3d7b70de8937a7"}, + {file = "fonttools-4.47.2-cp39-cp39-win32.whl", hash = "sha256:5b60e3afa9635e3dfd3ace2757039593e3bd3cf128be0ddb7a1ff4ac45fa5a50"}, + {file = "fonttools-4.47.2-cp39-cp39-win_amd64.whl", hash = "sha256:7ee48bd9d6b7e8f66866c9090807e3a4a56cf43ffad48962725a190e0dd774c8"}, + {file = "fonttools-4.47.2-py3-none-any.whl", hash = "sha256:7eb7ad665258fba68fd22228a09f347469d95a97fb88198e133595947a20a184"}, + {file = "fonttools-4.47.2.tar.gz", hash = "sha256:7df26dd3650e98ca45f1e29883c96a0b9f5bb6af8d632a6a108bc744fa0bd9b3"}, ] [package.extras] -all = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "fs (>=2.2.0,<3)", "lxml (>=4.0,<5)", "lz4 (>=1.7.4.2)", "matplotlib", "munkres", "scipy", "skia-pathops (>=0.5.0)", "sympy", "uharfbuzz (>=0.23.0)", "unicodedata2 (>=15.0.0)", "xattr", "zopfli (>=0.1.4)"] +all = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "fs (>=2.2.0,<3)", "lxml (>=4.0,<5)", "lz4 (>=1.7.4.2)", "matplotlib", "munkres", "pycairo", "scipy", "skia-pathops (>=0.5.0)", "sympy", "uharfbuzz (>=0.23.0)", "unicodedata2 (>=15.1.0)", "xattr", "zopfli (>=0.1.4)"] graphite = ["lz4 (>=1.7.4.2)"] -interpolatable = ["munkres", "scipy"] +interpolatable = ["munkres", "pycairo", "scipy"] lxml = ["lxml (>=4.0,<5)"] pathops = ["skia-pathops (>=0.5.0)"] plot = ["matplotlib"] @@ -334,7 +387,7 @@ repacker = ["uharfbuzz (>=0.23.0)"] symfont = ["sympy"] type1 = ["xattr"] ufo = ["fs (>=2.2.0,<3)"] -unicode = ["unicodedata2 (>=15.0.0)"] +unicode = ["unicodedata2 (>=15.1.0)"] woff = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "zopfli (>=0.1.4)"] [[package]] @@ -350,39 +403,40 @@ files = [ [[package]] name = "httpcore" -version = "0.17.3" +version = "1.0.2" description = "A minimal low-level HTTP client." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "httpcore-0.17.3-py3-none-any.whl", hash = "sha256:c2789b767ddddfa2a5782e3199b2b7f6894540b17b16ec26b2c4d8e103510b87"}, - {file = "httpcore-0.17.3.tar.gz", hash = "sha256:a6f30213335e34c1ade7be6ec7c47f19f50c56db36abef1a9dfa3815b1cb3888"}, + {file = "httpcore-1.0.2-py3-none-any.whl", hash = "sha256:096cc05bca73b8e459a1fc3dcf585148f63e534eae4339559c9b8a8d6399acc7"}, + {file = "httpcore-1.0.2.tar.gz", hash = "sha256:9fc092e4799b26174648e54b74ed5f683132a464e95643b226e00c2ed2fa6535"}, ] [package.dependencies] -anyio = ">=3.0,<5.0" certifi = "*" h11 = ">=0.13,<0.15" -sniffio = "==1.*" [package.extras] +asyncio = ["anyio (>=4.0,<5.0)"] http2 = ["h2 (>=3,<5)"] socks = ["socksio (==1.*)"] +trio = ["trio (>=0.22.0,<0.23.0)"] [[package]] name = "httpx" -version = "0.24.1" +version = "0.26.0" description = "The next generation HTTP client." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "httpx-0.24.1-py3-none-any.whl", hash = "sha256:06781eb9ac53cde990577af654bd990a4949de37a28bdb4a230d434f3a30b9bd"}, - {file = "httpx-0.24.1.tar.gz", hash = "sha256:5853a43053df830c20f8110c5e69fe44d035d850b2dfe795e196f00fdb774bdd"}, + {file = "httpx-0.26.0-py3-none-any.whl", hash = "sha256:8915f5a3627c4d47b73e8202457cb28f1266982d1159bd5779d86a80c0eab1cd"}, + {file = "httpx-0.26.0.tar.gz", hash = "sha256:451b55c30d5185ea6b23c2c793abf9bb237d2a7dfb901ced6ff69ad37ec1dfaf"}, ] [package.dependencies] +anyio = "*" certifi = "*" -httpcore = ">=0.15.0,<0.18.0" +httpcore = "==1.*" idna = "*" sniffio = "*" @@ -394,32 +448,32 @@ socks = ["socksio (==1.*)"] [[package]] name = "idna" -version = "3.4" +version = "3.6" description = "Internationalized Domain Names in Applications (IDNA)" optional = false python-versions = ">=3.5" files = [ - {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, - {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, + {file = "idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f"}, + {file = "idna-3.6.tar.gz", hash = "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca"}, ] [[package]] name = "importlib-resources" -version = "6.0.1" +version = "6.1.1" description = "Read resources from Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "importlib_resources-6.0.1-py3-none-any.whl", hash = "sha256:134832a506243891221b88b4ae1213327eea96ceb4e407a00d790bb0626f45cf"}, - {file = "importlib_resources-6.0.1.tar.gz", hash = "sha256:4359457e42708462b9626a04657c6208ad799ceb41e5c58c57ffa0e6a098a5d4"}, + {file = "importlib_resources-6.1.1-py3-none-any.whl", hash = "sha256:e8bf90d8213b486f428c9c39714b920041cb02c184686a3dee24905aaa8105d6"}, + {file = "importlib_resources-6.1.1.tar.gz", hash = "sha256:3893a00122eafde6894c59914446a512f728a0c1a45f9bb9b63721b6bacf0b4a"}, ] [package.dependencies] zipp = {version = ">=3.1.0", markers = "python_version < \"3.10\""} [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -testing = ["pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-ruff"] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"] +testing = ["pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-ruff", "zipp (>=3.17)"] [[package]] name = "kiwisolver" @@ -536,13 +590,13 @@ files = [ [[package]] name = "loguru" -version = "0.7.0" +version = "0.7.2" description = "Python logging made (stupidly) simple" optional = false python-versions = ">=3.5" files = [ - {file = "loguru-0.7.0-py3-none-any.whl", hash = "sha256:b93aa30099fa6860d4727f1b81f8718e965bb96253fa190fab2077aaad6d15d3"}, - {file = "loguru-0.7.0.tar.gz", hash = "sha256:1612053ced6ae84d7959dd7d5e431a0532642237ec21f7fd83ac73fe539e03e1"}, + {file = "loguru-0.7.2-py3-none-any.whl", hash = "sha256:003d71e3d3ed35f0f8984898359d65b79e5b21943f78af86aa5491210429b8eb"}, + {file = "loguru-0.7.2.tar.gz", hash = "sha256:e671a53522515f34fd406340ee968cb9ecafbc4b36c679da03c18fd8d0bd51ac"}, ] [package.dependencies] @@ -550,7 +604,7 @@ colorama = {version = ">=0.3.4", markers = "sys_platform == \"win32\""} win32-setctime = {version = ">=1.0.0", markers = "sys_platform == \"win32\""} [package.extras] -dev = ["Sphinx (==5.3.0)", "colorama (==0.4.5)", "colorama (==0.4.6)", "freezegun (==1.1.0)", "freezegun (==1.2.2)", "mypy (==v0.910)", "mypy (==v0.971)", "mypy (==v0.990)", "pre-commit (==3.2.1)", "pytest (==6.1.2)", "pytest (==7.2.1)", "pytest-cov (==2.12.1)", "pytest-cov (==4.0.0)", "pytest-mypy-plugins (==1.10.1)", "pytest-mypy-plugins (==1.9.3)", "sphinx-autobuild (==2021.3.14)", "sphinx-rtd-theme (==1.2.0)", "tox (==3.27.1)", "tox (==4.4.6)"] +dev = ["Sphinx (==7.2.5)", "colorama (==0.4.5)", "colorama (==0.4.6)", "exceptiongroup (==1.1.3)", "freezegun (==1.1.0)", "freezegun (==1.2.2)", "mypy (==v0.910)", "mypy (==v0.971)", "mypy (==v1.4.1)", "mypy (==v1.5.1)", "pre-commit (==3.4.0)", "pytest (==6.1.2)", "pytest (==7.4.0)", "pytest-cov (==2.12.1)", "pytest-cov (==4.1.0)", "pytest-mypy-plugins (==1.9.3)", "pytest-mypy-plugins (==3.0.0)", "sphinx-autobuild (==2021.3.14)", "sphinx-rtd-theme (==1.3.0)", "tox (==3.27.1)", "tox (==4.11.0)"] [[package]] name = "markdown-it-py" @@ -578,52 +632,58 @@ testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions"] [[package]] name = "matplotlib" -version = "3.7.2" +version = "3.7.4" description = "Python plotting package" optional = false python-versions = ">=3.8" files = [ - {file = "matplotlib-3.7.2-cp310-cp310-macosx_10_12_universal2.whl", hash = "sha256:2699f7e73a76d4c110f4f25be9d2496d6ab4f17345307738557d345f099e07de"}, - {file = "matplotlib-3.7.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:a8035ba590658bae7562786c9cc6ea1a84aa49d3afab157e414c9e2ea74f496d"}, - {file = "matplotlib-3.7.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2f8e4a49493add46ad4a8c92f63e19d548b2b6ebbed75c6b4c7f46f57d36cdd1"}, - {file = "matplotlib-3.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:71667eb2ccca4c3537d9414b1bc00554cb7f91527c17ee4ec38027201f8f1603"}, - {file = "matplotlib-3.7.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:152ee0b569a37630d8628534c628456b28686e085d51394da6b71ef84c4da201"}, - {file = "matplotlib-3.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:070f8dddd1f5939e60aacb8fa08f19551f4b0140fab16a3669d5cd6e9cb28fc8"}, - {file = "matplotlib-3.7.2-cp310-cp310-win32.whl", hash = "sha256:fdbb46fad4fb47443b5b8ac76904b2e7a66556844f33370861b4788db0f8816a"}, - {file = "matplotlib-3.7.2-cp310-cp310-win_amd64.whl", hash = "sha256:23fb1750934e5f0128f9423db27c474aa32534cec21f7b2153262b066a581fd1"}, - {file = "matplotlib-3.7.2-cp311-cp311-macosx_10_12_universal2.whl", hash = "sha256:30e1409b857aa8a747c5d4f85f63a79e479835f8dffc52992ac1f3f25837b544"}, - {file = "matplotlib-3.7.2-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:50e0a55ec74bf2d7a0ebf50ac580a209582c2dd0f7ab51bc270f1b4a0027454e"}, - {file = "matplotlib-3.7.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ac60daa1dc83e8821eed155796b0f7888b6b916cf61d620a4ddd8200ac70cd64"}, - {file = "matplotlib-3.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:305e3da477dc8607336ba10bac96986d6308d614706cae2efe7d3ffa60465b24"}, - {file = "matplotlib-3.7.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c308b255efb9b06b23874236ec0f10f026673ad6515f602027cc8ac7805352d"}, - {file = "matplotlib-3.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60c521e21031632aa0d87ca5ba0c1c05f3daacadb34c093585a0be6780f698e4"}, - {file = "matplotlib-3.7.2-cp311-cp311-win32.whl", hash = "sha256:26bede320d77e469fdf1bde212de0ec889169b04f7f1179b8930d66f82b30cbc"}, - {file = "matplotlib-3.7.2-cp311-cp311-win_amd64.whl", hash = "sha256:af4860132c8c05261a5f5f8467f1b269bf1c7c23902d75f2be57c4a7f2394b3e"}, - {file = "matplotlib-3.7.2-cp38-cp38-macosx_10_12_universal2.whl", hash = "sha256:a1733b8e84e7e40a9853e505fe68cc54339f97273bdfe6f3ed980095f769ddc7"}, - {file = "matplotlib-3.7.2-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:d9881356dc48e58910c53af82b57183879129fa30492be69058c5b0d9fddf391"}, - {file = "matplotlib-3.7.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f081c03f413f59390a80b3e351cc2b2ea0205839714dbc364519bcf51f4b56ca"}, - {file = "matplotlib-3.7.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:1cd120fca3407a225168238b790bd5c528f0fafde6172b140a2f3ab7a4ea63e9"}, - {file = "matplotlib-3.7.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:a2c1590b90aa7bd741b54c62b78de05d4186271e34e2377e0289d943b3522273"}, - {file = "matplotlib-3.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6d2ff3c984b8a569bc1383cd468fc06b70d7b59d5c2854ca39f1436ae8394117"}, - {file = "matplotlib-3.7.2-cp38-cp38-win32.whl", hash = "sha256:5dea00b62d28654b71ca92463656d80646675628d0828e08a5f3b57e12869e13"}, - {file = "matplotlib-3.7.2-cp38-cp38-win_amd64.whl", hash = "sha256:0f506a1776ee94f9e131af1ac6efa6e5bc7cb606a3e389b0ccb6e657f60bb676"}, - {file = "matplotlib-3.7.2-cp39-cp39-macosx_10_12_universal2.whl", hash = "sha256:6515e878f91894c2e4340d81f0911857998ccaf04dbc1bba781e3d89cbf70608"}, - {file = "matplotlib-3.7.2-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:71f7a8c6b124e904db550f5b9fe483d28b896d4135e45c4ea381ad3b8a0e3256"}, - {file = "matplotlib-3.7.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:12f01b92ecd518e0697da4d97d163b2b3aa55eb3eb4e2c98235b3396d7dad55f"}, - {file = "matplotlib-3.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a7e28d6396563955f7af437894a36bf2b279462239a41028323e04b85179058b"}, - {file = "matplotlib-3.7.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbcf59334ff645e6a67cd5f78b4b2cdb76384cdf587fa0d2dc85f634a72e1a3e"}, - {file = "matplotlib-3.7.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:318c89edde72ff95d8df67d82aca03861240512994a597a435a1011ba18dbc7f"}, - {file = "matplotlib-3.7.2-cp39-cp39-win32.whl", hash = "sha256:ce55289d5659b5b12b3db4dc9b7075b70cef5631e56530f14b2945e8836f2d20"}, - {file = "matplotlib-3.7.2-cp39-cp39-win_amd64.whl", hash = "sha256:2ecb5be2b2815431c81dc115667e33da0f5a1bcf6143980d180d09a717c4a12e"}, - {file = "matplotlib-3.7.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:fdcd28360dbb6203fb5219b1a5658df226ac9bebc2542a9e8f457de959d713d0"}, - {file = "matplotlib-3.7.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0c3cca3e842b11b55b52c6fb8bd6a4088693829acbfcdb3e815fa9b7d5c92c1b"}, - {file = "matplotlib-3.7.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ebf577c7a6744e9e1bd3fee45fc74a02710b214f94e2bde344912d85e0c9af7c"}, - {file = "matplotlib-3.7.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:936bba394682049919dda062d33435b3be211dc3dcaa011e09634f060ec878b2"}, - {file = "matplotlib-3.7.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:bc221ffbc2150458b1cd71cdd9ddd5bb37962b036e41b8be258280b5b01da1dd"}, - {file = "matplotlib-3.7.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:35d74ebdb3f71f112b36c2629cf32323adfbf42679e2751252acd468f5001c07"}, - {file = "matplotlib-3.7.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:717157e61b3a71d3d26ad4e1770dc85156c9af435659a25ee6407dc866cb258d"}, - {file = "matplotlib-3.7.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:20f844d6be031948148ba49605c8b96dfe7d3711d1b63592830d650622458c11"}, - {file = "matplotlib-3.7.2.tar.gz", hash = "sha256:a8cdb91dddb04436bd2f098b8fdf4b81352e68cf4d2c6756fcc414791076569b"}, + {file = "matplotlib-3.7.4-cp310-cp310-macosx_10_12_universal2.whl", hash = "sha256:b71079239bd866bf56df023e5146de159cb0c7294e508830901f4d79e2d89385"}, + {file = "matplotlib-3.7.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:bf91a42f6274a64cb41189120b620c02e574535ff6671fa836cade7701b06fbd"}, + {file = "matplotlib-3.7.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f757e8b42841d6add0cb69b42497667f0d25a404dcd50bd923ec9904e38414c4"}, + {file = "matplotlib-3.7.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4dfee00aa4bd291e08bb9461831c26ce0da85ca9781bb8794f2025c6e925281"}, + {file = "matplotlib-3.7.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3640f33632beb3993b698b1be9d1c262b742761d6101f3c27b87b2185d25c875"}, + {file = "matplotlib-3.7.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff539c4a17ecdf076ed808ee271ffae4a30dcb7e157b99ccae2c837262c07db6"}, + {file = "matplotlib-3.7.4-cp310-cp310-win32.whl", hash = "sha256:24b8f28af3e766195c09b780b15aa9f6710192b415ae7866b9c03dee7ec86370"}, + {file = "matplotlib-3.7.4-cp310-cp310-win_amd64.whl", hash = "sha256:3fa193286712c3b6c3cfa5fe8a6bb563f8c52cc750006c782296e0807ce5e799"}, + {file = "matplotlib-3.7.4-cp311-cp311-macosx_10_12_universal2.whl", hash = "sha256:b167f54cb4654b210c9624ec7b54e2b3b8de68c93a14668937e7e53df60770ec"}, + {file = "matplotlib-3.7.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:7dfe6821f1944cb35603ff22e21510941bbcce7ccf96095beffaac890d39ce77"}, + {file = "matplotlib-3.7.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3c557d9165320dff3c5f2bb99bfa0b6813d3e626423ff71c40d6bc23b83c3339"}, + {file = "matplotlib-3.7.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:08372696b3bb45c563472a552a705bfa0942f0a8ffe084db8a4e8f9153fbdf9d"}, + {file = "matplotlib-3.7.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:81e1a7ac818000e8ac3ca696c3fdc501bc2d3adc89005e7b4e22ee5e9d51de98"}, + {file = "matplotlib-3.7.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:390920a3949906bc4b0216198d378f2a640c36c622e3584dd0c79a7c59ae9f50"}, + {file = "matplotlib-3.7.4-cp311-cp311-win32.whl", hash = "sha256:62e094d8da26294634da9e7f1856beee3978752b1b530c8e1763d2faed60cc10"}, + {file = "matplotlib-3.7.4-cp311-cp311-win_amd64.whl", hash = "sha256:f8fc2df756105784e650605e024d36dc2d048d68e5c1b26df97ee25d1bd41f9f"}, + {file = "matplotlib-3.7.4-cp312-cp312-macosx_10_12_universal2.whl", hash = "sha256:568574756127791903604e315c11aef9f255151e4cfe20ec603a70f9dda8e259"}, + {file = "matplotlib-3.7.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:7d479aac338195e2199a8cfc03c4f2f55914e6a120177edae79e0340a6406457"}, + {file = "matplotlib-3.7.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:32183d4be84189a4c52b4b8861434d427d9118db2cec32986f98ed6c02dcfbb6"}, + {file = "matplotlib-3.7.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0037d066cca1f4bda626c507cddeb6f7da8283bc6a214da2db13ff2162933c52"}, + {file = "matplotlib-3.7.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:44856632ebce88abd8efdc0a0dceec600418dcac06b72ae77af0019d260aa243"}, + {file = "matplotlib-3.7.4-cp312-cp312-win_amd64.whl", hash = "sha256:632fc938c22117d4241411191cfb88ac264a4c0a9ac702244641ddf30f0d739c"}, + {file = "matplotlib-3.7.4-cp38-cp38-macosx_10_12_universal2.whl", hash = "sha256:ce163be048613b9d1962273708cc97e09ca05d37312e670d166cf332b80bbaff"}, + {file = "matplotlib-3.7.4-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:e680f49bb8052ba3b2698e370155d2b4afb49f9af1cc611a26579d5981e2852a"}, + {file = "matplotlib-3.7.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:0604880e4327114054199108b7390f987f4f40ee5ce728985836889e11a780ba"}, + {file = "matplotlib-3.7.4-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:1e6abcde6fc52475f9d6a12b9f1792aee171ce7818ef6df5d61cb0b82816e6e8"}, + {file = "matplotlib-3.7.4-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f59a70e2ec3212033ef6633ed07682da03f5249379722512a3a2a26a7d9a738e"}, + {file = "matplotlib-3.7.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7a9981b2a2dd9da06eca4ab5855d09b54b8ce7377c3e0e3957767b83219d652d"}, + {file = "matplotlib-3.7.4-cp38-cp38-win32.whl", hash = "sha256:83859ac26839660ecd164ee8311272074250b915ac300f9b2eccc84410f8953b"}, + {file = "matplotlib-3.7.4-cp38-cp38-win_amd64.whl", hash = "sha256:7a7709796ac59fe8debde68272388be6ed449c8971362eb5b60d280eac8dadde"}, + {file = "matplotlib-3.7.4-cp39-cp39-macosx_10_12_universal2.whl", hash = "sha256:b1d70bc1ea1bf110bec64f4578de3e14947909a8887df4c1fd44492eca487955"}, + {file = "matplotlib-3.7.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:c83f49e795a5de6c168876eea723f5b88355202f9603c55977f5356213aa8280"}, + {file = "matplotlib-3.7.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5c9133f230945fe10652eb33e43642e933896194ef6a4f8d5e79bb722bdb2000"}, + {file = "matplotlib-3.7.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:798ff59022eeb276380ce9a73ba35d13c3d1499ab9b73d194fd07f1b0a41c304"}, + {file = "matplotlib-3.7.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1707b20b25e90538c2ce8d4409e30f0ef1df4017cc65ad0439633492a973635b"}, + {file = "matplotlib-3.7.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8e6227ca8492baeef873cdd8e169a318efb5c3a25ce94e69727e7f964995b0b1"}, + {file = "matplotlib-3.7.4-cp39-cp39-win32.whl", hash = "sha256:5661c8639aded7d1bbf781373a359011cb1dd09199dee49043e9e68dd16f07ba"}, + {file = "matplotlib-3.7.4-cp39-cp39-win_amd64.whl", hash = "sha256:55eec941a4743f0bd3e5b8ee180e36b7ea8e62f867bf2613937c9f01b9ac06a2"}, + {file = "matplotlib-3.7.4-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:ab16868714e5cc90ec8f7ff5d83d23bcd6559224d8e9cb5227c9f58748889fe8"}, + {file = "matplotlib-3.7.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0c698b33f9a3f0b127a8e614c8fb4087563bb3caa9c9d95298722fa2400cdd3f"}, + {file = "matplotlib-3.7.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:be3493bbcb4d255cb71de1f9050ac71682fce21a56089eadbcc8e21784cb12ee"}, + {file = "matplotlib-3.7.4-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:f8c725d1dd2901b2e7ec6cd64165e00da2978cc23d4143cb9ef745bec88e6b04"}, + {file = "matplotlib-3.7.4-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:286332f8f45f8ffde2d2119b9fdd42153dccd5025fa9f451b4a3b5c086e26da5"}, + {file = "matplotlib-3.7.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:116ef0b43aa00ff69260b4cce39c571e4b8c6f893795b708303fa27d9b9d7548"}, + {file = "matplotlib-3.7.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c90590d4b46458677d80bc3218f3f1ac11fc122baa9134e0cb5b3e8fc3714052"}, + {file = "matplotlib-3.7.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:de7c07069687be64fd9d119da3122ba13a8d399eccd3f844815f0dc78a870b2c"}, + {file = "matplotlib-3.7.4.tar.gz", hash = "sha256:7cd4fef8187d1dd0d9dcfdbaa06ac326d396fb8c71c647129f0bf56835d77026"}, ] [package.dependencies] @@ -632,10 +692,10 @@ cycler = ">=0.10" fonttools = ">=4.22.0" importlib-resources = {version = ">=3.2.0", markers = "python_version < \"3.10\""} kiwisolver = ">=1.0.1" -numpy = ">=1.20" +numpy = ">=1.20,<2" packaging = ">=20.0" pillow = ">=6.2.0" -pyparsing = ">=2.3.1,<3.1" +pyparsing = ">=2.3.1" python-dateutil = ">=2.7" [[package]] @@ -649,17 +709,6 @@ files = [ {file = "mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba"}, ] -[[package]] -name = "mypy-extensions" -version = "1.0.0" -description = "Type system extensions for programs checked with the mypy type checker." -optional = false -python-versions = ">=3.5" -files = [ - {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, - {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, -] - [[package]] name = "numpy" version = "1.24.4" @@ -699,24 +748,43 @@ files = [ [[package]] name = "opencv-python-headless" -version = "4.8.0.76" +version = "4.8.1.78" description = "Wrapper package for OpenCV python bindings." optional = false python-versions = ">=3.6" files = [ - {file = "opencv-python-headless-4.8.0.76.tar.gz", hash = "sha256:bc15726187dae26d8a08777faf6bc71d38f20c785c102677f58ba0e935003afb"}, - {file = "opencv_python_headless-4.8.0.76-cp37-abi3-macosx_10_16_x86_64.whl", hash = "sha256:f85d2e3b9d952db35d31f9db8882d073c903921b72b8db1cfed8bbc75e8d3e63"}, - {file = "opencv_python_headless-4.8.0.76-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:8ee3bf1c9086493c340c6a87899f1c7778d729de92bce8560b8c31ab8a9cdf79"}, - {file = "opencv_python_headless-4.8.0.76-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c675b8dec6298ba6a1eec2ce24077a393b4236a043f68dfacb06bf594354ce06"}, - {file = "opencv_python_headless-4.8.0.76-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:220d2e292fa45ef0582aab730460bbc15cfe61f2089208167a372ccf76f01e21"}, - {file = "opencv_python_headless-4.8.0.76-cp37-abi3-win32.whl", hash = "sha256:df0608de207ae9b094ad9eaf1a475cf6e9a069fb12cd289d4a18cefdab2f8aa8"}, - {file = "opencv_python_headless-4.8.0.76-cp37-abi3-win_amd64.whl", hash = "sha256:9c094faf6ec7bd360244647b26ebdf8f54edec1d9292cb9179fff9badcca7be8"}, + {file = "opencv-python-headless-4.8.1.78.tar.gz", hash = "sha256:bc7197b42352f6f865c302a49140b889ec7cd957dd697e2d7fc016ad0d3f28f1"}, + {file = "opencv_python_headless-4.8.1.78-cp37-abi3-macosx_10_16_x86_64.whl", hash = "sha256:f3a33f644249f9ce1c913eac580e4b3ef4ce7cab0a71900274708959c2feb5e3"}, + {file = "opencv_python_headless-4.8.1.78-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:2c7d45721df9801c4dcd34683a15caa0e30f38b185263fec04a6eb274bc720f0"}, + {file = "opencv_python_headless-4.8.1.78-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b6bd6e1132b6f5dcb3a5bfe30fc4d341a7bfb26134da349a06c9255288ded94"}, + {file = "opencv_python_headless-4.8.1.78-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58e70d2f0915fe23e02c6e405588276c9397844a47d38b9c87fac5f7f9ba2dcc"}, + {file = "opencv_python_headless-4.8.1.78-cp37-abi3-win32.whl", hash = "sha256:382f8c7a6a14f80091284eecedd52cee4812231ee0eff1118592197b538d9252"}, + {file = "opencv_python_headless-4.8.1.78-cp37-abi3-win_amd64.whl", hash = "sha256:0a0f1e9f836f7d5bad1dd164694944c8761711cbdf4b36ebbd4815a8ef731079"}, +] + +[package.dependencies] +numpy = {version = ">=1.23.5", markers = "python_version >= \"3.11\""} + +[[package]] +name = "opencv-python-headless" +version = "4.9.0.80" +description = "Wrapper package for OpenCV python bindings." +optional = false +python-versions = ">=3.6" +files = [ + {file = "opencv-python-headless-4.9.0.80.tar.gz", hash = "sha256:71a4cd8cf7c37122901d8e81295db7fb188730e33a0e40039a4e59c1030b0958"}, + {file = "opencv_python_headless-4.9.0.80-cp37-abi3-macosx_10_16_x86_64.whl", hash = "sha256:2ea8a2edc4db87841991b2fbab55fc07b97ecb602e0f47d5d485bd75cee17c1a"}, + {file = "opencv_python_headless-4.9.0.80-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:e0ee54e27be493e8f7850847edae3128e18b540dac1d7b2e4001b8944e11e1c6"}, + {file = "opencv_python_headless-4.9.0.80-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:57ce2865e8fec431c6f97a81e9faaf23fa5be61011d0a75ccf47a3c0d65fa73d"}, + {file = "opencv_python_headless-4.9.0.80-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:976656362d68d9f40a5c66f83901430538002465f7db59142784f3893918f3df"}, + {file = "opencv_python_headless-4.9.0.80-cp37-abi3-win32.whl", hash = "sha256:11e3849d83e6651d4e7699aadda9ec7ed7c38957cbbcb99db074f2a2d2de9670"}, + {file = "opencv_python_headless-4.9.0.80-cp37-abi3-win_amd64.whl", hash = "sha256:a8056c2cb37cd65dfcdf4153ca16f7362afcf3a50d600d6bb69c660fc61ee29c"}, ] [package.dependencies] numpy = [ {version = ">=1.21.0", markers = "python_version <= \"3.9\" and platform_system == \"Darwin\" and platform_machine == \"arm64\" and python_version >= \"3.8\""}, - {version = ">=1.23.5", markers = "python_version >= \"3.11\""}, + {version = ">=1.23.5", markers = "python_version >= \"3.11\" and python_version < \"3.12\""}, {version = ">=1.21.4", markers = "python_version >= \"3.10\" and platform_system == \"Darwin\" and python_version < \"3.11\""}, {version = ">=1.21.2", markers = "platform_system != \"Darwin\" and python_version >= \"3.10\" and python_version < \"3.11\""}, {version = ">=1.19.3", markers = "platform_system == \"Linux\" and platform_machine == \"aarch64\" and python_version >= \"3.8\" and python_version < \"3.10\" or python_version > \"3.9\" and python_version < \"3.10\" or python_version >= \"3.9\" and platform_system != \"Darwin\" and python_version < \"3.10\" or python_version >= \"3.9\" and platform_machine != \"arm64\" and python_version < \"3.10\""}, @@ -725,24 +793,13 @@ numpy = [ [[package]] name = "packaging" -version = "23.1" +version = "23.2" description = "Core utilities for Python packages" optional = false python-versions = ">=3.7" files = [ - {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, - {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, -] - -[[package]] -name = "pathspec" -version = "0.11.2" -description = "Utility library for gitignore style pattern matching of file paths." -optional = false -python-versions = ">=3.7" -files = [ - {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, - {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, + {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, + {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, ] [[package]] @@ -766,102 +823,103 @@ Pillow = ">=9.2.0,<11.0.0" [[package]] name = "pillow" -version = "10.0.0" +version = "10.2.0" description = "Python Imaging Library (Fork)" optional = false python-versions = ">=3.8" files = [ - {file = "Pillow-10.0.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:1f62406a884ae75fb2f818694469519fb685cc7eaff05d3451a9ebe55c646891"}, - {file = "Pillow-10.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d5db32e2a6ccbb3d34d87c87b432959e0db29755727afb37290e10f6e8e62614"}, - {file = "Pillow-10.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edf4392b77bdc81f36e92d3a07a5cd072f90253197f4a52a55a8cec48a12483b"}, - {file = "Pillow-10.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:520f2a520dc040512699f20fa1c363eed506e94248d71f85412b625026f6142c"}, - {file = "Pillow-10.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:8c11160913e3dd06c8ffdb5f233a4f254cb449f4dfc0f8f4549eda9e542c93d1"}, - {file = "Pillow-10.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a74ba0c356aaa3bb8e3eb79606a87669e7ec6444be352870623025d75a14a2bf"}, - {file = "Pillow-10.0.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d5d0dae4cfd56969d23d94dc8e89fb6a217be461c69090768227beb8ed28c0a3"}, - {file = "Pillow-10.0.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22c10cc517668d44b211717fd9775799ccec4124b9a7f7b3635fc5386e584992"}, - {file = "Pillow-10.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:dffe31a7f47b603318c609f378ebcd57f1554a3a6a8effbc59c3c69f804296de"}, - {file = "Pillow-10.0.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:9fb218c8a12e51d7ead2a7c9e101a04982237d4855716af2e9499306728fb485"}, - {file = "Pillow-10.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d35e3c8d9b1268cbf5d3670285feb3528f6680420eafe35cccc686b73c1e330f"}, - {file = "Pillow-10.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ed64f9ca2f0a95411e88a4efbd7a29e5ce2cea36072c53dd9d26d9c76f753b3"}, - {file = "Pillow-10.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b6eb5502f45a60a3f411c63187db83a3d3107887ad0d036c13ce836f8a36f1d"}, - {file = "Pillow-10.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:c1fbe7621c167ecaa38ad29643d77a9ce7311583761abf7836e1510c580bf3dd"}, - {file = "Pillow-10.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:cd25d2a9d2b36fcb318882481367956d2cf91329f6892fe5d385c346c0649629"}, - {file = "Pillow-10.0.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:3b08d4cc24f471b2c8ca24ec060abf4bebc6b144cb89cba638c720546b1cf538"}, - {file = "Pillow-10.0.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d737a602fbd82afd892ca746392401b634e278cb65d55c4b7a8f48e9ef8d008d"}, - {file = "Pillow-10.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:3a82c40d706d9aa9734289740ce26460a11aeec2d9c79b7af87bb35f0073c12f"}, - {file = "Pillow-10.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:bc2ec7c7b5d66b8ec9ce9f720dbb5fa4bace0f545acd34870eff4a369b44bf37"}, - {file = "Pillow-10.0.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:d80cf684b541685fccdd84c485b31ce73fc5c9b5d7523bf1394ce134a60c6883"}, - {file = "Pillow-10.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:76de421f9c326da8f43d690110f0e79fe3ad1e54be811545d7d91898b4c8493e"}, - {file = "Pillow-10.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:81ff539a12457809666fef6624684c008e00ff6bf455b4b89fd00a140eecd640"}, - {file = "Pillow-10.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce543ed15570eedbb85df19b0a1a7314a9c8141a36ce089c0a894adbfccb4568"}, - {file = "Pillow-10.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:685ac03cc4ed5ebc15ad5c23bc555d68a87777586d970c2c3e216619a5476223"}, - {file = "Pillow-10.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:d72e2ecc68a942e8cf9739619b7f408cc7b272b279b56b2c83c6123fcfa5cdff"}, - {file = "Pillow-10.0.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d50b6aec14bc737742ca96e85d6d0a5f9bfbded018264b3b70ff9d8c33485551"}, - {file = "Pillow-10.0.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:00e65f5e822decd501e374b0650146063fbb30a7264b4d2744bdd7b913e0cab5"}, - {file = "Pillow-10.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:f31f9fdbfecb042d046f9d91270a0ba28368a723302786c0009ee9b9f1f60199"}, - {file = "Pillow-10.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:1ce91b6ec08d866b14413d3f0bbdea7e24dfdc8e59f562bb77bc3fe60b6144ca"}, - {file = "Pillow-10.0.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:349930d6e9c685c089284b013478d6f76e3a534e36ddfa912cde493f235372f3"}, - {file = "Pillow-10.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3a684105f7c32488f7153905a4e3015a3b6c7182e106fe3c37fbb5ef3e6994c3"}, - {file = "Pillow-10.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4f69b3700201b80bb82c3a97d5e9254084f6dd5fb5b16fc1a7b974260f89f43"}, - {file = "Pillow-10.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3f07ea8d2f827d7d2a49ecf1639ec02d75ffd1b88dcc5b3a61bbb37a8759ad8d"}, - {file = "Pillow-10.0.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:040586f7d37b34547153fa383f7f9aed68b738992380ac911447bb78f2abe530"}, - {file = "Pillow-10.0.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:f88a0b92277de8e3ca715a0d79d68dc82807457dae3ab8699c758f07c20b3c51"}, - {file = "Pillow-10.0.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:c7cf14a27b0d6adfaebb3ae4153f1e516df54e47e42dcc073d7b3d76111a8d86"}, - {file = "Pillow-10.0.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:3400aae60685b06bb96f99a21e1ada7bc7a413d5f49bce739828ecd9391bb8f7"}, - {file = "Pillow-10.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:dbc02381779d412145331789b40cc7b11fdf449e5d94f6bc0b080db0a56ea3f0"}, - {file = "Pillow-10.0.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:9211e7ad69d7c9401cfc0e23d49b69ca65ddd898976d660a2fa5904e3d7a9baa"}, - {file = "Pillow-10.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:faaf07ea35355b01a35cb442dd950d8f1bb5b040a7787791a535de13db15ed90"}, - {file = "Pillow-10.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c9f72a021fbb792ce98306ffb0c348b3c9cb967dce0f12a49aa4c3d3fdefa967"}, - {file = "Pillow-10.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9f7c16705f44e0504a3a2a14197c1f0b32a95731d251777dcb060aa83022cb2d"}, - {file = "Pillow-10.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:76edb0a1fa2b4745fb0c99fb9fb98f8b180a1bbceb8be49b087e0b21867e77d3"}, - {file = "Pillow-10.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:368ab3dfb5f49e312231b6f27b8820c823652b7cd29cfbd34090565a015e99ba"}, - {file = "Pillow-10.0.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:608bfdee0d57cf297d32bcbb3c728dc1da0907519d1784962c5f0c68bb93e5a3"}, - {file = "Pillow-10.0.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5c6e3df6bdd396749bafd45314871b3d0af81ff935b2d188385e970052091017"}, - {file = "Pillow-10.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:7be600823e4c8631b74e4a0d38384c73f680e6105a7d3c6824fcf226c178c7e6"}, - {file = "Pillow-10.0.0-pp310-pypy310_pp73-macosx_10_10_x86_64.whl", hash = "sha256:92be919bbc9f7d09f7ae343c38f5bb21c973d2576c1d45600fce4b74bafa7ac0"}, - {file = "Pillow-10.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8182b523b2289f7c415f589118228d30ac8c355baa2f3194ced084dac2dbba"}, - {file = "Pillow-10.0.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:38250a349b6b390ee6047a62c086d3817ac69022c127f8a5dc058c31ccef17f3"}, - {file = "Pillow-10.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:88af2003543cc40c80f6fca01411892ec52b11021b3dc22ec3bc9d5afd1c5334"}, - {file = "Pillow-10.0.0-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:c189af0545965fa8d3b9613cfdb0cd37f9d71349e0f7750e1fd704648d475ed2"}, - {file = "Pillow-10.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce7b031a6fc11365970e6a5686d7ba8c63e4c1cf1ea143811acbb524295eabed"}, - {file = "Pillow-10.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:db24668940f82321e746773a4bc617bfac06ec831e5c88b643f91f122a785684"}, - {file = "Pillow-10.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:efe8c0681042536e0d06c11f48cebe759707c9e9abf880ee213541c5b46c5bf3"}, - {file = "Pillow-10.0.0.tar.gz", hash = "sha256:9c82b5b3e043c7af0d95792d0d20ccf68f61a1fec6b3530e718b688422727396"}, + {file = "pillow-10.2.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:7823bdd049099efa16e4246bdf15e5a13dbb18a51b68fa06d6c1d4d8b99a796e"}, + {file = "pillow-10.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:83b2021f2ade7d1ed556bc50a399127d7fb245e725aa0113ebd05cfe88aaf588"}, + {file = "pillow-10.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fad5ff2f13d69b7e74ce5b4ecd12cc0ec530fcee76356cac6742785ff71c452"}, + {file = "pillow-10.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da2b52b37dad6d9ec64e653637a096905b258d2fc2b984c41ae7d08b938a67e4"}, + {file = "pillow-10.2.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:47c0995fc4e7f79b5cfcab1fc437ff2890b770440f7696a3ba065ee0fd496563"}, + {file = "pillow-10.2.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:322bdf3c9b556e9ffb18f93462e5f749d3444ce081290352c6070d014c93feb2"}, + {file = "pillow-10.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:51f1a1bffc50e2e9492e87d8e09a17c5eea8409cda8d3f277eb6edc82813c17c"}, + {file = "pillow-10.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:69ffdd6120a4737710a9eee73e1d2e37db89b620f702754b8f6e62594471dee0"}, + {file = "pillow-10.2.0-cp310-cp310-win32.whl", hash = "sha256:c6dafac9e0f2b3c78df97e79af707cdc5ef8e88208d686a4847bab8266870023"}, + {file = "pillow-10.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:aebb6044806f2e16ecc07b2a2637ee1ef67a11840a66752751714a0d924adf72"}, + {file = "pillow-10.2.0-cp310-cp310-win_arm64.whl", hash = "sha256:7049e301399273a0136ff39b84c3678e314f2158f50f517bc50285fb5ec847ad"}, + {file = "pillow-10.2.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:35bb52c37f256f662abdfa49d2dfa6ce5d93281d323a9af377a120e89a9eafb5"}, + {file = "pillow-10.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9c23f307202661071d94b5e384e1e1dc7dfb972a28a2310e4ee16103e66ddb67"}, + {file = "pillow-10.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:773efe0603db30c281521a7c0214cad7836c03b8ccff897beae9b47c0b657d61"}, + {file = "pillow-10.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11fa2e5984b949b0dd6d7a94d967743d87c577ff0b83392f17cb3990d0d2fd6e"}, + {file = "pillow-10.2.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:716d30ed977be8b37d3ef185fecb9e5a1d62d110dfbdcd1e2a122ab46fddb03f"}, + {file = "pillow-10.2.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:a086c2af425c5f62a65e12fbf385f7c9fcb8f107d0849dba5839461a129cf311"}, + {file = "pillow-10.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c8de2789052ed501dd829e9cae8d3dcce7acb4777ea4a479c14521c942d395b1"}, + {file = "pillow-10.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:609448742444d9290fd687940ac0b57fb35e6fd92bdb65386e08e99af60bf757"}, + {file = "pillow-10.2.0-cp311-cp311-win32.whl", hash = "sha256:823ef7a27cf86df6597fa0671066c1b596f69eba53efa3d1e1cb8b30f3533068"}, + {file = "pillow-10.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:1da3b2703afd040cf65ec97efea81cfba59cdbed9c11d8efc5ab09df9509fc56"}, + {file = "pillow-10.2.0-cp311-cp311-win_arm64.whl", hash = "sha256:edca80cbfb2b68d7b56930b84a0e45ae1694aeba0541f798e908a49d66b837f1"}, + {file = "pillow-10.2.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:1b5e1b74d1bd1b78bc3477528919414874748dd363e6272efd5abf7654e68bef"}, + {file = "pillow-10.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0eae2073305f451d8ecacb5474997c08569fb4eb4ac231ffa4ad7d342fdc25ac"}, + {file = "pillow-10.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7c2286c23cd350b80d2fc9d424fc797575fb16f854b831d16fd47ceec078f2c"}, + {file = "pillow-10.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e23412b5c41e58cec602f1135c57dfcf15482013ce6e5f093a86db69646a5aa"}, + {file = "pillow-10.2.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:52a50aa3fb3acb9cf7213573ef55d31d6eca37f5709c69e6858fe3bc04a5c2a2"}, + {file = "pillow-10.2.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:127cee571038f252a552760076407f9cff79761c3d436a12af6000cd182a9d04"}, + {file = "pillow-10.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:8d12251f02d69d8310b046e82572ed486685c38f02176bd08baf216746eb947f"}, + {file = "pillow-10.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:54f1852cd531aa981bc0965b7d609f5f6cc8ce8c41b1139f6ed6b3c54ab82bfb"}, + {file = "pillow-10.2.0-cp312-cp312-win32.whl", hash = "sha256:257d8788df5ca62c980314053197f4d46eefedf4e6175bc9412f14412ec4ea2f"}, + {file = "pillow-10.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:154e939c5f0053a383de4fd3d3da48d9427a7e985f58af8e94d0b3c9fcfcf4f9"}, + {file = "pillow-10.2.0-cp312-cp312-win_arm64.whl", hash = "sha256:f379abd2f1e3dddb2b61bc67977a6b5a0a3f7485538bcc6f39ec76163891ee48"}, + {file = "pillow-10.2.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:8373c6c251f7ef8bda6675dd6d2b3a0fcc31edf1201266b5cf608b62a37407f9"}, + {file = "pillow-10.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:870ea1ada0899fd0b79643990809323b389d4d1d46c192f97342eeb6ee0b8483"}, + {file = "pillow-10.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4b6b1e20608493548b1f32bce8cca185bf0480983890403d3b8753e44077129"}, + {file = "pillow-10.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3031709084b6e7852d00479fd1d310b07d0ba82765f973b543c8af5061cf990e"}, + {file = "pillow-10.2.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:3ff074fc97dd4e80543a3e91f69d58889baf2002b6be64347ea8cf5533188213"}, + {file = "pillow-10.2.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:cb4c38abeef13c61d6916f264d4845fab99d7b711be96c326b84df9e3e0ff62d"}, + {file = "pillow-10.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b1b3020d90c2d8e1dae29cf3ce54f8094f7938460fb5ce8bc5c01450b01fbaf6"}, + {file = "pillow-10.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:170aeb00224ab3dc54230c797f8404507240dd868cf52066f66a41b33169bdbe"}, + {file = "pillow-10.2.0-cp38-cp38-win32.whl", hash = "sha256:c4225f5220f46b2fde568c74fca27ae9771536c2e29d7c04f4fb62c83275ac4e"}, + {file = "pillow-10.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:0689b5a8c5288bc0504d9fcee48f61a6a586b9b98514d7d29b840143d6734f39"}, + {file = "pillow-10.2.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:b792a349405fbc0163190fde0dc7b3fef3c9268292586cf5645598b48e63dc67"}, + {file = "pillow-10.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c570f24be1e468e3f0ce7ef56a89a60f0e05b30a3669a459e419c6eac2c35364"}, + {file = "pillow-10.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8ecd059fdaf60c1963c58ceb8997b32e9dc1b911f5da5307aab614f1ce5c2fb"}, + {file = "pillow-10.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c365fd1703040de1ec284b176d6af5abe21b427cb3a5ff68e0759e1e313a5e7e"}, + {file = "pillow-10.2.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:70c61d4c475835a19b3a5aa42492409878bbca7438554a1f89d20d58a7c75c01"}, + {file = "pillow-10.2.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b6f491cdf80ae540738859d9766783e3b3c8e5bd37f5dfa0b76abdecc5081f13"}, + {file = "pillow-10.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9d189550615b4948f45252d7f005e53c2040cea1af5b60d6f79491a6e147eef7"}, + {file = "pillow-10.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:49d9ba1ed0ef3e061088cd1e7538a0759aab559e2e0a80a36f9fd9d8c0c21591"}, + {file = "pillow-10.2.0-cp39-cp39-win32.whl", hash = "sha256:babf5acfede515f176833ed6028754cbcd0d206f7f614ea3447d67c33be12516"}, + {file = "pillow-10.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:0304004f8067386b477d20a518b50f3fa658a28d44e4116970abfcd94fac34a8"}, + {file = "pillow-10.2.0-cp39-cp39-win_arm64.whl", hash = "sha256:0fb3e7fc88a14eacd303e90481ad983fd5b69c761e9e6ef94c983f91025da869"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-macosx_10_10_x86_64.whl", hash = "sha256:322209c642aabdd6207517e9739c704dc9f9db943015535783239022002f054a"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3eedd52442c0a5ff4f887fab0c1c0bb164d8635b32c894bc1faf4c618dd89df2"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb28c753fd5eb3dd859b4ee95de66cc62af91bcff5db5f2571d32a520baf1f04"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:33870dc4653c5017bf4c8873e5488d8f8d5f8935e2f1fb9a2208c47cdd66efd2"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:3c31822339516fb3c82d03f30e22b1d038da87ef27b6a78c9549888f8ceda39a"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:a2b56ba36e05f973d450582fb015594aaa78834fefe8dfb8fcd79b93e64ba4c6"}, + {file = "pillow-10.2.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:d8e6aeb9201e655354b3ad049cb77d19813ad4ece0df1249d3c793de3774f8c7"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:2247178effb34a77c11c0e8ac355c7a741ceca0a732b27bf11e747bbc950722f"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:15587643b9e5eb26c48e49a7b33659790d28f190fc514a322d55da2fb5c2950e"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753cd8f2086b2b80180d9b3010dd4ed147efc167c90d3bf593fe2af21265e5a5"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:7c8f97e8e7a9009bcacbe3766a36175056c12f9a44e6e6f2d5caad06dcfbf03b"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:d1b35bcd6c5543b9cb547dee3150c93008f8dd0f1fef78fc0cd2b141c5baf58a"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fe4c15f6c9285dc54ce6553a3ce908ed37c8f3825b5a51a15c91442bb955b868"}, + {file = "pillow-10.2.0.tar.gz", hash = "sha256:e87f0b2c78157e12d7686b27d63c070fd65d994e8ddae6f328e0dcf4a0cd007e"}, ] [package.extras] docs = ["furo", "olefile", "sphinx (>=2.4)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinx-removed-in", "sphinxext-opengraph"] +fpx = ["olefile"] +mic = ["olefile"] tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] - -[[package]] -name = "platformdirs" -version = "3.10.0" -description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." -optional = false -python-versions = ">=3.7" -files = [ - {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, - {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, -] - -[package.extras] -docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] +typing = ["typing-extensions"] +xmp = ["defusedxml"] [[package]] name = "pydantic" -version = "2.3.0" +version = "2.5.3" description = "Data validation using Python type hints" optional = false python-versions = ">=3.7" files = [ - {file = "pydantic-2.3.0-py3-none-any.whl", hash = "sha256:45b5e446c6dfaad9444819a293b921a40e1db1aa61ea08aede0522529ce90e81"}, - {file = "pydantic-2.3.0.tar.gz", hash = "sha256:1607cc106602284cd4a00882986570472f193fde9cb1259bceeaedb26aa79a6d"}, + {file = "pydantic-2.5.3-py3-none-any.whl", hash = "sha256:d0caf5954bee831b6bfe7e338c32b9e30c85dfe080c843680783ac2b631673b4"}, + {file = "pydantic-2.5.3.tar.gz", hash = "sha256:b3ef57c62535b0941697cce638c08900d87fcb67e29cfa99e8a68f747f393f7a"}, ] [package.dependencies] annotated-types = ">=0.4.0" -pydantic-core = "2.6.3" +pydantic-core = "2.14.6" typing-extensions = ">=4.6.1" [package.extras] @@ -869,117 +927,116 @@ email = ["email-validator (>=2.0.0)"] [[package]] name = "pydantic-core" -version = "2.6.3" +version = "2.14.6" description = "" optional = false python-versions = ">=3.7" files = [ - {file = "pydantic_core-2.6.3-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:1a0ddaa723c48af27d19f27f1c73bdc615c73686d763388c8683fe34ae777bad"}, - {file = "pydantic_core-2.6.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5cfde4fab34dd1e3a3f7f3db38182ab6c95e4ea91cf322242ee0be5c2f7e3d2f"}, - {file = "pydantic_core-2.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5493a7027bfc6b108e17c3383959485087d5942e87eb62bbac69829eae9bc1f7"}, - {file = "pydantic_core-2.6.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:84e87c16f582f5c753b7f39a71bd6647255512191be2d2dbf49458c4ef024588"}, - {file = "pydantic_core-2.6.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:522a9c4a4d1924facce7270c84b5134c5cabcb01513213662a2e89cf28c1d309"}, - {file = "pydantic_core-2.6.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aaafc776e5edc72b3cad1ccedb5fd869cc5c9a591f1213aa9eba31a781be9ac1"}, - {file = "pydantic_core-2.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a750a83b2728299ca12e003d73d1264ad0440f60f4fc9cee54acc489249b728"}, - {file = "pydantic_core-2.6.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9e8b374ef41ad5c461efb7a140ce4730661aadf85958b5c6a3e9cf4e040ff4bb"}, - {file = "pydantic_core-2.6.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b594b64e8568cf09ee5c9501ede37066b9fc41d83d58f55b9952e32141256acd"}, - {file = "pydantic_core-2.6.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:2a20c533cb80466c1d42a43a4521669ccad7cf2967830ac62c2c2f9cece63e7e"}, - {file = "pydantic_core-2.6.3-cp310-none-win32.whl", hash = "sha256:04fe5c0a43dec39aedba0ec9579001061d4653a9b53a1366b113aca4a3c05ca7"}, - {file = "pydantic_core-2.6.3-cp310-none-win_amd64.whl", hash = "sha256:6bf7d610ac8f0065a286002a23bcce241ea8248c71988bda538edcc90e0c39ad"}, - {file = "pydantic_core-2.6.3-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:6bcc1ad776fffe25ea5c187a028991c031a00ff92d012ca1cc4714087e575973"}, - {file = "pydantic_core-2.6.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:df14f6332834444b4a37685810216cc8fe1fe91f447332cd56294c984ecbff1c"}, - {file = "pydantic_core-2.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0b7486d85293f7f0bbc39b34e1d8aa26210b450bbd3d245ec3d732864009819"}, - {file = "pydantic_core-2.6.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a892b5b1871b301ce20d40b037ffbe33d1407a39639c2b05356acfef5536d26a"}, - {file = "pydantic_core-2.6.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:883daa467865e5766931e07eb20f3e8152324f0adf52658f4d302242c12e2c32"}, - {file = "pydantic_core-2.6.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d4eb77df2964b64ba190eee00b2312a1fd7a862af8918ec70fc2d6308f76ac64"}, - {file = "pydantic_core-2.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ce8c84051fa292a5dc54018a40e2a1926fd17980a9422c973e3ebea017aa8da"}, - {file = "pydantic_core-2.6.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:22134a4453bd59b7d1e895c455fe277af9d9d9fbbcb9dc3f4a97b8693e7e2c9b"}, - {file = "pydantic_core-2.6.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:02e1c385095efbd997311d85c6021d32369675c09bcbfff3b69d84e59dc103f6"}, - {file = "pydantic_core-2.6.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d79f1f2f7ebdb9b741296b69049ff44aedd95976bfee38eb4848820628a99b50"}, - {file = "pydantic_core-2.6.3-cp311-none-win32.whl", hash = "sha256:430ddd965ffd068dd70ef4e4d74f2c489c3a313adc28e829dd7262cc0d2dd1e8"}, - {file = "pydantic_core-2.6.3-cp311-none-win_amd64.whl", hash = "sha256:84f8bb34fe76c68c9d96b77c60cef093f5e660ef8e43a6cbfcd991017d375950"}, - {file = "pydantic_core-2.6.3-cp311-none-win_arm64.whl", hash = "sha256:5a2a3c9ef904dcdadb550eedf3291ec3f229431b0084666e2c2aa8ff99a103a2"}, - {file = "pydantic_core-2.6.3-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:8421cf496e746cf8d6b677502ed9a0d1e4e956586cd8b221e1312e0841c002d5"}, - {file = "pydantic_core-2.6.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:bb128c30cf1df0ab78166ded1ecf876620fb9aac84d2413e8ea1594b588c735d"}, - {file = "pydantic_core-2.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:37a822f630712817b6ecc09ccc378192ef5ff12e2c9bae97eb5968a6cdf3b862"}, - {file = "pydantic_core-2.6.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:240a015102a0c0cc8114f1cba6444499a8a4d0333e178bc504a5c2196defd456"}, - {file = "pydantic_core-2.6.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f90e5e3afb11268628c89f378f7a1ea3f2fe502a28af4192e30a6cdea1e7d5e"}, - {file = "pydantic_core-2.6.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:340e96c08de1069f3d022a85c2a8c63529fd88709468373b418f4cf2c949fb0e"}, - {file = "pydantic_core-2.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1480fa4682e8202b560dcdc9eeec1005f62a15742b813c88cdc01d44e85308e5"}, - {file = "pydantic_core-2.6.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f14546403c2a1d11a130b537dda28f07eb6c1805a43dae4617448074fd49c282"}, - {file = "pydantic_core-2.6.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a87c54e72aa2ef30189dc74427421e074ab4561cf2bf314589f6af5b37f45e6d"}, - {file = "pydantic_core-2.6.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:f93255b3e4d64785554e544c1c76cd32f4a354fa79e2eeca5d16ac2e7fdd57aa"}, - {file = "pydantic_core-2.6.3-cp312-none-win32.whl", hash = "sha256:f70dc00a91311a1aea124e5f64569ea44c011b58433981313202c46bccbec0e1"}, - {file = "pydantic_core-2.6.3-cp312-none-win_amd64.whl", hash = "sha256:23470a23614c701b37252618e7851e595060a96a23016f9a084f3f92f5ed5881"}, - {file = "pydantic_core-2.6.3-cp312-none-win_arm64.whl", hash = "sha256:1ac1750df1b4339b543531ce793b8fd5c16660a95d13aecaab26b44ce11775e9"}, - {file = "pydantic_core-2.6.3-cp37-cp37m-macosx_10_7_x86_64.whl", hash = "sha256:a53e3195f134bde03620d87a7e2b2f2046e0e5a8195e66d0f244d6d5b2f6d31b"}, - {file = "pydantic_core-2.6.3-cp37-cp37m-macosx_11_0_arm64.whl", hash = "sha256:f2969e8f72c6236c51f91fbb79c33821d12a811e2a94b7aa59c65f8dbdfad34a"}, - {file = "pydantic_core-2.6.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:672174480a85386dd2e681cadd7d951471ad0bb028ed744c895f11f9d51b9ebe"}, - {file = "pydantic_core-2.6.3-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:002d0ea50e17ed982c2d65b480bd975fc41086a5a2f9c924ef8fc54419d1dea3"}, - {file = "pydantic_core-2.6.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3ccc13afee44b9006a73d2046068d4df96dc5b333bf3509d9a06d1b42db6d8bf"}, - {file = "pydantic_core-2.6.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:439a0de139556745ae53f9cc9668c6c2053444af940d3ef3ecad95b079bc9987"}, - {file = "pydantic_core-2.6.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d63b7545d489422d417a0cae6f9898618669608750fc5e62156957e609e728a5"}, - {file = "pydantic_core-2.6.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b44c42edc07a50a081672e25dfe6022554b47f91e793066a7b601ca290f71e42"}, - {file = "pydantic_core-2.6.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:1c721bfc575d57305dd922e6a40a8fe3f762905851d694245807a351ad255c58"}, - {file = "pydantic_core-2.6.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:5e4a2cf8c4543f37f5dc881de6c190de08096c53986381daebb56a355be5dfe6"}, - {file = "pydantic_core-2.6.3-cp37-none-win32.whl", hash = "sha256:d9b4916b21931b08096efed090327f8fe78e09ae8f5ad44e07f5c72a7eedb51b"}, - {file = "pydantic_core-2.6.3-cp37-none-win_amd64.whl", hash = "sha256:a8acc9dedd304da161eb071cc7ff1326aa5b66aadec9622b2574ad3ffe225525"}, - {file = "pydantic_core-2.6.3-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:5e9c068f36b9f396399d43bfb6defd4cc99c36215f6ff33ac8b9c14ba15bdf6b"}, - {file = "pydantic_core-2.6.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e61eae9b31799c32c5f9b7be906be3380e699e74b2db26c227c50a5fc7988698"}, - {file = "pydantic_core-2.6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d85463560c67fc65cd86153a4975d0b720b6d7725cf7ee0b2d291288433fc21b"}, - {file = "pydantic_core-2.6.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9616567800bdc83ce136e5847d41008a1d602213d024207b0ff6cab6753fe645"}, - {file = "pydantic_core-2.6.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9e9b65a55bbabda7fccd3500192a79f6e474d8d36e78d1685496aad5f9dbd92c"}, - {file = "pydantic_core-2.6.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f468d520f47807d1eb5d27648393519655eadc578d5dd862d06873cce04c4d1b"}, - {file = "pydantic_core-2.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9680dd23055dd874173a3a63a44e7f5a13885a4cfd7e84814be71be24fba83db"}, - {file = "pydantic_core-2.6.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9a718d56c4d55efcfc63f680f207c9f19c8376e5a8a67773535e6f7e80e93170"}, - {file = "pydantic_core-2.6.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:8ecbac050856eb6c3046dea655b39216597e373aa8e50e134c0e202f9c47efec"}, - {file = "pydantic_core-2.6.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:788be9844a6e5c4612b74512a76b2153f1877cd845410d756841f6c3420230eb"}, - {file = "pydantic_core-2.6.3-cp38-none-win32.whl", hash = "sha256:07a1aec07333bf5adebd8264047d3dc518563d92aca6f2f5b36f505132399efc"}, - {file = "pydantic_core-2.6.3-cp38-none-win_amd64.whl", hash = "sha256:621afe25cc2b3c4ba05fff53525156d5100eb35c6e5a7cf31d66cc9e1963e378"}, - {file = "pydantic_core-2.6.3-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:813aab5bfb19c98ae370952b6f7190f1e28e565909bfc219a0909db168783465"}, - {file = "pydantic_core-2.6.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:50555ba3cb58f9861b7a48c493636b996a617db1a72c18da4d7f16d7b1b9952b"}, - {file = "pydantic_core-2.6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19e20f8baedd7d987bd3f8005c146e6bcbda7cdeefc36fad50c66adb2dd2da48"}, - {file = "pydantic_core-2.6.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b0a5d7edb76c1c57b95df719af703e796fc8e796447a1da939f97bfa8a918d60"}, - {file = "pydantic_core-2.6.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f06e21ad0b504658a3a9edd3d8530e8cea5723f6ea5d280e8db8efc625b47e49"}, - {file = "pydantic_core-2.6.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ea053cefa008fda40f92aab937fb9f183cf8752e41dbc7bc68917884454c6362"}, - {file = "pydantic_core-2.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:171a4718860790f66d6c2eda1d95dd1edf64f864d2e9f9115840840cf5b5713f"}, - {file = "pydantic_core-2.6.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5ed7ceca6aba5331ece96c0e328cd52f0dcf942b8895a1ed2642de50800b79d3"}, - {file = "pydantic_core-2.6.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:acafc4368b289a9f291e204d2c4c75908557d4f36bd3ae937914d4529bf62a76"}, - {file = "pydantic_core-2.6.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1aa712ba150d5105814e53cb141412217146fedc22621e9acff9236d77d2a5ef"}, - {file = "pydantic_core-2.6.3-cp39-none-win32.whl", hash = "sha256:44b4f937b992394a2e81a5c5ce716f3dcc1237281e81b80c748b2da6dd5cf29a"}, - {file = "pydantic_core-2.6.3-cp39-none-win_amd64.whl", hash = "sha256:9b33bf9658cb29ac1a517c11e865112316d09687d767d7a0e4a63d5c640d1b17"}, - {file = "pydantic_core-2.6.3-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:d7050899026e708fb185e174c63ebc2c4ee7a0c17b0a96ebc50e1f76a231c057"}, - {file = "pydantic_core-2.6.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:99faba727727b2e59129c59542284efebbddade4f0ae6a29c8b8d3e1f437beb7"}, - {file = "pydantic_core-2.6.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5fa159b902d22b283b680ef52b532b29554ea2a7fc39bf354064751369e9dbd7"}, - {file = "pydantic_core-2.6.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:046af9cfb5384f3684eeb3f58a48698ddab8dd870b4b3f67f825353a14441418"}, - {file = "pydantic_core-2.6.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:930bfe73e665ebce3f0da2c6d64455098aaa67e1a00323c74dc752627879fc67"}, - {file = "pydantic_core-2.6.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:85cc4d105747d2aa3c5cf3e37dac50141bff779545ba59a095f4a96b0a460e70"}, - {file = "pydantic_core-2.6.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:b25afe9d5c4f60dcbbe2b277a79be114e2e65a16598db8abee2a2dcde24f162b"}, - {file = "pydantic_core-2.6.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:e49ce7dc9f925e1fb010fc3d555250139df61fa6e5a0a95ce356329602c11ea9"}, - {file = "pydantic_core-2.6.3-pp37-pypy37_pp73-macosx_10_7_x86_64.whl", hash = "sha256:2dd50d6a1aef0426a1d0199190c6c43ec89812b1f409e7fe44cb0fbf6dfa733c"}, - {file = "pydantic_core-2.6.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6595b0d8c8711e8e1dc389d52648b923b809f68ac1c6f0baa525c6440aa0daa"}, - {file = "pydantic_core-2.6.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4ef724a059396751aef71e847178d66ad7fc3fc969a1a40c29f5aac1aa5f8784"}, - {file = "pydantic_core-2.6.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3c8945a105f1589ce8a693753b908815e0748f6279959a4530f6742e1994dcb6"}, - {file = "pydantic_core-2.6.3-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:c8c6660089a25d45333cb9db56bb9e347241a6d7509838dbbd1931d0e19dbc7f"}, - {file = "pydantic_core-2.6.3-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:692b4ff5c4e828a38716cfa92667661a39886e71136c97b7dac26edef18767f7"}, - {file = "pydantic_core-2.6.3-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:f1a5d8f18877474c80b7711d870db0eeef9442691fcdb00adabfc97e183ee0b0"}, - {file = "pydantic_core-2.6.3-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:3796a6152c545339d3b1652183e786df648ecdf7c4f9347e1d30e6750907f5bb"}, - {file = "pydantic_core-2.6.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:b962700962f6e7a6bd77e5f37320cabac24b4c0f76afeac05e9f93cf0c620014"}, - {file = "pydantic_core-2.6.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:56ea80269077003eaa59723bac1d8bacd2cd15ae30456f2890811efc1e3d4413"}, - {file = "pydantic_core-2.6.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75c0ebbebae71ed1e385f7dfd9b74c1cff09fed24a6df43d326dd7f12339ec34"}, - {file = "pydantic_core-2.6.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:252851b38bad3bfda47b104ffd077d4f9604a10cb06fe09d020016a25107bf98"}, - {file = "pydantic_core-2.6.3-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:6656a0ae383d8cd7cc94e91de4e526407b3726049ce8d7939049cbfa426518c8"}, - {file = "pydantic_core-2.6.3-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:d9140ded382a5b04a1c030b593ed9bf3088243a0a8b7fa9f071a5736498c5483"}, - {file = "pydantic_core-2.6.3-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:d38bbcef58220f9c81e42c255ef0bf99735d8f11edef69ab0b499da77105158a"}, - {file = "pydantic_core-2.6.3-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:c9d469204abcca28926cbc28ce98f28e50e488767b084fb3fbdf21af11d3de26"}, - {file = "pydantic_core-2.6.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:48c1ed8b02ffea4d5c9c220eda27af02b8149fe58526359b3c07eb391cb353a2"}, - {file = "pydantic_core-2.6.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2b1bfed698fa410ab81982f681f5b1996d3d994ae8073286515ac4d165c2e7"}, - {file = "pydantic_core-2.6.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf9d42a71a4d7a7c1f14f629e5c30eac451a6fc81827d2beefd57d014c006c4a"}, - {file = "pydantic_core-2.6.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4292ca56751aebbe63a84bbfc3b5717abb09b14d4b4442cc43fd7c49a1529efd"}, - {file = "pydantic_core-2.6.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:7dc2ce039c7290b4ef64334ec7e6ca6494de6eecc81e21cb4f73b9b39991408c"}, - {file = "pydantic_core-2.6.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:615a31b1629e12445c0e9fc8339b41aaa6cc60bd53bf802d5fe3d2c0cda2ae8d"}, - {file = "pydantic_core-2.6.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:1fa1f6312fb84e8c281f32b39affe81984ccd484da6e9d65b3d18c202c666149"}, - {file = "pydantic_core-2.6.3.tar.gz", hash = "sha256:1508f37ba9e3ddc0189e6ff4e2228bd2d3c3a4641cbe8c07177162f76ed696c7"}, + {file = "pydantic_core-2.14.6-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:72f9a942d739f09cd42fffe5dc759928217649f070056f03c70df14f5770acf9"}, + {file = "pydantic_core-2.14.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6a31d98c0d69776c2576dda4b77b8e0c69ad08e8b539c25c7d0ca0dc19a50d6c"}, + {file = "pydantic_core-2.14.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5aa90562bc079c6c290f0512b21768967f9968e4cfea84ea4ff5af5d917016e4"}, + {file = "pydantic_core-2.14.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:370ffecb5316ed23b667d99ce4debe53ea664b99cc37bfa2af47bc769056d534"}, + {file = "pydantic_core-2.14.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f85f3843bdb1fe80e8c206fe6eed7a1caeae897e496542cee499c374a85c6e08"}, + {file = "pydantic_core-2.14.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9862bf828112e19685b76ca499b379338fd4c5c269d897e218b2ae8fcb80139d"}, + {file = "pydantic_core-2.14.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:036137b5ad0cb0004c75b579445a1efccd072387a36c7f217bb8efd1afbe5245"}, + {file = "pydantic_core-2.14.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:92879bce89f91f4b2416eba4429c7b5ca22c45ef4a499c39f0c5c69257522c7c"}, + {file = "pydantic_core-2.14.6-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0c08de15d50fa190d577e8591f0329a643eeaed696d7771760295998aca6bc66"}, + {file = "pydantic_core-2.14.6-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:36099c69f6b14fc2c49d7996cbf4f87ec4f0e66d1c74aa05228583225a07b590"}, + {file = "pydantic_core-2.14.6-cp310-none-win32.whl", hash = "sha256:7be719e4d2ae6c314f72844ba9d69e38dff342bc360379f7c8537c48e23034b7"}, + {file = "pydantic_core-2.14.6-cp310-none-win_amd64.whl", hash = "sha256:36fa402dcdc8ea7f1b0ddcf0df4254cc6b2e08f8cd80e7010d4c4ae6e86b2a87"}, + {file = "pydantic_core-2.14.6-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:dea7fcd62915fb150cdc373212141a30037e11b761fbced340e9db3379b892d4"}, + {file = "pydantic_core-2.14.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ffff855100bc066ff2cd3aa4a60bc9534661816b110f0243e59503ec2df38421"}, + {file = "pydantic_core-2.14.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b027c86c66b8627eb90e57aee1f526df77dc6d8b354ec498be9a757d513b92b"}, + {file = "pydantic_core-2.14.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:00b1087dabcee0b0ffd104f9f53d7d3eaddfaa314cdd6726143af6bc713aa27e"}, + {file = "pydantic_core-2.14.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:75ec284328b60a4e91010c1acade0c30584f28a1f345bc8f72fe8b9e46ec6a96"}, + {file = "pydantic_core-2.14.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7e1f4744eea1501404b20b0ac059ff7e3f96a97d3e3f48ce27a139e053bb370b"}, + {file = "pydantic_core-2.14.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2602177668f89b38b9f84b7b3435d0a72511ddef45dc14446811759b82235a1"}, + {file = "pydantic_core-2.14.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6c8edaea3089bf908dd27da8f5d9e395c5b4dc092dbcce9b65e7156099b4b937"}, + {file = "pydantic_core-2.14.6-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:478e9e7b360dfec451daafe286998d4a1eeaecf6d69c427b834ae771cad4b622"}, + {file = "pydantic_core-2.14.6-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:b6ca36c12a5120bad343eef193cc0122928c5c7466121da7c20f41160ba00ba2"}, + {file = "pydantic_core-2.14.6-cp311-none-win32.whl", hash = "sha256:2b8719037e570639e6b665a4050add43134d80b687288ba3ade18b22bbb29dd2"}, + {file = "pydantic_core-2.14.6-cp311-none-win_amd64.whl", hash = "sha256:78ee52ecc088c61cce32b2d30a826f929e1708f7b9247dc3b921aec367dc1b23"}, + {file = "pydantic_core-2.14.6-cp311-none-win_arm64.whl", hash = "sha256:a19b794f8fe6569472ff77602437ec4430f9b2b9ec7a1105cfd2232f9ba355e6"}, + {file = "pydantic_core-2.14.6-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:667aa2eac9cd0700af1ddb38b7b1ef246d8cf94c85637cbb03d7757ca4c3fdec"}, + {file = "pydantic_core-2.14.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:cdee837710ef6b56ebd20245b83799fce40b265b3b406e51e8ccc5b85b9099b7"}, + {file = "pydantic_core-2.14.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c5bcf3414367e29f83fd66f7de64509a8fd2368b1edf4351e862910727d3e51"}, + {file = "pydantic_core-2.14.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:26a92ae76f75d1915806b77cf459811e772d8f71fd1e4339c99750f0e7f6324f"}, + {file = "pydantic_core-2.14.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a983cca5ed1dd9a35e9e42ebf9f278d344603bfcb174ff99a5815f953925140a"}, + {file = "pydantic_core-2.14.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cb92f9061657287eded380d7dc455bbf115430b3aa4741bdc662d02977e7d0af"}, + {file = "pydantic_core-2.14.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4ace1e220b078c8e48e82c081e35002038657e4b37d403ce940fa679e57113b"}, + {file = "pydantic_core-2.14.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ef633add81832f4b56d3b4c9408b43d530dfca29e68fb1b797dcb861a2c734cd"}, + {file = "pydantic_core-2.14.6-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7e90d6cc4aad2cc1f5e16ed56e46cebf4877c62403a311af20459c15da76fd91"}, + {file = "pydantic_core-2.14.6-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e8a5ac97ea521d7bde7621d86c30e86b798cdecd985723c4ed737a2aa9e77d0c"}, + {file = "pydantic_core-2.14.6-cp312-none-win32.whl", hash = "sha256:f27207e8ca3e5e021e2402ba942e5b4c629718e665c81b8b306f3c8b1ddbb786"}, + {file = "pydantic_core-2.14.6-cp312-none-win_amd64.whl", hash = "sha256:b3e5fe4538001bb82e2295b8d2a39356a84694c97cb73a566dc36328b9f83b40"}, + {file = "pydantic_core-2.14.6-cp312-none-win_arm64.whl", hash = "sha256:64634ccf9d671c6be242a664a33c4acf12882670b09b3f163cd00a24cffbd74e"}, + {file = "pydantic_core-2.14.6-cp37-cp37m-macosx_10_7_x86_64.whl", hash = "sha256:24368e31be2c88bd69340fbfe741b405302993242ccb476c5c3ff48aeee1afe0"}, + {file = "pydantic_core-2.14.6-cp37-cp37m-macosx_11_0_arm64.whl", hash = "sha256:e33b0834f1cf779aa839975f9d8755a7c2420510c0fa1e9fa0497de77cd35d2c"}, + {file = "pydantic_core-2.14.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6af4b3f52cc65f8a0bc8b1cd9676f8c21ef3e9132f21fed250f6958bd7223bed"}, + {file = "pydantic_core-2.14.6-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d15687d7d7f40333bd8266f3814c591c2e2cd263fa2116e314f60d82086e353a"}, + {file = "pydantic_core-2.14.6-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:095b707bb287bfd534044166ab767bec70a9bba3175dcdc3371782175c14e43c"}, + {file = "pydantic_core-2.14.6-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:94fc0e6621e07d1e91c44e016cc0b189b48db053061cc22d6298a611de8071bb"}, + {file = "pydantic_core-2.14.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ce830e480f6774608dedfd4a90c42aac4a7af0a711f1b52f807130c2e434c06"}, + {file = "pydantic_core-2.14.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a306cdd2ad3a7d795d8e617a58c3a2ed0f76c8496fb7621b6cd514eb1532cae8"}, + {file = "pydantic_core-2.14.6-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:2f5fa187bde8524b1e37ba894db13aadd64faa884657473b03a019f625cee9a8"}, + {file = "pydantic_core-2.14.6-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:438027a975cc213a47c5d70672e0d29776082155cfae540c4e225716586be75e"}, + {file = "pydantic_core-2.14.6-cp37-none-win32.whl", hash = "sha256:f96ae96a060a8072ceff4cfde89d261837b4294a4f28b84a28765470d502ccc6"}, + {file = "pydantic_core-2.14.6-cp37-none-win_amd64.whl", hash = "sha256:e646c0e282e960345314f42f2cea5e0b5f56938c093541ea6dbf11aec2862391"}, + {file = "pydantic_core-2.14.6-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:db453f2da3f59a348f514cfbfeb042393b68720787bbef2b4c6068ea362c8149"}, + {file = "pydantic_core-2.14.6-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3860c62057acd95cc84044e758e47b18dcd8871a328ebc8ccdefd18b0d26a21b"}, + {file = "pydantic_core-2.14.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:36026d8f99c58d7044413e1b819a67ca0e0b8ebe0f25e775e6c3d1fabb3c38fb"}, + {file = "pydantic_core-2.14.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8ed1af8692bd8d2a29d702f1a2e6065416d76897d726e45a1775b1444f5928a7"}, + {file = "pydantic_core-2.14.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:314ccc4264ce7d854941231cf71b592e30d8d368a71e50197c905874feacc8a8"}, + {file = "pydantic_core-2.14.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:982487f8931067a32e72d40ab6b47b1628a9c5d344be7f1a4e668fb462d2da42"}, + {file = "pydantic_core-2.14.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2dbe357bc4ddda078f79d2a36fc1dd0494a7f2fad83a0a684465b6f24b46fe80"}, + {file = "pydantic_core-2.14.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2f6ffc6701a0eb28648c845f4945a194dc7ab3c651f535b81793251e1185ac3d"}, + {file = "pydantic_core-2.14.6-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:7f5025db12fc6de7bc1104d826d5aee1d172f9ba6ca936bf6474c2148ac336c1"}, + {file = "pydantic_core-2.14.6-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:dab03ed811ed1c71d700ed08bde8431cf429bbe59e423394f0f4055f1ca0ea60"}, + {file = "pydantic_core-2.14.6-cp38-none-win32.whl", hash = "sha256:dfcbebdb3c4b6f739a91769aea5ed615023f3c88cb70df812849aef634c25fbe"}, + {file = "pydantic_core-2.14.6-cp38-none-win_amd64.whl", hash = "sha256:99b14dbea2fdb563d8b5a57c9badfcd72083f6006caf8e126b491519c7d64ca8"}, + {file = "pydantic_core-2.14.6-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:4ce8299b481bcb68e5c82002b96e411796b844d72b3e92a3fbedfe8e19813eab"}, + {file = "pydantic_core-2.14.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b9a9d92f10772d2a181b5ca339dee066ab7d1c9a34ae2421b2a52556e719756f"}, + {file = "pydantic_core-2.14.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fd9e98b408384989ea4ab60206b8e100d8687da18b5c813c11e92fd8212a98e0"}, + {file = "pydantic_core-2.14.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4f86f1f318e56f5cbb282fe61eb84767aee743ebe32c7c0834690ebea50c0a6b"}, + {file = "pydantic_core-2.14.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:86ce5fcfc3accf3a07a729779d0b86c5d0309a4764c897d86c11089be61da160"}, + {file = "pydantic_core-2.14.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3dcf1978be02153c6a31692d4fbcc2a3f1db9da36039ead23173bc256ee3b91b"}, + {file = "pydantic_core-2.14.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eedf97be7bc3dbc8addcef4142f4b4164066df0c6f36397ae4aaed3eb187d8ab"}, + {file = "pydantic_core-2.14.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d5f916acf8afbcab6bacbb376ba7dc61f845367901ecd5e328fc4d4aef2fcab0"}, + {file = "pydantic_core-2.14.6-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:8a14c192c1d724c3acbfb3f10a958c55a2638391319ce8078cb36c02283959b9"}, + {file = "pydantic_core-2.14.6-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0348b1dc6b76041516e8a854ff95b21c55f5a411c3297d2ca52f5528e49d8411"}, + {file = "pydantic_core-2.14.6-cp39-none-win32.whl", hash = "sha256:de2a0645a923ba57c5527497daf8ec5df69c6eadf869e9cd46e86349146e5975"}, + {file = "pydantic_core-2.14.6-cp39-none-win_amd64.whl", hash = "sha256:aca48506a9c20f68ee61c87f2008f81f8ee99f8d7f0104bff3c47e2d148f89d9"}, + {file = "pydantic_core-2.14.6-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:d5c28525c19f5bb1e09511669bb57353d22b94cf8b65f3a8d141c389a55dec95"}, + {file = "pydantic_core-2.14.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:78d0768ee59baa3de0f4adac9e3748b4b1fffc52143caebddfd5ea2961595277"}, + {file = "pydantic_core-2.14.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b93785eadaef932e4fe9c6e12ba67beb1b3f1e5495631419c784ab87e975670"}, + {file = "pydantic_core-2.14.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a874f21f87c485310944b2b2734cd6d318765bcbb7515eead33af9641816506e"}, + {file = "pydantic_core-2.14.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b89f4477d915ea43b4ceea6756f63f0288941b6443a2b28c69004fe07fde0d0d"}, + {file = "pydantic_core-2.14.6-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:172de779e2a153d36ee690dbc49c6db568d7b33b18dc56b69a7514aecbcf380d"}, + {file = "pydantic_core-2.14.6-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:dfcebb950aa7e667ec226a442722134539e77c575f6cfaa423f24371bb8d2e94"}, + {file = "pydantic_core-2.14.6-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:55a23dcd98c858c0db44fc5c04fc7ed81c4b4d33c653a7c45ddaebf6563a2f66"}, + {file = "pydantic_core-2.14.6-pp37-pypy37_pp73-macosx_10_7_x86_64.whl", hash = "sha256:4241204e4b36ab5ae466ecec5c4c16527a054c69f99bba20f6f75232a6a534e2"}, + {file = "pydantic_core-2.14.6-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e574de99d735b3fc8364cba9912c2bec2da78775eba95cbb225ef7dda6acea24"}, + {file = "pydantic_core-2.14.6-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1302a54f87b5cd8528e4d6d1bf2133b6aa7c6122ff8e9dc5220fbc1e07bffebd"}, + {file = "pydantic_core-2.14.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f8e81e4b55930e5ffab4a68db1af431629cf2e4066dbdbfef65348b8ab804ea8"}, + {file = "pydantic_core-2.14.6-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:c99462ffc538717b3e60151dfaf91125f637e801f5ab008f81c402f1dff0cd0f"}, + {file = "pydantic_core-2.14.6-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:e4cf2d5829f6963a5483ec01578ee76d329eb5caf330ecd05b3edd697e7d768a"}, + {file = "pydantic_core-2.14.6-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:cf10b7d58ae4a1f07fccbf4a0a956d705356fea05fb4c70608bb6fa81d103cda"}, + {file = "pydantic_core-2.14.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:399ac0891c284fa8eb998bcfa323f2234858f5d2efca3950ae58c8f88830f145"}, + {file = "pydantic_core-2.14.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c6a5c79b28003543db3ba67d1df336f253a87d3112dac3a51b94f7d48e4c0e1"}, + {file = "pydantic_core-2.14.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:599c87d79cab2a6a2a9df4aefe0455e61e7d2aeede2f8577c1b7c0aec643ee8e"}, + {file = "pydantic_core-2.14.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:43e166ad47ba900f2542a80d83f9fc65fe99eb63ceec4debec160ae729824052"}, + {file = "pydantic_core-2.14.6-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:3a0b5db001b98e1c649dd55afa928e75aa4087e587b9524a4992316fa23c9fba"}, + {file = "pydantic_core-2.14.6-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:747265448cb57a9f37572a488a57d873fd96bf51e5bb7edb52cfb37124516da4"}, + {file = "pydantic_core-2.14.6-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:7ebe3416785f65c28f4f9441e916bfc8a54179c8dea73c23023f7086fa601c5d"}, + {file = "pydantic_core-2.14.6-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:86c963186ca5e50d5c8287b1d1c9d3f8f024cbe343d048c5bd282aec2d8641f2"}, + {file = "pydantic_core-2.14.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:e0641b506486f0b4cd1500a2a65740243e8670a2549bb02bc4556a83af84ae03"}, + {file = "pydantic_core-2.14.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:71d72ca5eaaa8d38c8df16b7deb1a2da4f650c41b58bb142f3fb75d5ad4a611f"}, + {file = "pydantic_core-2.14.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:27e524624eace5c59af499cd97dc18bb201dc6a7a2da24bfc66ef151c69a5f2a"}, + {file = "pydantic_core-2.14.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a3dde6cac75e0b0902778978d3b1646ca9f438654395a362cb21d9ad34b24acf"}, + {file = "pydantic_core-2.14.6-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:00646784f6cd993b1e1c0e7b0fdcbccc375d539db95555477771c27555e3c556"}, + {file = "pydantic_core-2.14.6-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:23598acb8ccaa3d1d875ef3b35cb6376535095e9405d91a3d57a8c7db5d29341"}, + {file = "pydantic_core-2.14.6-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7f41533d7e3cf9520065f610b41ac1c76bc2161415955fbcead4981b22c7611e"}, + {file = "pydantic_core-2.14.6.tar.gz", hash = "sha256:1fd0c1d395372843fba13a51c28e3bb9d59bd7aebfeb17358ffaaa1e4dbbe948"}, ] [package.dependencies] @@ -987,27 +1044,28 @@ typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0" [[package]] name = "pygments" -version = "2.16.1" +version = "2.17.2" description = "Pygments is a syntax highlighting package written in Python." optional = false python-versions = ">=3.7" files = [ - {file = "Pygments-2.16.1-py3-none-any.whl", hash = "sha256:13fc09fa63bc8d8671a6d247e1eb303c4b343eaee81d861f3404db2935653692"}, - {file = "Pygments-2.16.1.tar.gz", hash = "sha256:1daff0494820c69bc8941e407aa20f577374ee88364ee10a98fdbe0aece96e29"}, + {file = "pygments-2.17.2-py3-none-any.whl", hash = "sha256:b27c2826c47d0f3219f29554824c30c5e8945175d888647acd804ddd04af846c"}, + {file = "pygments-2.17.2.tar.gz", hash = "sha256:da46cec9fd2de5be3a8a784f434e4c4ab670b4ff54d605c4c2717e9d49c4c367"}, ] [package.extras] plugins = ["importlib-metadata"] +windows-terminal = ["colorama (>=0.4.6)"] [[package]] name = "pyparsing" -version = "3.0.9" +version = "3.1.1" description = "pyparsing module - Classes and methods to define and execute parsing grammars" optional = false python-versions = ">=3.6.8" files = [ - {file = "pyparsing-3.0.9-py3-none-any.whl", hash = "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc"}, - {file = "pyparsing-3.0.9.tar.gz", hash = "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb"}, + {file = "pyparsing-3.1.1-py3-none-any.whl", hash = "sha256:32c7c0b711493c72ff18a981d24f28aaf9c1fb7ed5e9667c9e84e3db623bdbfb"}, + {file = "pyparsing-3.1.1.tar.gz", hash = "sha256:ede28a1a32462f5a9705e07aea48001a08f7cf81a021585011deba701581a0db"}, ] [package.extras] @@ -1043,121 +1101,126 @@ dev = ["atomicwrites (==1.2.1)", "attrs (==19.2.0)", "coverage (==6.5.0)", "hatc [[package]] name = "pytz" -version = "2023.3" +version = "2023.3.post1" description = "World timezone definitions, modern and historical" optional = false python-versions = "*" files = [ - {file = "pytz-2023.3-py2.py3-none-any.whl", hash = "sha256:a151b3abb88eda1d4e34a9814df37de2a80e301e68ba0fd856fb9b46bfbbbffb"}, - {file = "pytz-2023.3.tar.gz", hash = "sha256:1d8ce29db189191fb55338ee6d0387d82ab59f3d00eac103412d64e0ebd0c588"}, + {file = "pytz-2023.3.post1-py2.py3-none-any.whl", hash = "sha256:ce42d816b81b68506614c11e8937d3aa9e41007ceb50bfdcb0749b921bf646c7"}, + {file = "pytz-2023.3.post1.tar.gz", hash = "sha256:7b4fddbeb94a1eba4b557da24f19fdf9db575192544270a9101d8509f9f43d7b"}, ] [[package]] name = "regex" -version = "2023.8.8" +version = "2023.12.25" description = "Alternative regular expression module, to replace re." optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" files = [ - {file = "regex-2023.8.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:88900f521c645f784260a8d346e12a1590f79e96403971241e64c3a265c8ecdb"}, - {file = "regex-2023.8.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3611576aff55918af2697410ff0293d6071b7e00f4b09e005d614686ac4cd57c"}, - {file = "regex-2023.8.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b8a0ccc8f2698f120e9e5742f4b38dc944c38744d4bdfc427616f3a163dd9de5"}, - {file = "regex-2023.8.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c662a4cbdd6280ee56f841f14620787215a171c4e2d1744c9528bed8f5816c96"}, - {file = "regex-2023.8.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cf0633e4a1b667bfe0bb10b5e53fe0d5f34a6243ea2530eb342491f1adf4f739"}, - {file = "regex-2023.8.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:551ad543fa19e94943c5b2cebc54c73353ffff08228ee5f3376bd27b3d5b9800"}, - {file = "regex-2023.8.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54de2619f5ea58474f2ac211ceea6b615af2d7e4306220d4f3fe690c91988a61"}, - {file = "regex-2023.8.8-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5ec4b3f0aebbbe2fc0134ee30a791af522a92ad9f164858805a77442d7d18570"}, - {file = "regex-2023.8.8-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3ae646c35cb9f820491760ac62c25b6d6b496757fda2d51be429e0e7b67ae0ab"}, - {file = "regex-2023.8.8-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:ca339088839582d01654e6f83a637a4b8194d0960477b9769d2ff2cfa0fa36d2"}, - {file = "regex-2023.8.8-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:d9b6627408021452dcd0d2cdf8da0534e19d93d070bfa8b6b4176f99711e7f90"}, - {file = "regex-2023.8.8-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:bd3366aceedf274f765a3a4bc95d6cd97b130d1dda524d8f25225d14123c01db"}, - {file = "regex-2023.8.8-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7aed90a72fc3654fba9bc4b7f851571dcc368120432ad68b226bd593f3f6c0b7"}, - {file = "regex-2023.8.8-cp310-cp310-win32.whl", hash = "sha256:80b80b889cb767cc47f31d2b2f3dec2db8126fbcd0cff31b3925b4dc6609dcdb"}, - {file = "regex-2023.8.8-cp310-cp310-win_amd64.whl", hash = "sha256:b82edc98d107cbc7357da7a5a695901b47d6eb0420e587256ba3ad24b80b7d0b"}, - {file = "regex-2023.8.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1e7d84d64c84ad97bf06f3c8cb5e48941f135ace28f450d86af6b6512f1c9a71"}, - {file = "regex-2023.8.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ce0f9fbe7d295f9922c0424a3637b88c6c472b75eafeaff6f910494a1fa719ef"}, - {file = "regex-2023.8.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:06c57e14ac723b04458df5956cfb7e2d9caa6e9d353c0b4c7d5d54fcb1325c46"}, - {file = "regex-2023.8.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e7a9aaa5a1267125eef22cef3b63484c3241aaec6f48949b366d26c7250e0357"}, - {file = "regex-2023.8.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b7408511fca48a82a119d78a77c2f5eb1b22fe88b0d2450ed0756d194fe7a9a"}, - {file = "regex-2023.8.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:14dc6f2d88192a67d708341f3085df6a4f5a0c7b03dec08d763ca2cd86e9f559"}, - {file = "regex-2023.8.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:48c640b99213643d141550326f34f0502fedb1798adb3c9eb79650b1ecb2f177"}, - {file = "regex-2023.8.8-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0085da0f6c6393428bf0d9c08d8b1874d805bb55e17cb1dfa5ddb7cfb11140bf"}, - {file = "regex-2023.8.8-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:964b16dcc10c79a4a2be9f1273fcc2684a9eedb3906439720598029a797b46e6"}, - {file = "regex-2023.8.8-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7ce606c14bb195b0e5108544b540e2c5faed6843367e4ab3deb5c6aa5e681208"}, - {file = "regex-2023.8.8-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:40f029d73b10fac448c73d6eb33d57b34607f40116e9f6e9f0d32e9229b147d7"}, - {file = "regex-2023.8.8-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3b8e6ea6be6d64104d8e9afc34c151926f8182f84e7ac290a93925c0db004bfd"}, - {file = "regex-2023.8.8-cp311-cp311-win32.whl", hash = "sha256:942f8b1f3b223638b02df7df79140646c03938d488fbfb771824f3d05fc083a8"}, - {file = "regex-2023.8.8-cp311-cp311-win_amd64.whl", hash = "sha256:51d8ea2a3a1a8fe4f67de21b8b93757005213e8ac3917567872f2865185fa7fb"}, - {file = "regex-2023.8.8-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:e951d1a8e9963ea51efd7f150450803e3b95db5939f994ad3d5edac2b6f6e2b4"}, - {file = "regex-2023.8.8-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:704f63b774218207b8ccc6c47fcef5340741e5d839d11d606f70af93ee78e4d4"}, - {file = "regex-2023.8.8-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:22283c769a7b01c8ac355d5be0715bf6929b6267619505e289f792b01304d898"}, - {file = "regex-2023.8.8-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:91129ff1bb0619bc1f4ad19485718cc623a2dc433dff95baadbf89405c7f6b57"}, - {file = "regex-2023.8.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de35342190deb7b866ad6ba5cbcccb2d22c0487ee0cbb251efef0843d705f0d4"}, - {file = "regex-2023.8.8-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b993b6f524d1e274a5062488a43e3f9f8764ee9745ccd8e8193df743dbe5ee61"}, - {file = "regex-2023.8.8-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:3026cbcf11d79095a32d9a13bbc572a458727bd5b1ca332df4a79faecd45281c"}, - {file = "regex-2023.8.8-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:293352710172239bf579c90a9864d0df57340b6fd21272345222fb6371bf82b3"}, - {file = "regex-2023.8.8-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:d909b5a3fff619dc7e48b6b1bedc2f30ec43033ba7af32f936c10839e81b9217"}, - {file = "regex-2023.8.8-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:3d370ff652323c5307d9c8e4c62efd1956fb08051b0e9210212bc51168b4ff56"}, - {file = "regex-2023.8.8-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:b076da1ed19dc37788f6a934c60adf97bd02c7eea461b73730513921a85d4235"}, - {file = "regex-2023.8.8-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:e9941a4ada58f6218694f382e43fdd256e97615db9da135e77359da257a7168b"}, - {file = "regex-2023.8.8-cp36-cp36m-win32.whl", hash = "sha256:a8c65c17aed7e15a0c824cdc63a6b104dfc530f6fa8cb6ac51c437af52b481c7"}, - {file = "regex-2023.8.8-cp36-cp36m-win_amd64.whl", hash = "sha256:aadf28046e77a72f30dcc1ab185639e8de7f4104b8cb5c6dfa5d8ed860e57236"}, - {file = "regex-2023.8.8-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:423adfa872b4908843ac3e7a30f957f5d5282944b81ca0a3b8a7ccbbfaa06103"}, - {file = "regex-2023.8.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ae594c66f4a7e1ea67232a0846649a7c94c188d6c071ac0210c3e86a5f92109"}, - {file = "regex-2023.8.8-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e51c80c168074faa793685656c38eb7a06cbad7774c8cbc3ea05552d615393d8"}, - {file = "regex-2023.8.8-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:09b7f4c66aa9d1522b06e31a54f15581c37286237208df1345108fcf4e050c18"}, - {file = "regex-2023.8.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e73e5243af12d9cd6a9d6a45a43570dbe2e5b1cdfc862f5ae2b031e44dd95a8"}, - {file = "regex-2023.8.8-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:941460db8fe3bd613db52f05259c9336f5a47ccae7d7def44cc277184030a116"}, - {file = "regex-2023.8.8-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f0ccf3e01afeb412a1a9993049cb160d0352dba635bbca7762b2dc722aa5742a"}, - {file = "regex-2023.8.8-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:2e9216e0d2cdce7dbc9be48cb3eacb962740a09b011a116fd7af8c832ab116ca"}, - {file = "regex-2023.8.8-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:5cd9cd7170459b9223c5e592ac036e0704bee765706445c353d96f2890e816c8"}, - {file = "regex-2023.8.8-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:4873ef92e03a4309b3ccd8281454801b291b689f6ad45ef8c3658b6fa761d7ac"}, - {file = "regex-2023.8.8-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:239c3c2a339d3b3ddd51c2daef10874410917cd2b998f043c13e2084cb191684"}, - {file = "regex-2023.8.8-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:1005c60ed7037be0d9dea1f9c53cc42f836188227366370867222bda4c3c6bd7"}, - {file = "regex-2023.8.8-cp37-cp37m-win32.whl", hash = "sha256:e6bd1e9b95bc5614a7a9c9c44fde9539cba1c823b43a9f7bc11266446dd568e3"}, - {file = "regex-2023.8.8-cp37-cp37m-win_amd64.whl", hash = "sha256:9a96edd79661e93327cfeac4edec72a4046e14550a1d22aa0dd2e3ca52aec921"}, - {file = "regex-2023.8.8-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f2181c20ef18747d5f4a7ea513e09ea03bdd50884a11ce46066bb90fe4213675"}, - {file = "regex-2023.8.8-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a2ad5add903eb7cdde2b7c64aaca405f3957ab34f16594d2b78d53b8b1a6a7d6"}, - {file = "regex-2023.8.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9233ac249b354c54146e392e8a451e465dd2d967fc773690811d3a8c240ac601"}, - {file = "regex-2023.8.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:920974009fb37b20d32afcdf0227a2e707eb83fe418713f7a8b7de038b870d0b"}, - {file = "regex-2023.8.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd2b6c5dfe0929b6c23dde9624483380b170b6e34ed79054ad131b20203a1a63"}, - {file = "regex-2023.8.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:96979d753b1dc3b2169003e1854dc67bfc86edf93c01e84757927f810b8c3c93"}, - {file = "regex-2023.8.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2ae54a338191e1356253e7883d9d19f8679b6143703086245fb14d1f20196be9"}, - {file = "regex-2023.8.8-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2162ae2eb8b079622176a81b65d486ba50b888271302190870b8cc488587d280"}, - {file = "regex-2023.8.8-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:c884d1a59e69e03b93cf0dfee8794c63d7de0ee8f7ffb76e5f75be8131b6400a"}, - {file = "regex-2023.8.8-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:cf9273e96f3ee2ac89ffcb17627a78f78e7516b08f94dc435844ae72576a276e"}, - {file = "regex-2023.8.8-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:83215147121e15d5f3a45d99abeed9cf1fe16869d5c233b08c56cdf75f43a504"}, - {file = "regex-2023.8.8-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:3f7454aa427b8ab9101f3787eb178057c5250478e39b99540cfc2b889c7d0586"}, - {file = "regex-2023.8.8-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:f0640913d2c1044d97e30d7c41728195fc37e54d190c5385eacb52115127b882"}, - {file = "regex-2023.8.8-cp38-cp38-win32.whl", hash = "sha256:0c59122ceccb905a941fb23b087b8eafc5290bf983ebcb14d2301febcbe199c7"}, - {file = "regex-2023.8.8-cp38-cp38-win_amd64.whl", hash = "sha256:c12f6f67495ea05c3d542d119d270007090bad5b843f642d418eb601ec0fa7be"}, - {file = "regex-2023.8.8-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:82cd0a69cd28f6cc3789cc6adeb1027f79526b1ab50b1f6062bbc3a0ccb2dbc3"}, - {file = "regex-2023.8.8-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:bb34d1605f96a245fc39790a117ac1bac8de84ab7691637b26ab2c5efb8f228c"}, - {file = "regex-2023.8.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:987b9ac04d0b38ef4f89fbc035e84a7efad9cdd5f1e29024f9289182c8d99e09"}, - {file = "regex-2023.8.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9dd6082f4e2aec9b6a0927202c85bc1b09dcab113f97265127c1dc20e2e32495"}, - {file = "regex-2023.8.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7eb95fe8222932c10d4436e7a6f7c99991e3fdd9f36c949eff16a69246dee2dc"}, - {file = "regex-2023.8.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7098c524ba9f20717a56a8d551d2ed491ea89cbf37e540759ed3b776a4f8d6eb"}, - {file = "regex-2023.8.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b694430b3f00eb02c594ff5a16db30e054c1b9589a043fe9174584c6efa8033"}, - {file = "regex-2023.8.8-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b2aeab3895d778155054abea5238d0eb9a72e9242bd4b43f42fd911ef9a13470"}, - {file = "regex-2023.8.8-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:988631b9d78b546e284478c2ec15c8a85960e262e247b35ca5eaf7ee22f6050a"}, - {file = "regex-2023.8.8-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:67ecd894e56a0c6108ec5ab1d8fa8418ec0cff45844a855966b875d1039a2e34"}, - {file = "regex-2023.8.8-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:14898830f0a0eb67cae2bbbc787c1a7d6e34ecc06fbd39d3af5fe29a4468e2c9"}, - {file = "regex-2023.8.8-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:f2200e00b62568cfd920127782c61bc1c546062a879cdc741cfcc6976668dfcf"}, - {file = "regex-2023.8.8-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:9691a549c19c22d26a4f3b948071e93517bdf86e41b81d8c6ac8a964bb71e5a6"}, - {file = "regex-2023.8.8-cp39-cp39-win32.whl", hash = "sha256:6ab2ed84bf0137927846b37e882745a827458689eb969028af8032b1b3dac78e"}, - {file = "regex-2023.8.8-cp39-cp39-win_amd64.whl", hash = "sha256:5543c055d8ec7801901e1193a51570643d6a6ab8751b1f7dd9af71af467538bb"}, - {file = "regex-2023.8.8.tar.gz", hash = "sha256:fcbdc5f2b0f1cd0f6a56cdb46fe41d2cce1e644e3b68832f3eeebc5fb0f7712e"}, + {file = "regex-2023.12.25-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0694219a1d54336fd0445ea382d49d36882415c0134ee1e8332afd1529f0baa5"}, + {file = "regex-2023.12.25-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b014333bd0217ad3d54c143de9d4b9a3ca1c5a29a6d0d554952ea071cff0f1f8"}, + {file = "regex-2023.12.25-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d865984b3f71f6d0af64d0d88f5733521698f6c16f445bb09ce746c92c97c586"}, + {file = "regex-2023.12.25-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1e0eabac536b4cc7f57a5f3d095bfa557860ab912f25965e08fe1545e2ed8b4c"}, + {file = "regex-2023.12.25-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c25a8ad70e716f96e13a637802813f65d8a6760ef48672aa3502f4c24ea8b400"}, + {file = "regex-2023.12.25-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9b6d73353f777630626f403b0652055ebfe8ff142a44ec2cf18ae470395766e"}, + {file = "regex-2023.12.25-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9cc99d6946d750eb75827cb53c4371b8b0fe89c733a94b1573c9dd16ea6c9e4"}, + {file = "regex-2023.12.25-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88d1f7bef20c721359d8675f7d9f8e414ec5003d8f642fdfd8087777ff7f94b5"}, + {file = "regex-2023.12.25-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cb3fe77aec8f1995611f966d0c656fdce398317f850d0e6e7aebdfe61f40e1cd"}, + {file = "regex-2023.12.25-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:7aa47c2e9ea33a4a2a05f40fcd3ea36d73853a2aae7b4feab6fc85f8bf2c9704"}, + {file = "regex-2023.12.25-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:df26481f0c7a3f8739fecb3e81bc9da3fcfae34d6c094563b9d4670b047312e1"}, + {file = "regex-2023.12.25-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c40281f7d70baf6e0db0c2f7472b31609f5bc2748fe7275ea65a0b4601d9b392"}, + {file = "regex-2023.12.25-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:d94a1db462d5690ebf6ae86d11c5e420042b9898af5dcf278bd97d6bda065423"}, + {file = "regex-2023.12.25-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ba1b30765a55acf15dce3f364e4928b80858fa8f979ad41f862358939bdd1f2f"}, + {file = "regex-2023.12.25-cp310-cp310-win32.whl", hash = "sha256:150c39f5b964e4d7dba46a7962a088fbc91f06e606f023ce57bb347a3b2d4630"}, + {file = "regex-2023.12.25-cp310-cp310-win_amd64.whl", hash = "sha256:09da66917262d9481c719599116c7dc0c321ffcec4b1f510c4f8a066f8768105"}, + {file = "regex-2023.12.25-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:1b9d811f72210fa9306aeb88385b8f8bcef0dfbf3873410413c00aa94c56c2b6"}, + {file = "regex-2023.12.25-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d902a43085a308cef32c0d3aea962524b725403fd9373dea18110904003bac97"}, + {file = "regex-2023.12.25-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d166eafc19f4718df38887b2bbe1467a4f74a9830e8605089ea7a30dd4da8887"}, + {file = "regex-2023.12.25-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c7ad32824b7f02bb3c9f80306d405a1d9b7bb89362d68b3c5a9be53836caebdb"}, + {file = "regex-2023.12.25-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:636ba0a77de609d6510235b7f0e77ec494d2657108f777e8765efc060094c98c"}, + {file = "regex-2023.12.25-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0fda75704357805eb953a3ee15a2b240694a9a514548cd49b3c5124b4e2ad01b"}, + {file = "regex-2023.12.25-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f72cbae7f6b01591f90814250e636065850c5926751af02bb48da94dfced7baa"}, + {file = "regex-2023.12.25-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:db2a0b1857f18b11e3b0e54ddfefc96af46b0896fb678c85f63fb8c37518b3e7"}, + {file = "regex-2023.12.25-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:7502534e55c7c36c0978c91ba6f61703faf7ce733715ca48f499d3dbbd7657e0"}, + {file = "regex-2023.12.25-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:e8c7e08bb566de4faaf11984af13f6bcf6a08f327b13631d41d62592681d24fe"}, + {file = "regex-2023.12.25-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:283fc8eed679758de38fe493b7d7d84a198b558942b03f017b1f94dda8efae80"}, + {file = "regex-2023.12.25-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:f44dd4d68697559d007462b0a3a1d9acd61d97072b71f6d1968daef26bc744bd"}, + {file = "regex-2023.12.25-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:67d3ccfc590e5e7197750fcb3a2915b416a53e2de847a728cfa60141054123d4"}, + {file = "regex-2023.12.25-cp311-cp311-win32.whl", hash = "sha256:68191f80a9bad283432385961d9efe09d783bcd36ed35a60fb1ff3f1ec2efe87"}, + {file = "regex-2023.12.25-cp311-cp311-win_amd64.whl", hash = "sha256:7d2af3f6b8419661a0c421584cfe8aaec1c0e435ce7e47ee2a97e344b98f794f"}, + {file = "regex-2023.12.25-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8a0ccf52bb37d1a700375a6b395bff5dd15c50acb745f7db30415bae3c2b0715"}, + {file = "regex-2023.12.25-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c3c4a78615b7762740531c27cf46e2f388d8d727d0c0c739e72048beb26c8a9d"}, + {file = "regex-2023.12.25-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ad83e7545b4ab69216cef4cc47e344d19622e28aabec61574b20257c65466d6a"}, + {file = "regex-2023.12.25-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7a635871143661feccce3979e1727c4e094f2bdfd3ec4b90dfd4f16f571a87a"}, + {file = "regex-2023.12.25-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d498eea3f581fbe1b34b59c697512a8baef88212f92e4c7830fcc1499f5b45a5"}, + {file = "regex-2023.12.25-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:43f7cd5754d02a56ae4ebb91b33461dc67be8e3e0153f593c509e21d219c5060"}, + {file = "regex-2023.12.25-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51f4b32f793812714fd5307222a7f77e739b9bc566dc94a18126aba3b92b98a3"}, + {file = "regex-2023.12.25-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ba99d8077424501b9616b43a2d208095746fb1284fc5ba490139651f971d39d9"}, + {file = "regex-2023.12.25-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:4bfc2b16e3ba8850e0e262467275dd4d62f0d045e0e9eda2bc65078c0110a11f"}, + {file = "regex-2023.12.25-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8c2c19dae8a3eb0ea45a8448356ed561be843b13cbc34b840922ddf565498c1c"}, + {file = "regex-2023.12.25-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:60080bb3d8617d96f0fb7e19796384cc2467447ef1c491694850ebd3670bc457"}, + {file = "regex-2023.12.25-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b77e27b79448e34c2c51c09836033056a0547aa360c45eeeb67803da7b0eedaf"}, + {file = "regex-2023.12.25-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:518440c991f514331f4850a63560321f833979d145d7d81186dbe2f19e27ae3d"}, + {file = "regex-2023.12.25-cp312-cp312-win32.whl", hash = "sha256:e2610e9406d3b0073636a3a2e80db05a02f0c3169b5632022b4e81c0364bcda5"}, + {file = "regex-2023.12.25-cp312-cp312-win_amd64.whl", hash = "sha256:cc37b9aeebab425f11f27e5e9e6cf580be7206c6582a64467a14dda211abc232"}, + {file = "regex-2023.12.25-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:da695d75ac97cb1cd725adac136d25ca687da4536154cdc2815f576e4da11c69"}, + {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d126361607b33c4eb7b36debc173bf25d7805847346dd4d99b5499e1fef52bc7"}, + {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4719bb05094d7d8563a450cf8738d2e1061420f79cfcc1fa7f0a44744c4d8f73"}, + {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5dd58946bce44b53b06d94aa95560d0b243eb2fe64227cba50017a8d8b3cd3e2"}, + {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:22a86d9fff2009302c440b9d799ef2fe322416d2d58fc124b926aa89365ec482"}, + {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2aae8101919e8aa05ecfe6322b278f41ce2994c4a430303c4cd163fef746e04f"}, + {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e692296c4cc2873967771345a876bcfc1c547e8dd695c6b89342488b0ea55cd8"}, + {file = "regex-2023.12.25-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:263ef5cc10979837f243950637fffb06e8daed7f1ac1e39d5910fd29929e489a"}, + {file = "regex-2023.12.25-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:d6f7e255e5fa94642a0724e35406e6cb7001c09d476ab5fce002f652b36d0c39"}, + {file = "regex-2023.12.25-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:88ad44e220e22b63b0f8f81f007e8abbb92874d8ced66f32571ef8beb0643b2b"}, + {file = "regex-2023.12.25-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:3a17d3ede18f9cedcbe23d2daa8a2cd6f59fe2bf082c567e43083bba3fb00347"}, + {file = "regex-2023.12.25-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d15b274f9e15b1a0b7a45d2ac86d1f634d983ca40d6b886721626c47a400bf39"}, + {file = "regex-2023.12.25-cp37-cp37m-win32.whl", hash = "sha256:ed19b3a05ae0c97dd8f75a5d8f21f7723a8c33bbc555da6bbe1f96c470139d3c"}, + {file = "regex-2023.12.25-cp37-cp37m-win_amd64.whl", hash = "sha256:a6d1047952c0b8104a1d371f88f4ab62e6275567d4458c1e26e9627ad489b445"}, + {file = "regex-2023.12.25-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:b43523d7bc2abd757119dbfb38af91b5735eea45537ec6ec3a5ec3f9562a1c53"}, + {file = "regex-2023.12.25-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:efb2d82f33b2212898f1659fb1c2e9ac30493ac41e4d53123da374c3b5541e64"}, + {file = "regex-2023.12.25-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b7fca9205b59c1a3d5031f7e64ed627a1074730a51c2a80e97653e3e9fa0d415"}, + {file = "regex-2023.12.25-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:086dd15e9435b393ae06f96ab69ab2d333f5d65cbe65ca5a3ef0ec9564dfe770"}, + {file = "regex-2023.12.25-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e81469f7d01efed9b53740aedd26085f20d49da65f9c1f41e822a33992cb1590"}, + {file = "regex-2023.12.25-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:34e4af5b27232f68042aa40a91c3b9bb4da0eeb31b7632e0091afc4310afe6cb"}, + {file = "regex-2023.12.25-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9852b76ab558e45b20bf1893b59af64a28bd3820b0c2efc80e0a70a4a3ea51c1"}, + {file = "regex-2023.12.25-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ff100b203092af77d1a5a7abe085b3506b7eaaf9abf65b73b7d6905b6cb76988"}, + {file = "regex-2023.12.25-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cc038b2d8b1470364b1888a98fd22d616fba2b6309c5b5f181ad4483e0017861"}, + {file = "regex-2023.12.25-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:094ba386bb5c01e54e14434d4caabf6583334090865b23ef58e0424a6286d3dc"}, + {file = "regex-2023.12.25-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5cd05d0f57846d8ba4b71d9c00f6f37d6b97d5e5ef8b3c3840426a475c8f70f4"}, + {file = "regex-2023.12.25-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:9aa1a67bbf0f957bbe096375887b2505f5d8ae16bf04488e8b0f334c36e31360"}, + {file = "regex-2023.12.25-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:98a2636994f943b871786c9e82bfe7883ecdaba2ef5df54e1450fa9869d1f756"}, + {file = "regex-2023.12.25-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:37f8e93a81fc5e5bd8db7e10e62dc64261bcd88f8d7e6640aaebe9bc180d9ce2"}, + {file = "regex-2023.12.25-cp38-cp38-win32.whl", hash = "sha256:d78bd484930c1da2b9679290a41cdb25cc127d783768a0369d6b449e72f88beb"}, + {file = "regex-2023.12.25-cp38-cp38-win_amd64.whl", hash = "sha256:b521dcecebc5b978b447f0f69b5b7f3840eac454862270406a39837ffae4e697"}, + {file = "regex-2023.12.25-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f7bc09bc9c29ebead055bcba136a67378f03d66bf359e87d0f7c759d6d4ffa31"}, + {file = "regex-2023.12.25-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e14b73607d6231f3cc4622809c196b540a6a44e903bcfad940779c80dffa7be7"}, + {file = "regex-2023.12.25-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9eda5f7a50141291beda3edd00abc2d4a5b16c29c92daf8d5bd76934150f3edc"}, + {file = "regex-2023.12.25-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc6bb9aa69aacf0f6032c307da718f61a40cf970849e471254e0e91c56ffca95"}, + {file = "regex-2023.12.25-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:298dc6354d414bc921581be85695d18912bea163a8b23cac9a2562bbcd5088b1"}, + {file = "regex-2023.12.25-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2f4e475a80ecbd15896a976aa0b386c5525d0ed34d5c600b6d3ebac0a67c7ddf"}, + {file = "regex-2023.12.25-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:531ac6cf22b53e0696f8e1d56ce2396311254eb806111ddd3922c9d937151dae"}, + {file = "regex-2023.12.25-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:22f3470f7524b6da61e2020672df2f3063676aff444db1daa283c2ea4ed259d6"}, + {file = "regex-2023.12.25-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:89723d2112697feaa320c9d351e5f5e7b841e83f8b143dba8e2d2b5f04e10923"}, + {file = "regex-2023.12.25-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0ecf44ddf9171cd7566ef1768047f6e66975788258b1c6c6ca78098b95cf9a3d"}, + {file = "regex-2023.12.25-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:905466ad1702ed4acfd67a902af50b8db1feeb9781436372261808df7a2a7bca"}, + {file = "regex-2023.12.25-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:4558410b7a5607a645e9804a3e9dd509af12fb72b9825b13791a37cd417d73a5"}, + {file = "regex-2023.12.25-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:7e316026cc1095f2a3e8cc012822c99f413b702eaa2ca5408a513609488cb62f"}, + {file = "regex-2023.12.25-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3b1de218d5375cd6ac4b5493e0b9f3df2be331e86520f23382f216c137913d20"}, + {file = "regex-2023.12.25-cp39-cp39-win32.whl", hash = "sha256:11a963f8e25ab5c61348d090bf1b07f1953929c13bd2309a0662e9ff680763c9"}, + {file = "regex-2023.12.25-cp39-cp39-win_amd64.whl", hash = "sha256:e693e233ac92ba83a87024e1d32b5f9ab15ca55ddd916d878146f4e3406b5c91"}, + {file = "regex-2023.12.25.tar.gz", hash = "sha256:29171aa128da69afdf4bde412d5bedc335f2ca8fcfe4489038577d05f16181e5"}, ] [[package]] name = "rich" -version = "13.5.2" +version = "13.7.0" description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" optional = false python-versions = ">=3.7.0" files = [ - {file = "rich-13.5.2-py3-none-any.whl", hash = "sha256:146a90b3b6b47cac4a73c12866a499e9817426423f57c5a66949c086191a8808"}, - {file = "rich-13.5.2.tar.gz", hash = "sha256:fb9d6c0a0f643c99eed3875b5377a184132ba9be4d61516a55273d3554d75a39"}, + {file = "rich-13.7.0-py3-none-any.whl", hash = "sha256:6da14c108c4866ee9520bbffa71f6fe3962e193b7da68720583850cd4548e235"}, + {file = "rich-13.7.0.tar.gz", hash = "sha256:5cb5123b5cf9ee70584244246816e9114227e0b98ad9176eede6ad54bf5403fa"}, ] [package.dependencies] @@ -1192,13 +1255,13 @@ files = [ [[package]] name = "starlette" -version = "0.27.0" +version = "0.35.1" description = "The little ASGI library that shines." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "starlette-0.27.0-py3-none-any.whl", hash = "sha256:918416370e846586541235ccd38a474c08b80443ed31c578a418e2209b3eef91"}, - {file = "starlette-0.27.0.tar.gz", hash = "sha256:6a6b0d042acb8d469a01eba54e9cda6cbd24ac602c4cd016723117d6a7e73b75"}, + {file = "starlette-0.35.1-py3-none-any.whl", hash = "sha256:50bbbda9baa098e361f398fda0928062abbaf1f54f4fadcbe17c092a01eb9a25"}, + {file = "starlette-0.35.1.tar.gz", hash = "sha256:3e2639dac3520e4f58734ed22553f950d3f3cb1001cd2eaac4d57e8cdc5f66bc"}, ] [package.dependencies] @@ -1219,48 +1282,37 @@ files = [ {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, ] -[[package]] -name = "tomli" -version = "2.0.1" -description = "A lil' TOML parser" -optional = false -python-versions = ">=3.7" -files = [ - {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, - {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, -] - [[package]] name = "typing-extensions" -version = "4.7.1" -description = "Backported and Experimental Type Hints for Python 3.7+" +version = "4.9.0" +description = "Backported and Experimental Type Hints for Python 3.8+" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, - {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, + {file = "typing_extensions-4.9.0-py3-none-any.whl", hash = "sha256:af72aea155e91adfc61c3ae9e0e342dbc0cba726d6cba4b6c72c1f34e47291cd"}, + {file = "typing_extensions-4.9.0.tar.gz", hash = "sha256:23478f88c37f27d76ac8aee6c905017a143b0b1b886c3c9f66bc2fd94f9f5783"}, ] [[package]] name = "tzdata" -version = "2023.3" +version = "2023.4" description = "Provider of IANA time zone data" optional = false python-versions = ">=2" files = [ - {file = "tzdata-2023.3-py2.py3-none-any.whl", hash = "sha256:7e65763eef3120314099b6939b5546db7adce1e7d6f2e179e3df563c70511eda"}, - {file = "tzdata-2023.3.tar.gz", hash = "sha256:11ef1e08e54acb0d4f95bdb1be05da659673de4acbd21bf9c69e94cc5e907a3a"}, + {file = "tzdata-2023.4-py2.py3-none-any.whl", hash = "sha256:aa3ace4329eeacda5b7beb7ea08ece826c28d761cda36e747cfbf97996d39bf3"}, + {file = "tzdata-2023.4.tar.gz", hash = "sha256:dd54c94f294765522c77399649b4fefd95522479a664a0cec87f41bebc6148c9"}, ] [[package]] name = "tzlocal" -version = "5.0.1" +version = "5.2" description = "tzinfo object for the local timezone" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "tzlocal-5.0.1-py3-none-any.whl", hash = "sha256:f3596e180296aaf2dbd97d124fe76ae3a0e3d32b258447de7b939b3fd4be992f"}, - {file = "tzlocal-5.0.1.tar.gz", hash = "sha256:46eb99ad4bdb71f3f72b7d24f4267753e240944ecfc16f25d2719ba89827a803"}, + {file = "tzlocal-5.2-py3-none-any.whl", hash = "sha256:49816ef2fe65ea8ac19d19aa7a1ae0551c834303d5014c6d5a62e4cbda8047b8"}, + {file = "tzlocal-5.2.tar.gz", hash = "sha256:8d399205578f1a9342816409cc1e46a93ebd5755e39ea2d85334bea911bf0e6e"}, ] [package.dependencies] @@ -1268,17 +1320,17 @@ files = [ tzdata = {version = "*", markers = "platform_system == \"Windows\""} [package.extras] -devenv = ["black", "check-manifest", "flake8", "pyroma", "pytest (>=4.3)", "pytest-cov", "pytest-mock (>=3.3)", "zest.releaser"] +devenv = ["check-manifest", "pytest (>=4.3)", "pytest-cov", "pytest-mock (>=3.3)", "zest.releaser"] [[package]] name = "uvicorn" -version = "0.23.2" +version = "0.26.0" description = "The lightning-fast ASGI server." optional = false python-versions = ">=3.8" files = [ - {file = "uvicorn-0.23.2-py3-none-any.whl", hash = "sha256:1f9be6558f01239d4fdf22ef8126c39cb1ad0addf76c40e760549d2c2f43ab53"}, - {file = "uvicorn-0.23.2.tar.gz", hash = "sha256:4d3cc12d7727ba72b64d12d3cc7743124074c0a69f7b201512fc50c3e3f1569a"}, + {file = "uvicorn-0.26.0-py3-none-any.whl", hash = "sha256:cdb58ef6b8188c6c174994b2b1ba2150a9a8ae7ea5fb2f1b856b94a815d6071d"}, + {file = "uvicorn-0.26.0.tar.gz", hash = "sha256:48bfd350fce3c5c57af5fb4995fded8fb50da3b4feb543eb18ad7e0d54589602"}, ] [package.dependencies] @@ -1305,20 +1357,20 @@ dev = ["black (>=19.3b0)", "pytest (>=4.6.2)"] [[package]] name = "zipp" -version = "3.16.2" +version = "3.17.0" description = "Backport of pathlib-compatible object wrapper for zip files" optional = false python-versions = ">=3.8" files = [ - {file = "zipp-3.16.2-py3-none-any.whl", hash = "sha256:679e51dd4403591b2d6838a48de3d283f3d188412a9782faadf845f298736ba0"}, - {file = "zipp-3.16.2.tar.gz", hash = "sha256:ebc15946aa78bd63458992fc81ec3b6f7b1e92d51c35e6de1c3804e73b799147"}, + {file = "zipp-3.17.0-py3-none-any.whl", hash = "sha256:0e923e726174922dce09c53c59ad483ff7bbb8e572e00c7f7c46b88556409f31"}, + {file = "zipp-3.17.0.tar.gz", hash = "sha256:84e64a1c28cf7e91ed2078bb8cc8c259cb19b76942096c8d7b84947690cabaf0"}, ] [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"] testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy (>=0.9.1)", "pytest-ruff"] [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "a01e6b86fb598d6b337016a0b9c76a29ca49a9fde074b1ef18122aa785bb09ef" +content-hash = "84928ecd058b4d0620d877b75aeb8347cf2ef59d1150bdb5f812b10a675f5df7" diff --git a/pyproject.toml b/pyproject.toml index 82d9efc2a5d00546d876d09f14159a55f7141844..9877c7d093787c23509593cbafed06a19c5b1242 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "meme-generator" -version = "0.0.15" +version = "0.0.18" description = "Python package for making fun pictures" authors = ["meetwq "] license = "MIT" @@ -28,7 +28,6 @@ dateparser = "^1.1.0" typing-extensions = ">=4.0.0,<5.0.0" [tool.poetry.group.dev.dependencies] -black = "^22.1.0" [tool.poetry.scripts] meme = "meme_generator.cli:main" @@ -37,6 +36,13 @@ meme = "meme_generator.cli:main" profile = "black" skip_gitignore = true +[tool.ruff] +select = ["E", "W", "F", "UP", "C", "T", "PYI", "Q"] +ignore = ["E402", "E501", "E711", "C901", "UP037"] + +[tool.ruff.isort] +detect-same-package = true + [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" diff --git a/resources/fonts/GlowSansSC-Normal-Heavy.otf b/resources/fonts/GlowSansSC-Normal-Heavy.otf new file mode 100644 index 0000000000000000000000000000000000000000..7ba6231c332c1f59899d0eeb562fbe3c4274856a --- /dev/null +++ b/resources/fonts/GlowSansSC-Normal-Heavy.otf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f7c4704c1ebf564cbd5fbefed3f497fc7d735521364debe2feb3b38153ec321 +size 9241072 diff --git a/resources/fonts/RoGSanSrfStd-Bd.otf b/resources/fonts/RoGSanSrfStd-Bd.otf new file mode 100644 index 0000000000000000000000000000000000000000..d4eb50608f0f499033963f655d692fb7ac7ec969 --- /dev/null +++ b/resources/fonts/RoGSanSrfStd-Bd.otf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:299f361bd5ca959494799fe804046aa7ccae1748ceaebad927ad95a9737a312c +size 1347308 diff --git a/resources/resource_list.json b/resources/resource_list.json index 2ac3485fc6cec96a3668374de60cdef79071f054..5dc67443ba91384652ec9e98d54cd1adce7b1570 100644 --- a/resources/resource_list.json +++ b/resources/resource_list.json @@ -1,5238 +1,5746 @@ [ - { - "path": "acg_entrance/images/0.png", - "hash": "50d92b64bfdd6b7aa3872ba24bface4f" - }, - { - "path": "add_chaos/images/0.png", - "hash": "c9265d1d01b8d0746a544640f924e2c2" - }, - { - "path": "addiction/images/0.png", - "hash": "dc201145111b74eca4d09429afe0dfb9" - }, - { - "path": "always_like/images/0.png", - "hash": "7e4b3845cf80fa46942269d58bd64e9d" - }, - { - "path": "anti_kidnap/images/0.png", - "hash": "57991b7103cecbe1c13dc03cf4b7ed38" - }, - { - "path": "anya_suki/images/0.png", - "hash": "9a46dd33cc7a511a8368e768c6d4abb0" - }, - { - "path": "applaud/images/0.png", - "hash": "0e5f561f3abc093f8089ed5e3b4d4e51" - }, - { - "path": "applaud/images/1.png", - "hash": "948ee568b13be8427c0dd8d6de5740c3" - }, - { - "path": "applaud/images/2.png", - "hash": "ab191735e9c523517deca3e4c444bd81" - }, - { - "path": "applaud/images/3.png", - "hash": "46579d1329fa40685a264720bdb97593" - }, - { - "path": "applaud/images/4.png", - "hash": "26b72b155b645d5e8ed4f96948c48ba7" - }, - { - "path": "ascension/images/0.png", - "hash": "e09e50c266c1e8babfe2c73612ac4200" - }, - { - "path": "back_to_work/images/0.png", - "hash": "d85cf009fac3ce49ed90883e0c61e737" - }, - { - "path": "bad_news/images/0.png", - "hash": "960baf23d9d516c5ea6d13f48b67f070" - }, - { - "path": "beat_head/images/0.png", - "hash": "eacd07809b6ead153d7edd6630c18b57" - }, - { - "path": "beat_head/images/1.png", - "hash": "9c9c2eeee4dd11ce6af0e5ac9810ff9b" - }, - { - "path": "beat_head/images/2.png", - "hash": "94e491fbd91d9a8714ad87bd6dd2259f" - }, - { - "path": "bite/images/0.png", - "hash": "1bf01e9d335cea07f0fa41ac9b7cf1c4" - }, - { - "path": "bite/images/1.png", - "hash": "f39275eb62478b134d334cd12816ea8b" - }, - { - "path": "bite/images/10.png", - "hash": "3803c4e601226c29d9d5649fe4a14035" - }, - { - "path": "bite/images/11.png", - "hash": "0ecbeccbb0b56aba5141482308749688" - }, - { - "path": "bite/images/12.png", - "hash": "33294ff41e6106e9f058cb4c12774ecf" - }, - { - "path": "bite/images/13.png", - "hash": "0c146c08708ff40246876f6aab9ea7e5" - }, - { - "path": "bite/images/14.png", - "hash": "3803c4e601226c29d9d5649fe4a14035" - }, - { - "path": "bite/images/15.png", - "hash": "0ecbeccbb0b56aba5141482308749688" - }, - { - "path": "bite/images/2.png", - "hash": "ed49249ac247d237310faffb7d11c11e" - }, - { - "path": "bite/images/3.png", - "hash": "95d8fe8bfe6a6bafc0a02b7be64e7ea5" - }, - { - "path": "bite/images/4.png", - "hash": "a95502dae9f2a18b8be3dd2c68af10aa" - }, - { - "path": "bite/images/5.png", - "hash": "04449c3729ff7422bbd2f811e7ec9d89" - }, - { - "path": "bite/images/6.png", - "hash": "1924b0e63242af4a0280a5458e9cafda" - }, - { - "path": "bite/images/7.png", - "hash": "90bc4c8ad295a7a63123ebf98a39fe0f" - }, - { - "path": "bite/images/8.png", - "hash": "33294ff41e6106e9f058cb4c12774ecf" - }, - { - "path": "bite/images/9.png", - "hash": "0c146c08708ff40246876f6aab9ea7e5" - }, - { - "path": "blood_pressure/images/0.png", - "hash": "d5dd1ea44908952885ff14a283f99695" - }, - { - "path": "bocchi_draft/images/0.png", - "hash": "680aea676a5f3d510ddee5c30201e59e" - }, - { - "path": "bocchi_draft/images/1.png", - "hash": "680aea676a5f3d510ddee5c30201e59e" - }, - { - "path": "bocchi_draft/images/10.png", - "hash": "7223660dff08058ebfd18abe91e3b4c1" - }, - { - "path": "bocchi_draft/images/11.png", - "hash": "5be40608585af14e81d1290a822bb765" - }, - { - "path": "bocchi_draft/images/12.png", - "hash": "10fe7523c888e2f9d58f63b529138c67" - }, - { - "path": "bocchi_draft/images/13.png", - "hash": "f04a0254f4cf76de4dcb15e006ce5251" - }, - { - "path": "bocchi_draft/images/14.png", - "hash": "e02a5bf9fd8c010dbbdbdfcfd68c88b2" - }, - { - "path": "bocchi_draft/images/15.png", - "hash": "c627cf848a3258c3f60f387f94424594" - }, - { - "path": "bocchi_draft/images/16.png", - "hash": "3ae22d0f4d647123a5a3d6463615894f" - }, - { - "path": "bocchi_draft/images/17.png", - "hash": "d3b524c173dae3f6f99a9280348c7c9f" - }, - { - "path": "bocchi_draft/images/18.png", - "hash": "89138ffaae09314d0d6ace6ea084dd35" - }, - { - "path": "bocchi_draft/images/19.png", - "hash": "5369cc29e4deab14936cae35cf6a039e" - }, - { - "path": "bocchi_draft/images/2.png", - "hash": "680aea676a5f3d510ddee5c30201e59e" - }, - { - "path": "bocchi_draft/images/20.png", - "hash": "23b17e86c34e6762c774f71cebef119b" - }, - { - "path": "bocchi_draft/images/21.png", - "hash": "23b17e86c34e6762c774f71cebef119b" - }, - { - "path": "bocchi_draft/images/22.png", - "hash": "23b17e86c34e6762c774f71cebef119b" - }, - { - "path": "bocchi_draft/images/3.png", - "hash": "d2fe56d893a8bf44d12fa43dc0d9616f" - }, - { - "path": "bocchi_draft/images/4.png", - "hash": "8c9b0855d8a752fb0c1969e5962035e2" - }, - { - "path": "bocchi_draft/images/5.png", - "hash": "3e1fe9c59bd56721b8e306b30fec11a1" - }, - { - "path": "bocchi_draft/images/6.png", - "hash": "81c83f74c8fb24c7aaf47c794c42f5b7" - }, - { - "path": "bocchi_draft/images/7.png", - "hash": "12d192f4487f6caf72c14328fbe62915" - }, - { - "path": "bocchi_draft/images/8.png", - "hash": "30c655e223bb9e6d2f5f60deec416941" - }, - { - "path": "bocchi_draft/images/9.png", - "hash": "ecd068db32969f4b587b992acce1fd65" - }, - { - "path": "bronya_holdsign/images/0.jpg", - "hash": "fc035e0ac02ee3bd44f4409f8df14ed9" - }, - { - "path": "bubble_tea/images/0.png", - "hash": "31c42e10985c1efa934d6b616b155c92" - }, - { - "path": "caoshen_bite/images/0.png", - "hash": "08420f435eb8e9b395fad3bc11823c70" - }, - { - "path": "caoshen_bite/images/1.png", - "hash": "f340d01ad0763eb5600a41c8008e03d5" - }, - { - "path": "caoshen_bite/images/10.png", - "hash": "a1d267b8c2dc8960145e809a6f369fab" - }, - { - "path": "caoshen_bite/images/11.png", - "hash": "9f9441dcc91f0062ca846ad3b0b8620c" - }, - { - "path": "caoshen_bite/images/12.png", - "hash": "ff19d6745c655440c5694ef5f295a65d" - }, - { - "path": "caoshen_bite/images/13.png", - "hash": "ef07e844622561ad41f0f385d1c6c9b3" - }, - { - "path": "caoshen_bite/images/14.png", - "hash": "897d566b8141a1bfc2511028cee4fe1f" - }, - { - "path": "caoshen_bite/images/15.png", - "hash": "fd6c58767115008172ab831f45094e17" - }, - { - "path": "caoshen_bite/images/16.png", - "hash": "601e9c86aa5c88f8f61eb1f864f646ed" - }, - { - "path": "caoshen_bite/images/17.png", - "hash": "7bd7c71a858fb17a79e9edad48c9eaa7" - }, - { - "path": "caoshen_bite/images/18.png", - "hash": "9cd95aa172f1ed3c7f05b09cc79ab782" - }, - { - "path": "caoshen_bite/images/19.png", - "hash": "75a0f0e5743b463fe2720fd2af485faf" - }, - { - "path": "caoshen_bite/images/2.png", - "hash": "6aad3b8f4033dbd8e8d3337543e13021" - }, - { - "path": "caoshen_bite/images/20.png", - "hash": "ea4d6d11dba51342bd1dabe6d88ba5e3" - }, - { - "path": "caoshen_bite/images/21.png", - "hash": "a567e86a31fcbe0253deb3feb774d4c5" - }, - { - "path": "caoshen_bite/images/22.png", - "hash": "05e08e612e618e33439e1d1d6e8fa175" - }, - { - "path": "caoshen_bite/images/23.png", - "hash": "18389bd829edb63d0ceae078bb1763ce" - }, - { - "path": "caoshen_bite/images/24.png", - "hash": "7891aac64cf87dc9d9434fac371a3407" - }, - { - "path": "caoshen_bite/images/25.png", - "hash": "ae02845905cb4dabc9fb895abd401c00" - }, - { - "path": "caoshen_bite/images/26.png", - "hash": "64edbdbe41176edca386c65f0f8af96f" - }, - { - "path": "caoshen_bite/images/27.png", - "hash": "f4cb93a0a4bec4e7d083a3d9933cf09c" - }, - { - "path": "caoshen_bite/images/28.png", - "hash": "97b63b42a2185e68226a7169d87b0b6e" - }, - { - "path": "caoshen_bite/images/29.png", - "hash": "1fd421c45721fd2e0d0f332b7f04292e" - }, - { - "path": "caoshen_bite/images/3.png", - "hash": "2e1d13692bf091b5c6f6f085949d68f8" - }, - { - "path": "caoshen_bite/images/30.png", - "hash": "b6eecaaab53ea23f05257ac999c418d0" - }, - { - "path": "caoshen_bite/images/31.png", - "hash": "7895a3b96748d299471d5ea7e29acd1a" - }, - { - "path": "caoshen_bite/images/32.png", - "hash": "651c3ed9a98818165d18e0c324824460" - }, - { - "path": "caoshen_bite/images/33.png", - "hash": "a040f062a3efc9a234cb086f434dafbf" - }, - { - "path": "caoshen_bite/images/34.png", - "hash": "34d89ed45313e5251253af64f616e8a1" - }, - { - "path": "caoshen_bite/images/35.png", - "hash": "655c475ad47f0badb51dccfca6e1aac7" - }, - { - "path": "caoshen_bite/images/36.png", - "hash": "0c5f969d05f730bedc7e2878e273b874" - }, - { - "path": "caoshen_bite/images/37.png", - "hash": "2d224e773965415953b7b4b8841b595c" - }, - { - "path": "caoshen_bite/images/4.png", - "hash": "ea4c10cdfb97252224814c92d8ecc175" - }, - { - "path": "caoshen_bite/images/5.png", - "hash": "cc4c6a030b0ba9a77ba559a49ce9d9be" - }, - { - "path": "caoshen_bite/images/6.png", - "hash": "d6f30de64fadec982c1e988a71dff7ed" - }, - { - "path": "caoshen_bite/images/7.png", - "hash": "b817fc07aa3cde720162bb693caca64c" - }, - { - "path": "caoshen_bite/images/8.png", - "hash": "5be01bb928ba4b553a7eb2256b5ec198" - }, - { - "path": "caoshen_bite/images/9.png", - "hash": "737d6062cd53c0133b361cb2c4543ffc" - }, - { - "path": "capoo_draw/images/0.png", - "hash": "f912144ee503cb4c193e6c109eb83637" - }, - { - "path": "capoo_draw/images/1.png", - "hash": "d85d94489c3a4ad1c418782ff5a9dafa" - }, - { - "path": "capoo_draw/images/2.png", - "hash": "dc3f3d37a5b985088388253ff7abecf4" - }, - { - "path": "capoo_draw/images/3.png", - "hash": "97034f01eed7f12767f224911e667a6f" - }, - { - "path": "capoo_draw/images/4.png", - "hash": "137787ff3e3df61f9238874ebe8ce46b" - }, - { - "path": "capoo_draw/images/5.png", - "hash": "f0480a00928db523221265376dfe7c07" - }, - { - "path": "capoo_rip/images/0.png", - "hash": "b9071375f262197ebb2a646875b8d819" - }, - { - "path": "capoo_rip/images/1.png", - "hash": "1e57ec96c106f137106eaf263f28ef4b" - }, - { - "path": "capoo_rip/images/2.png", - "hash": "6b30315d53652333e1587b7478242d27" - }, - { - "path": "capoo_rip/images/3.png", - "hash": "a949947118b16140c7efb35c5ed59abf" - }, - { - "path": "capoo_rip/images/4.png", - "hash": "c4337ead3d063740014be45c6b14eb1f" - }, - { - "path": "capoo_rip/images/5.png", - "hash": "983f0d7e0c9080479d29f646c0a406f8" - }, - { - "path": "capoo_rip/images/6.png", - "hash": "1258ad3db7914f7f2f955a6f2c910595" - }, - { - "path": "capoo_rip/images/7.png", - "hash": "c4d7613a7d578dd956e66edfbac23c89" - }, - { - "path": "capoo_rub/images/0.png", - "hash": "6fc3f9dd10f0a7de7f8c4c853166de26" - }, - { - "path": "capoo_rub/images/1.png", - "hash": "4ee09f4c274dac2d33c59f1a464591df" - }, - { - "path": "capoo_rub/images/2.png", - "hash": "3e4d4babbd4b9081682651510ad70680" - }, - { - "path": "capoo_rub/images/3.png", - "hash": "6d35b343f1bde5f1de4a5df94921b634" - }, - { - "path": "capoo_say/images/0.png", - "hash": "f068d28034bde7515340a58da0e4d9bf" - }, - { - "path": "capoo_say/images/1.png", - "hash": "3135e96c106a035153400d2ebe8f0be5" - }, - { - "path": "capoo_say/images/2.png", - "hash": "13c0e3e5db935829df8216518b951ebd" - }, - { - "path": "capoo_say/images/3.png", - "hash": "371b2e086c5949945a896c63a091fa7a" - }, - { - "path": "capoo_say/images/4.png", - "hash": "0c2bd48833523efb31917ad3d3b9b639" - }, - { - "path": "capoo_say/images/5.png", - "hash": "e55a0f719d1e6cd644f5ccff2cd783c0" - }, - { - "path": "capoo_say/images/6.png", - "hash": "a834e50a071769825efa5d37bc983f3e" - }, - { - "path": "capoo_say/images/7.png", - "hash": "7d3d97118846dea27983479710d91194" - }, - { - "path": "capoo_say/images/8.png", - "hash": "1079fa13aa6adcfb2d90c1a58d5d092d" - }, - { - "path": "capoo_say/images/9.png", - "hash": "b9b1b73405dd68d923930425a04fc26e" - }, - { - "path": "capoo_strike/images/0.png", - "hash": "3b7f60521294a0fd93c9a73b8d67a4e7" - }, - { - "path": "capoo_strike/images/1.png", - "hash": "c73899d2b67010fb4171d4aedcdaed81" - }, - { - "path": "capoo_strike/images/2.png", - "hash": "4c6643ac048d75df4103af4788be9053" - }, - { - "path": "capoo_strike/images/3.png", - "hash": "865082240baad33b6a1d58ba6187c026" - }, - { - "path": "capoo_strike/images/4.png", - "hash": "d9ae348ed2306b1fe04f7004078bb41f" - }, - { - "path": "capoo_strike/images/5.png", - "hash": "e33771e54e4204c5881ec955fa6a021d" - }, - { - "path": "capoo_strike/images/6.png", - "hash": "a4f9b749b5481a65220581eb7be03d8b" - }, - { - "path": "captain/images/0.png", - "hash": "f6cca0f44aa54c721f8b172f8ebb7f40" - }, - { - "path": "captain/images/1.png", - "hash": "2885566e47ef4fb40560149c795dca7f" - }, - { - "path": "captain/images/2.png", - "hash": "e230240d0929b774a985a301962d36b5" - }, - { - "path": "chase_train/images/0.png", - "hash": "7bf7c41898169f70973a249905e1086c" - }, - { - "path": "chase_train/images/1.png", - "hash": "1db1364a8dbd84e6ef74079bb5ff17a8" - }, - { - "path": "chase_train/images/10.png", - "hash": "292dbe5e5d0e420b4ef258b19ac52172" - }, - { - "path": "chase_train/images/100.png", - "hash": "4ed64a045b8ab95aafea0eb4c5079fa6" - }, - { - "path": "chase_train/images/101.png", - "hash": "335739eb957573a9dec19dba2b16b3e7" - }, - { - "path": "chase_train/images/102.png", - "hash": "dd879e677cb54ea91a7e68f776c523a6" - }, - { - "path": "chase_train/images/103.png", - "hash": "739f501c7826edd93c77b66ec868b194" - }, - { - "path": "chase_train/images/104.png", - "hash": "ba51852201ecad21a3f76d7603bba4a5" - }, - { - "path": "chase_train/images/105.png", - "hash": "f165e50e13ba5ec1806ba56111ebadd9" - }, - { - "path": "chase_train/images/106.png", - "hash": "dddec974b82ae647fbdf1c2a09a3ee61" - }, - { - "path": "chase_train/images/107.png", - "hash": "542d308cbcf85cc202622a79588d3a49" - }, - { - "path": "chase_train/images/108.png", - "hash": "2b10c147fc987e17e8898f77e2bdcb14" - }, - { - "path": "chase_train/images/109.png", - "hash": "69f87ef8712a717ce6dbaa7aa95d8eea" - }, - { - "path": "chase_train/images/11.png", - "hash": "9c046b3902292b4737503161f2b62d02" - }, - { - "path": "chase_train/images/110.png", - "hash": "4e91a1f042ff3f4adb1a823b1e1f1fe2" - }, - { - "path": "chase_train/images/111.png", - "hash": "edd3d9ee22bf9e700ba6ddb4827afd3e" - }, - { - "path": "chase_train/images/112.png", - "hash": "ed5902b62cd2e1ac54d32ff19e30505e" - }, - { - "path": "chase_train/images/113.png", - "hash": "e65e849be18bfc610b60ac862cf9e1e5" - }, - { - "path": "chase_train/images/114.png", - "hash": "4d464c70883177e31f05a65ade9de13e" - }, - { - "path": "chase_train/images/115.png", - "hash": "353675889c312a1416055d01317069ba" - }, - { - "path": "chase_train/images/116.png", - "hash": "b207d15fdbb26087d5bf527f27e4f087" - }, - { - "path": "chase_train/images/117.png", - "hash": "36fe4bb2cce9974141030210144c3ad8" - }, - { - "path": "chase_train/images/118.png", - "hash": "4235c27a89563fea2d7f5b114233ef17" - }, - { - "path": "chase_train/images/119.png", - "hash": "dd2c42261479419e676f09c55ed8e79a" - }, - { - "path": "chase_train/images/12.png", - "hash": "98ea083aa53ff3f3af606e7e67033476" - }, - { - "path": "chase_train/images/13.png", - "hash": "a6f43b04aa305e5a320e20db5d850199" - }, - { - "path": "chase_train/images/14.png", - "hash": "37074ede0dea70240baf2d26dd77a373" - }, - { - "path": "chase_train/images/15.png", - "hash": "fae7dbfbfff28b3eae665d48c656d4ff" - }, - { - "path": "chase_train/images/16.png", - "hash": "47b500c96c779d4ac335b5c46bdb2e0a" - }, - { - "path": "chase_train/images/17.png", - "hash": "e69029fc7f4ed692e06c4794d6dac4ae" - }, - { - "path": "chase_train/images/18.png", - "hash": "71de33d9e84189ab458df8c053317b91" - }, - { - "path": "chase_train/images/19.png", - "hash": "8d36823b898e52b32cc25b9ffabcf339" - }, - { - "path": "chase_train/images/2.png", - "hash": "65a0830bc6d6a3127faf8e50822ac8b3" - }, - { - "path": "chase_train/images/20.png", - "hash": "f5734adff0f98aa2efa2f0b7d70884bc" - }, - { - "path": "chase_train/images/21.png", - "hash": "6815118e286fdbf9078e20f41e6112af" - }, - { - "path": "chase_train/images/22.png", - "hash": "01f3a8eb8983bc6e24634839bee85b55" - }, - { - "path": "chase_train/images/23.png", - "hash": "b02e49bd23246d91efac12cc777d7f78" - }, - { - "path": "chase_train/images/24.png", - "hash": "a0ee2dc52c4c1c473cc57092d942f7b2" - }, - { - "path": "chase_train/images/25.png", - "hash": "ab7a9e557e09314a8e5109dcf809e296" - }, - { - "path": "chase_train/images/26.png", - "hash": "b1cadf11b827d74f0ddf48ef0a5a5d28" - }, - { - "path": "chase_train/images/27.png", - "hash": "6348519826d61b471a8fece92e4ee516" - }, - { - "path": "chase_train/images/28.png", - "hash": "58f9a74fa74d3a4198510e005c4484ca" - }, - { - "path": "chase_train/images/29.png", - "hash": "521571b8b5b5654129ebb195066480c6" - }, - { - "path": "chase_train/images/3.png", - "hash": "3b9f749bc39286b7b5e0d9e726a1d4bd" - }, - { - "path": "chase_train/images/30.png", - "hash": "973241e42057f711fd370c36d466d683" - }, - { - "path": "chase_train/images/31.png", - "hash": "57bcfb0936d920907e0c84d8091f2384" - }, - { - "path": "chase_train/images/32.png", - "hash": "a475f33be6cff4fd435429165e7a89ab" - }, - { - "path": "chase_train/images/33.png", - "hash": "9fe7fc8f8b51e75b55ce58990615b8ae" - }, - { - "path": "chase_train/images/34.png", - "hash": "ca099830bd27ea5a263ec413032a731a" - }, - { - "path": "chase_train/images/35.png", - "hash": "48a37c15cb3f553178b8a322ee5498a4" - }, - { - "path": "chase_train/images/36.png", - "hash": "83ddc24949269dacee985c5dd08dfef0" - }, - { - "path": "chase_train/images/37.png", - "hash": "502d977a23285c42690e04e48133ef45" - }, - { - "path": "chase_train/images/38.png", - "hash": "c34f48052c67d8bd9eb57499da3fce44" - }, - { - "path": "chase_train/images/39.png", - "hash": "f8da1e9c2dea0e6d227412a70a556ada" - }, - { - "path": "chase_train/images/4.png", - "hash": "5869633c96666ef1bd22a23177e41a11" - }, - { - "path": "chase_train/images/40.png", - "hash": "4976ea014147cdf6beebb22e26011ad6" - }, - { - "path": "chase_train/images/41.png", - "hash": "00a733e04c08f01af4a76d470c9fa3e0" - }, - { - "path": "chase_train/images/42.png", - "hash": "4bbc5205e8c8368ef5aeaf964128c79d" - }, - { - "path": "chase_train/images/43.png", - "hash": "aea76edecc7a6115cca6a75e98005adc" - }, - { - "path": "chase_train/images/44.png", - "hash": "916f4fe46a610ad7a36fbd2dfe2b1a71" - }, - { - "path": "chase_train/images/45.png", - "hash": "ba8f249cbdb55c25b467134c0c486bd3" - }, - { - "path": "chase_train/images/46.png", - "hash": "c9b25bc88e55cfffc0fa86615fcfe81c" - }, - { - "path": "chase_train/images/47.png", - "hash": "65d9a4ca467b3586f07e51cc1eabbc98" - }, - { - "path": "chase_train/images/48.png", - "hash": "7206195dbce1db53e8824d6e9aec3080" - }, - { - "path": "chase_train/images/49.png", - "hash": "2b4c83f6bc3b23ee293e1aac1a7ccd03" - }, - { - "path": "chase_train/images/5.png", - "hash": "1752695309e244dbd1d9717da63c9129" - }, - { - "path": "chase_train/images/50.png", - "hash": "3e2a46aa34f81dcd11fd4231c6b05160" - }, - { - "path": "chase_train/images/51.png", - "hash": "3b52abcf06fef40c45f373791f38a7ae" - }, - { - "path": "chase_train/images/52.png", - "hash": "db480438656ac78c053bd986f88b8e20" - }, - { - "path": "chase_train/images/53.png", - "hash": "efca259de1ced624cf9f24f78ca4cec8" - }, - { - "path": "chase_train/images/54.png", - "hash": "dc0b5c1a5971e2141cbe4d9c56d0c128" - }, - { - "path": "chase_train/images/55.png", - "hash": "ad9da6c1dc641a6bede0f4b7c8e38f30" - }, - { - "path": "chase_train/images/56.png", - "hash": "235c74c051701ca383eb8dc390934ac3" - }, - { - "path": "chase_train/images/57.png", - "hash": "257a0e3debc5b5176dc5ea61880a9d2d" - }, - { - "path": "chase_train/images/58.png", - "hash": "e4aa8b6784dd697280065e967315afc9" - }, - { - "path": "chase_train/images/59.png", - "hash": "455619e428f24bc7297246ea509cdc8e" - }, - { - "path": "chase_train/images/6.png", - "hash": "a2e63edc5c56f8dc5a1f749eaba9ad1c" - }, - { - "path": "chase_train/images/60.png", - "hash": "06658ba5901219637dcb86687e878488" - }, - { - "path": "chase_train/images/61.png", - "hash": "7fbab76e20924d6d655d256cb2a7618e" - }, - { - "path": "chase_train/images/62.png", - "hash": "f00691c5671383d2040ebb3cc6d0fce6" - }, - { - "path": "chase_train/images/63.png", - "hash": "22dc12001b5237b196859a9f57c00486" - }, - { - "path": "chase_train/images/64.png", - "hash": "fb529e76863bc338b7c01d8d5d152a01" - }, - { - "path": "chase_train/images/65.png", - "hash": "d9da6224c137a9f20998acbe92740dc2" - }, - { - "path": "chase_train/images/66.png", - "hash": "b3d7c85a3af021ae09ccc111a271f67d" - }, - { - "path": "chase_train/images/67.png", - "hash": "f9e1bb5ab9160458dabfb2c814e5c96c" - }, - { - "path": "chase_train/images/68.png", - "hash": "34629b82b74ea3064f91cb5e2d3d2c35" - }, - { - "path": "chase_train/images/69.png", - "hash": "a3cc3bd6f43a9d57f7165db69409b785" - }, - { - "path": "chase_train/images/7.png", - "hash": "81a63cd5a80146039ead67df4dc6a00f" - }, - { - "path": "chase_train/images/70.png", - "hash": "25f0e2695b503b9712aa97586e2d2d68" - }, - { - "path": "chase_train/images/71.png", - "hash": "a730868e157a3cf19d522c5c522a6ebe" - }, - { - "path": "chase_train/images/72.png", - "hash": "5a2d4cad093f62729029e7b46267912b" - }, - { - "path": "chase_train/images/73.png", - "hash": "ded3cb4a8d95243f160aec398b1478d6" - }, - { - "path": "chase_train/images/74.png", - "hash": "779beb6f0109623be10b2384e14e5170" - }, - { - "path": "chase_train/images/75.png", - "hash": "e04087097cf67d87e5a1a845a7f4f2e4" - }, - { - "path": "chase_train/images/76.png", - "hash": "398d14e6939d3af6a56382d5e4798ea7" - }, - { - "path": "chase_train/images/77.png", - "hash": "04e0eab8bbe7812c340e6973796b5852" - }, - { - "path": "chase_train/images/78.png", - "hash": "24a19ab361acbceda3b74a920c116cf4" - }, - { - "path": "chase_train/images/79.png", - "hash": "c64f1273c6f0838c82f63644ba61f2b0" - }, - { - "path": "chase_train/images/8.png", - "hash": "6f905804a2dd792088fb020ed4ba1ec5" - }, - { - "path": "chase_train/images/80.png", - "hash": "9dbf7b98b1f900666a284ff8c2a53bb5" - }, - { - "path": "chase_train/images/81.png", - "hash": "b1fac283bebd34b8299b4f07796882d1" - }, - { - "path": "chase_train/images/82.png", - "hash": "838e37bd37a44ae626057b7f4112a4f4" - }, - { - "path": "chase_train/images/83.png", - "hash": "1fc3c2aac840addab4a7232fce8d2618" - }, - { - "path": "chase_train/images/84.png", - "hash": "11e70793a048c508b1fd7ce200f2305c" - }, - { - "path": "chase_train/images/85.png", - "hash": "c9dc1d6b9880738b34ed8c2523ab28fa" - }, - { - "path": "chase_train/images/86.png", - "hash": "7accb0d98b7a09033238757722c06481" - }, - { - "path": "chase_train/images/87.png", - "hash": "ad7a36af263b89b9fd93c560cd93c734" - }, - { - "path": "chase_train/images/88.png", - "hash": "78c6254f5bc50edae2ad5ae77276ad37" - }, - { - "path": "chase_train/images/89.png", - "hash": "bc84844fa4af35b09773caaa78fefda0" - }, - { - "path": "chase_train/images/9.png", - "hash": "ac728bb2724f1b87a858225df47fe1a7" - }, - { - "path": "chase_train/images/90.png", - "hash": "50dc68f1ce171eea7186f1c80a868ad8" - }, - { - "path": "chase_train/images/91.png", - "hash": "8781c486e83faad346335c7f10fcd4ec" - }, - { - "path": "chase_train/images/92.png", - "hash": "6bb85189d43d162ff52e37da13a2c090" - }, - { - "path": "chase_train/images/93.png", - "hash": "4b7bb7d0423d12aba6b52153cefd8a82" - }, - { - "path": "chase_train/images/94.png", - "hash": "43ce0d9a874c4d4452f19e87411b1b24" - }, - { - "path": "chase_train/images/95.png", - "hash": "f61a6df0cb1977cdbc0413b249d2fec1" - }, - { - "path": "chase_train/images/96.png", - "hash": "2ba4cdef4cd8822b36c6afdf65aa2ccf" - }, - { - "path": "chase_train/images/97.png", - "hash": "7334779ae38e8a0f1d76e7e6d576af5c" - }, - { - "path": "chase_train/images/98.png", - "hash": "d249d2f3aab8f4eec578465b76c50cad" - }, - { - "path": "chase_train/images/99.png", - "hash": "4571cc545e6885c3b564ab87336cfe8e" - }, - { - "path": "china_flag/images/0.png", - "hash": "aa64adae6f7ede5bceafe81a5273cafc" - }, - { - "path": "confuse/images/0.png", - "hash": "4758c555242fb3b8f3f7426e575dde95" - }, - { - "path": "confuse/images/1.png", - "hash": "36fad69b2f66b88282254a9faf57d1ac" - }, - { - "path": "confuse/images/10.png", - "hash": "6ce9115d8292edabd74a1b7fbdced670" - }, - { - "path": "confuse/images/11.png", - "hash": "9b1a1434e083320b58390a4f86aa8ac8" - }, - { - "path": "confuse/images/12.png", - "hash": "f53fca003ac5b66f64cf7546a56356bc" - }, - { - "path": "confuse/images/13.png", - "hash": "14e4c8f746f319f15cad7d02daa7dad0" - }, - { - "path": "confuse/images/14.png", - "hash": "ba413c63991f17e2bd0a28bc4c105bae" - }, - { - "path": "confuse/images/15.png", - "hash": "f61159552fa9ab7f9e452ff927fc8acb" - }, - { - "path": "confuse/images/16.png", - "hash": "f938d95975d5f1045c2823ad396b4979" - }, - { - "path": "confuse/images/17.png", - "hash": "6832dea7f470464c095f65925e3a6ba9" - }, - { - "path": "confuse/images/18.png", - "hash": "8a49ebf2ab4564f650e690bef420695d" - }, - { - "path": "confuse/images/19.png", - "hash": "9a6d5fe6538b795bba572e0c4ab55ecc" - }, - { - "path": "confuse/images/2.png", - "hash": "82364e42fbc865097412338837b2d328" - }, - { - "path": "confuse/images/20.png", - "hash": "c29dfedd885067b036f2fa6e6d353ff3" - }, - { - "path": "confuse/images/21.png", - "hash": "349a96211a03552d040d044eb3f6bdd8" - }, - { - "path": "confuse/images/22.png", - "hash": "02de93e56d54e4c0d5628f5261643203" - }, - { - "path": "confuse/images/23.png", - "hash": "5ef1795da2f86c4a64e67263e3edfd1a" - }, - { - "path": "confuse/images/24.png", - "hash": "cc16e54ef506cdb23d9e0cfad2294603" - }, - { - "path": "confuse/images/25.png", - "hash": "b031bdd75398a2c14913d3a9b0f434c2" - }, - { - "path": "confuse/images/26.png", - "hash": "b410f262a549e23bf0c7cade90ebb412" - }, - { - "path": "confuse/images/27.png", - "hash": "11e766fac91cef3a207fab7c6131790f" - }, - { - "path": "confuse/images/28.png", - "hash": "0e5c0d09536eeefd8648c820e3d6d802" - }, - { - "path": "confuse/images/29.png", - "hash": "e22c184a0b8fae0c34e135949bb8b988" - }, - { - "path": "confuse/images/3.png", - "hash": "349dd7216c0a55db11127d985d592b12" - }, - { - "path": "confuse/images/30.png", - "hash": "5cebf2a9d4fa49500885df77b759cf1b" - }, - { - "path": "confuse/images/31.png", - "hash": "1632f329095a83130e72f89ff37c8454" - }, - { - "path": "confuse/images/32.png", - "hash": "362d6ce1326c08436566b7944a8bd2f4" - }, - { - "path": "confuse/images/33.png", - "hash": "ab3516b03fb98be9785005958d2577a3" - }, - { - "path": "confuse/images/34.png", - "hash": "da4af5bbd2f6b8747965b300e421c902" - }, - { - "path": "confuse/images/35.png", - "hash": "ac38b4b0bd681bf5b13b37888d05992b" - }, - { - "path": "confuse/images/36.png", - "hash": "95a43fc43eac8a5bde512ddacf037c3d" - }, - { - "path": "confuse/images/37.png", - "hash": "0c8526d12f5764a860d01017f3fbebbc" - }, - { - "path": "confuse/images/38.png", - "hash": "43a4bf013712dd73830d728e024d03f3" - }, - { - "path": "confuse/images/39.png", - "hash": "df7f3cb11a4e3a964e6886fd91559bf0" - }, - { - "path": "confuse/images/4.png", - "hash": "935ae3c540c5fe3dbad3cc5900564272" - }, - { - "path": "confuse/images/40.png", - "hash": "86d07b123ce2d919aa0d1a11bc8c8af0" - }, - { - "path": "confuse/images/41.png", - "hash": "14c5dcda50d097e7c418d678314f762a" - }, - { - "path": "confuse/images/42.png", - "hash": "670d20b0d7bd9327d4314871972c8dc6" - }, - { - "path": "confuse/images/43.png", - "hash": "cd247bbbe553704b93a22d6a68d68db9" - }, - { - "path": "confuse/images/44.png", - "hash": "e1c0b8a37f6a14d4512e68a5aa9c8c7e" - }, - { - "path": "confuse/images/45.png", - "hash": "f5efa7ffa7d28a8d9734ac6da16fd1f8" - }, - { - "path": "confuse/images/46.png", - "hash": "3e8c31adbb8263e787417efd862c35bd" - }, - { - "path": "confuse/images/47.png", - "hash": "8813439d0c101eee39c62cea5ac7cc63" - }, - { - "path": "confuse/images/48.png", - "hash": "65b6c396ed0e069314d411a760c732d1" - }, - { - "path": "confuse/images/49.png", - "hash": "900a70773d6b7e2bed31a5dbe6e6e0eb" - }, - { - "path": "confuse/images/5.png", - "hash": "93251d796fc5ddaac7b7f11ad606cd93" - }, - { - "path": "confuse/images/50.png", - "hash": "0495631cee1906334eae549aa6cbdbbb" - }, - { - "path": "confuse/images/51.png", - "hash": "d41fbbcd92414fda29dd135c7e52dfd5" - }, - { - "path": "confuse/images/52.png", - "hash": "b28b841b05143a99b493a80a75285fe1" - }, - { - "path": "confuse/images/53.png", - "hash": "b1581543d5840dd8e0614a38eccc6480" - }, - { - "path": "confuse/images/54.png", - "hash": "dbcba662c117d08322de64ddd4fca0de" - }, - { - "path": "confuse/images/55.png", - "hash": "14e32fd9a2f9969e1c487dd7463300fc" - }, - { - "path": "confuse/images/56.png", - "hash": "9ba295cb92d8db271293d5a3ed4efbf9" - }, - { - "path": "confuse/images/57.png", - "hash": "bc7e5cbc5bbc0d2e819e26f86a4c0d15" - }, - { - "path": "confuse/images/58.png", - "hash": "55fe9b8439cf8db774e8edf1ba925220" - }, - { - "path": "confuse/images/59.png", - "hash": "cd2cbac3e51185bd1ab89f0e0f9663d4" - }, - { - "path": "confuse/images/6.png", - "hash": "912dba6537f249ab96329551eb79590e" - }, - { - "path": "confuse/images/60.png", - "hash": "565b13924f766b6d544dad432534e7f4" - }, - { - "path": "confuse/images/61.png", - "hash": "9456d0cf43bca9715dde029eb196852b" - }, - { - "path": "confuse/images/62.png", - "hash": "2c162ab10a9d01e0e8b0019f597cbcdf" - }, - { - "path": "confuse/images/63.png", - "hash": "81940aed3fda844dabe97f05a6636311" - }, - { - "path": "confuse/images/64.png", - "hash": "dbaa72fcd6f6677c569f73449f2a8790" - }, - { - "path": "confuse/images/65.png", - "hash": "b10625ffdd4f4bab57c5ed27b0a84cc9" - }, - { - "path": "confuse/images/66.png", - "hash": "d550962452fe6c383c62b973dc00aefc" - }, - { - "path": "confuse/images/67.png", - "hash": "2187819577b8acd5c170a8137c6eb2ce" - }, - { - "path": "confuse/images/68.png", - "hash": "68b37e77e5678b1382c755e683f600f1" - }, - { - "path": "confuse/images/69.png", - "hash": "7ee64ef710190844ae138beb7080c414" - }, - { - "path": "confuse/images/7.png", - "hash": "b529943d2a97ee24dc2af526d6afbf20" - }, - { - "path": "confuse/images/70.png", - "hash": "31ac37fdcd36c2cc8b444e9245843316" - }, - { - "path": "confuse/images/71.png", - "hash": "c009b05844a6f673baebb85d4ca810df" - }, - { - "path": "confuse/images/72.png", - "hash": "82a8077f34e7052d16ba32386a018534" - }, - { - "path": "confuse/images/73.png", - "hash": "9a8a39e0fb705f9b259e8323a533ff20" - }, - { - "path": "confuse/images/74.png", - "hash": "880a60d5d3e656116b0be4a37a1e56bb" - }, - { - "path": "confuse/images/75.png", - "hash": "589ba816911705a0b7d8f1f07833cfa4" - }, - { - "path": "confuse/images/76.png", - "hash": "b9bb3ce47bb157a8b1b9383df59c0a30" - }, - { - "path": "confuse/images/77.png", - "hash": "f40cca19853e6b29d10dbf6bc410c39e" - }, - { - "path": "confuse/images/78.png", - "hash": "e110e2ce944356056714fe26894ee509" - }, - { - "path": "confuse/images/79.png", - "hash": "6365cbb7ff7106e1c6334942ebebfa6e" - }, - { - "path": "confuse/images/8.png", - "hash": "8faa3341b8a1d86f60313a11215b5ace" - }, - { - "path": "confuse/images/80.png", - "hash": "9a47bd56b13059e349f6236c6dce605a" - }, - { - "path": "confuse/images/81.png", - "hash": "fd5b11c40f60da53da999cce18572552" - }, - { - "path": "confuse/images/82.png", - "hash": "7f6a76528a8a531d8d0fb88b42b1855c" - }, - { - "path": "confuse/images/83.png", - "hash": "d0c1125dbb10d75406c1d2cc88368766" - }, - { - "path": "confuse/images/84.png", - "hash": "cefb8ed958cb38f74db21ed4b390b175" - }, - { - "path": "confuse/images/85.png", - "hash": "508467fcf63c81e8202f6c24b0007032" - }, - { - "path": "confuse/images/86.png", - "hash": "831d56520f8378c8c8a525d8bf786c99" - }, - { - "path": "confuse/images/87.png", - "hash": "807e7b96ac60ffb65b9f28643d87c7ea" - }, - { - "path": "confuse/images/88.png", - "hash": "d1f27772cc238b348e82b5126bf6cbc9" - }, - { - "path": "confuse/images/89.png", - "hash": "fca1191b7a7dbc199f7cb9541c0cffc1" - }, - { - "path": "confuse/images/9.png", - "hash": "562ed906ec350b5f948f2dc5793cdb3f" - }, - { - "path": "confuse/images/90.png", - "hash": "647b0aca88439a8bc0c4fd5f56bb08db" - }, - { - "path": "confuse/images/91.png", - "hash": "6a9f58a786851e8d227255007716c9c3" - }, - { - "path": "confuse/images/92.png", - "hash": "d5bc05be5757a38b5c8ede86b3bbecd0" - }, - { - "path": "confuse/images/93.png", - "hash": "0aec630f9affb58fc244ebf867b6756f" - }, - { - "path": "confuse/images/94.png", - "hash": "7c8afaaacd83da90ef8ba815ae9c6adb" - }, - { - "path": "confuse/images/95.png", - "hash": "98ae73a5d37372b009d70abdcd80c016" - }, - { - "path": "confuse/images/96.png", - "hash": "4197a036a87ae517034548801297b6a4" - }, - { - "path": "confuse/images/97.png", - "hash": "cdc67752ea7f8d22eccf9070068ff91e" - }, - { - "path": "confuse/images/98.png", - "hash": "55dc9c90d7b95a6f6a8f45a10c0b5900" - }, - { - "path": "confuse/images/99.png", - "hash": "8342ce8812c3104f57871d590a2ca408" - }, - { - "path": "coupon/images/0.png", - "hash": "e7faf1dcc5a4ff24536b7e41a4faf733" - }, - { - "path": "cover_face/images/0.png", - "hash": "8e26cd9059e61526a04d87918f9744a7" - }, - { - "path": "crawl/images/01.jpg", - "hash": "cce6b6c568d5fab48dcae9278c46a989" - }, - { - "path": "crawl/images/02.jpg", - "hash": "7c3ee42c3ff9426fc8f4de5ab143d85c" - }, - { - "path": "crawl/images/03.jpg", - "hash": "2e76c43a6d3fdf6f545b03e78e9f9fbd" - }, - { - "path": "crawl/images/04.jpg", - "hash": "97fa4883794bf2897ed5c3bb77469efb" - }, - { - "path": "crawl/images/05.jpg", - "hash": "e43b84a3615f376de456dd3fc44ed7b9" - }, - { - "path": "crawl/images/06.jpg", - "hash": "325794814502c47c91342a01e99ae848" - }, - { - "path": "crawl/images/07.jpg", - "hash": "c4e44e1b0da434105ac7ec3e00a719ef" - }, - { - "path": "crawl/images/08.jpg", - "hash": "854f91dd72caf3570a270de49c6c3a3f" - }, - { - "path": "crawl/images/09.jpg", - "hash": "f2426f40201f0188986fbc581be93f7f" - }, - { - "path": "crawl/images/10.jpg", - "hash": "5e2ed1f0c9b2e1f22ca2996ca0c2c583" - }, - { - "path": "crawl/images/11.jpg", - "hash": "a319d42a631243b12ea5e23e395db053" - }, - { - "path": "crawl/images/12.jpg", - "hash": "b2673e18b7fb6dbb7a8a9b548a9fac67" - }, - { - "path": "crawl/images/13.jpg", - "hash": "c641beff5799a5448c8d599fd382a712" - }, - { - "path": "crawl/images/14.jpg", - "hash": "e8987c5f87145247abf7b71f68315c35" - }, - { - "path": "crawl/images/15.jpg", - "hash": "44333dd2980c8f0634ecb4b51df68883" - }, - { - "path": "crawl/images/16.jpg", - "hash": "c05fc5e54e081909959da84a79602c14" - }, - { - "path": "crawl/images/17.jpg", - "hash": "69072cff8bbf687c5933536df8d14fa2" - }, - { - "path": "crawl/images/18.jpg", - "hash": "5e29e097d7145108d22141c980d37549" - }, - { - "path": "crawl/images/19.jpg", - "hash": "2bf84016a2fc51beb1a3b51ca566129f" - }, - { - "path": "crawl/images/20.jpg", - "hash": "dc8f3e84d315c6e8fb0e81cf01fe9858" - }, - { - "path": "crawl/images/21.jpg", - "hash": "2088ed79ddaf4ba4e90c388151001ba0" - }, - { - "path": "crawl/images/22.jpg", - "hash": "8356a010b3739a423971aaed1c04b189" - }, - { - "path": "crawl/images/23.jpg", - "hash": "c31d7dab81d42449a67f64849c9b92e3" - }, - { - "path": "crawl/images/24.jpg", - "hash": "5c6e144005eee87ef930551887be1231" - }, - { - "path": "crawl/images/25.jpg", - "hash": "d31ab3575368eee91640a61690f96455" - }, - { - "path": "crawl/images/26.jpg", - "hash": "08d586461e3fcf195d33b3dedf4c975c" - }, - { - "path": "crawl/images/27.jpg", - "hash": "231134ba99805ff5df605b152df96b50" - }, - { - "path": "crawl/images/28.jpg", - "hash": "7b224d314e8c0f24909fb81cf4dd46ad" - }, - { - "path": "crawl/images/29.jpg", - "hash": "0438049dbe406a3f226601ee43ccbbc5" - }, - { - "path": "crawl/images/30.jpg", - "hash": "c53078e5fc9c8325e77b3cc8a90742e4" - }, - { - "path": "crawl/images/31.jpg", - "hash": "1180e67b8783a97bc9836f5452d8bc97" - }, - { - "path": "crawl/images/32.jpg", - "hash": "6beb7396a405776b059f2f2570c7ab88" - }, - { - "path": "crawl/images/33.jpg", - "hash": "13a8694e3309db4974941dbbfaa9efeb" - }, - { - "path": "crawl/images/34.jpg", - "hash": "718f66b3fb852638c6e558ac6439134d" - }, - { - "path": "crawl/images/35.jpg", - "hash": "2d1fd0826efdcf432fa4d31123cc29d4" - }, - { - "path": "crawl/images/36.jpg", - "hash": "5f919e2888ae358ebb0d276764677eb9" - }, - { - "path": "crawl/images/37.jpg", - "hash": "3d05ce7d26c64d31d42a1d41b42679b6" - }, - { - "path": "crawl/images/38.jpg", - "hash": "779884b7ea0ba7ea74678dd2b72ed724" - }, - { - "path": "crawl/images/39.jpg", - "hash": "6ca6621f9d24185849e2b04a3d2e48cc" - }, - { - "path": "crawl/images/40.jpg", - "hash": "79b7ade1d3b87e5d12bee2194b575a64" - }, - { - "path": "crawl/images/41.jpg", - "hash": "370414538e997f6ca8c71ceb765a334f" - }, - { - "path": "crawl/images/42.jpg", - "hash": "f8e0e017de609c1761bb480f2c556cfa" - }, - { - "path": "crawl/images/43.jpg", - "hash": "6a0ad1624348135b563d080ab957f194" - }, - { - "path": "crawl/images/44.jpg", - "hash": "cad8a91f4ad34e97c9df229134423d7e" - }, - { - "path": "crawl/images/45.jpg", - "hash": "20a16ca7ecc0c2515c3995658619324e" - }, - { - "path": "crawl/images/46.jpg", - "hash": "9db7359991714a5be0cd8a452d9ad10e" - }, - { - "path": "crawl/images/47.jpg", - "hash": "a759b94eca07f1a544a303aef20da203" - }, - { - "path": "crawl/images/48.jpg", - "hash": "3a3191d21f27ffb9671bcedf1538abcc" - }, - { - "path": "crawl/images/49.jpg", - "hash": "fc04ef2afa46d592658172dd8dc1cc94" - }, - { - "path": "crawl/images/50.jpg", - "hash": "3bdd6b0cd1571511ab68d3a7d65503c6" - }, - { - "path": "crawl/images/51.jpg", - "hash": "73dd26dcebfd8bdd3f8fd11c1bdecb93" - }, - { - "path": "crawl/images/52.jpg", - "hash": "6fecf8ebd4aecbd7edf001a7ad5bd6a8" - }, - { - "path": "crawl/images/53.jpg", - "hash": "6c728cb71eb019ef5dcf79ce276d7304" - }, - { - "path": "crawl/images/54.jpg", - "hash": "249ab6abbadd5775b4db345d4111a483" - }, - { - "path": "crawl/images/55.jpg", - "hash": "43a8723bab213740211b1704a45b3e7a" - }, - { - "path": "crawl/images/56.jpg", - "hash": "27d00835d39b95543421a1070fff1db9" - }, - { - "path": "crawl/images/57.jpg", - "hash": "e5276244ddf08c6b1ec4cd516b72b679" - }, - { - "path": "crawl/images/58.jpg", - "hash": "8bd116c9d35fd75d2dafd93f8fc41ba7" - }, - { - "path": "crawl/images/59.jpg", - "hash": "af9dba7059394fb29d6cde220b4a81bd" - }, - { - "path": "crawl/images/60.jpg", - "hash": "dc6f1aed35469d818a5baa2376b0d079" - }, - { - "path": "crawl/images/61.jpg", - "hash": "f31def3cd5162c00d30972897298cd46" - }, - { - "path": "crawl/images/62.jpg", - "hash": "515ba871787b905c32c2b9d6bfa80e45" - }, - { - "path": "crawl/images/63.jpg", - "hash": "39e88bc661516e766e9c8f3e67a121a6" - }, - { - "path": "crawl/images/64.jpg", - "hash": "f923d5b7efc1ae8779f1255aae1e2e6d" - }, - { - "path": "crawl/images/65.jpg", - "hash": "a93c9bf77017252a84d15f8eab26d4b2" - }, - { - "path": "crawl/images/66.jpg", - "hash": "acea84f25f75d60627c0ede058eed4b8" - }, - { - "path": "crawl/images/67.jpg", - "hash": "18d416a63e4963b4363ebd9289dd15fc" - }, - { - "path": "crawl/images/68.jpg", - "hash": "cb661d9cd0df77b2a8c5535287224f7f" - }, - { - "path": "crawl/images/69.jpg", - "hash": "8137e5b1174969fd131ea04789fca972" - }, - { - "path": "crawl/images/70.jpg", - "hash": "380c0b89c5baf7dbd0ffef38446a87e8" - }, - { - "path": "crawl/images/71.jpg", - "hash": "60428aa26541efa2250d37d74a874ba6" - }, - { - "path": "crawl/images/72.jpg", - "hash": "bee413357320f096a9853804edd5aeb2" - }, - { - "path": "crawl/images/73.jpg", - "hash": "0fc974698f0be98e9c9920e521f73ce6" - }, - { - "path": "crawl/images/74.jpg", - "hash": "5185af743a9e233a7bee56aa0f7d6a1b" - }, - { - "path": "crawl/images/75.jpg", - "hash": "53ad0b0dce7ff8d90b66336108123d75" - }, - { - "path": "crawl/images/76.jpg", - "hash": "cee00e8f49851ef8a002180100aff3b7" - }, - { - "path": "crawl/images/77.jpg", - "hash": "3b1821d3e01777cda96d1a750f0a5570" - }, - { - "path": "crawl/images/78.jpg", - "hash": "be506707b4730cb4e94480231b46a617" - }, - { - "path": "crawl/images/79.jpg", - "hash": "9ae5ed97053b61541afe79b1ccb11fb5" - }, - { - "path": "crawl/images/80.jpg", - "hash": "f890db4dab16bd14f844d20c9a506245" - }, - { - "path": "crawl/images/81.jpg", - "hash": "f768dcefda04786bbc1be87f1da99d26" - }, - { - "path": "crawl/images/82.jpg", - "hash": "1060692fef8cd0865ec65b71ab4b3598" - }, - { - "path": "crawl/images/83.jpg", - "hash": "6c0e706db231044a2ee659a9003453e2" - }, - { - "path": "crawl/images/84.jpg", - "hash": "b30571c5ec880a98048004a859cf90cf" - }, - { - "path": "crawl/images/85.jpg", - "hash": "9245e2da88ebc134b7e2292068a80cfb" - }, - { - "path": "crawl/images/86.jpg", - "hash": "ca01df832eae89b1501c05373cd67b3d" - }, - { - "path": "crawl/images/87.jpg", - "hash": "40c6e2bcdb0292a52df7215844acfed0" - }, - { - "path": "crawl/images/88.jpg", - "hash": "e1ae322f432c9aa97e3735eb917558d1" - }, - { - "path": "crawl/images/89.jpg", - "hash": "5954888d330068ae2cb700b191223e93" - }, - { - "path": "crawl/images/90.jpg", - "hash": "0cdbaec24ba2753083cb57c4ea94fed6" - }, - { - "path": "crawl/images/91.jpg", - "hash": "f15ef87ab6a4e79e0b9fca132a27d060" - }, - { - "path": "crawl/images/92.jpg", - "hash": "b50d7c226a506e9e91bce322219aa131" - }, - { - "path": "decent_kiss/images/0.png", - "hash": "c7bf01f3d8177d267d9dfd0a61b67007" - }, - { - "path": "dinosaur/images/0.png", - "hash": "dc7945042837325b39b70119ae140d66" - }, - { - "path": "distracted/images/0.png", - "hash": "e43d4c7cd948c5784509e6b90f1588d2" - }, - { - "path": "distracted/images/1.png", - "hash": "795ebc988f75b5cda340dce94cb3f6d7" - }, - { - "path": "distracted/images/2.png", - "hash": "cc15e121923c705a0610099217ee3006" - }, - { - "path": "distracted/images/3.png", - "hash": "fd7036c95a7c1270bcf2d7130fdfc0d7" - }, - { - "path": "divorce/images/0.png", - "hash": "2b142fc47a2cc1cc723a4edb33f7efcf" - }, - { - "path": "dog_of_vtb/images/0.png", - "hash": "19a16294341eb540a5f48f6972937fc3" - }, - { - "path": "dont_go_near/images/0.png", - "hash": "eb240a7e56142a9e5233f675430b7481" - }, - { - "path": "dont_touch/images/0.png", - "hash": "3ff591ee749dfc208e2c5bf617c47dbe" - }, - { - "path": "dont_touch/images/mask.png", - "hash": "5b3ffca1b7a588a02d2dc4939cd6d31f" - }, - { - "path": "eat/images/0.png", - "hash": "114a3680c42d8818ff645aad63fa5af6" - }, - { - "path": "eat/images/1.png", - "hash": "1d46ae1a4d0080b62554783bfcdbb177" - }, - { - "path": "eat/images/2.png", - "hash": "3248f754830433778ae06df6ba2735d8" - }, - { - "path": "fanatic/images/0.jpg", - "hash": "65803c47845cd55e16cc3b5155d14430" - }, - { - "path": "fencing/images/0.png", - "hash": "494d6744b2fe70a2a24fa5680eab62e7" - }, - { - "path": "fencing/images/1.png", - "hash": "c2352fea73085e5e30465bdbd14e967f" - }, - { - "path": "fencing/images/10.png", - "hash": "bb11fc489bf9c9a5d6d7b6216cf2add7" - }, - { - "path": "fencing/images/11.png", - "hash": "bd2f472a815021ffe09a038256fc3ed6" - }, - { - "path": "fencing/images/12.png", - "hash": "c38fc68dbffa8f811dde76d05e158000" - }, - { - "path": "fencing/images/13.png", - "hash": "05c025367c38dcb56cbddc25dcee5c2c" - }, - { - "path": "fencing/images/14.png", - "hash": "e630633af5f3554a665c7acc700d8062" - }, - { - "path": "fencing/images/15.png", - "hash": "1a992964b9dc0730e3b8e5f6fa8e33c6" - }, - { - "path": "fencing/images/16.png", - "hash": "b2f3d5aae539fb2be6bc93d70361d93c" - }, - { - "path": "fencing/images/17.png", - "hash": "b6305e03a78495edba1787a2fe33cad0" - }, - { - "path": "fencing/images/18.png", - "hash": "0cd2f141d092fe8c2bc703b222275ac0" - }, - { - "path": "fencing/images/2.png", - "hash": "8ef9f2964d620faf379ac3f9556d1ab1" - }, - { - "path": "fencing/images/3.png", - "hash": "b0353f65f1f5c6f0dff890e314fbf866" - }, - { - "path": "fencing/images/4.png", - "hash": "f7f92325df415688edd85295e8ffbf1b" - }, - { - "path": "fencing/images/5.png", - "hash": "d13f10788d9b40353a3e0ea69fe646a5" - }, - { - "path": "fencing/images/6.png", - "hash": "99691ce248fdb3f8ec6365185c88b944" - }, - { - "path": "fencing/images/7.png", - "hash": "8eefb0b92e25340030721db422658c0c" - }, - { - "path": "fencing/images/8.png", - "hash": "8d4c631bc83659ffa3ede9dbf604f65c" - }, - { - "path": "fencing/images/9.png", - "hash": "81f17c9e3396f1d236efdb4d7a45c92f" - }, - { - "path": "fill_head/images/0.jpg", - "hash": "343d9e2f99061c99b8a2cca8a8074c93" - }, - { - "path": "find_chips/images/0.jpg", - "hash": "a8b86967b35a34129dd70a6c81a565e4" - }, - { - "path": "garbage/images/0.png", - "hash": "15a74fc27fc5ad1b2c4f3145aea81be4" - }, - { - "path": "garbage/images/1.png", - "hash": "13ed796e6e5a0f098d385ff5aa9360e2" - }, - { - "path": "garbage/images/10.png", - "hash": "018e992e8409366305d368b0b60d77e8" - }, - { - "path": "garbage/images/11.png", - "hash": "f6ae17fafdfc956645fb3f04deb5dc75" - }, - { - "path": "garbage/images/12.png", - "hash": "db2999727594e3186602b674993955b7" - }, - { - "path": "garbage/images/13.png", - "hash": "8186573633635047b38a8251494e207a" - }, - { - "path": "garbage/images/14.png", - "hash": "0374fac3fc52836b22226b33e10e4651" - }, - { - "path": "garbage/images/15.png", - "hash": "33ca5a42d75a9fc836082f31f059cb07" - }, - { - "path": "garbage/images/16.png", - "hash": "e044d9ad65657d0fadddefa91fe9d9f6" - }, - { - "path": "garbage/images/17.png", - "hash": "a4bcdd0bd939287881e3f6ab0ec5ee9e" - }, - { - "path": "garbage/images/18.png", - "hash": "41a300f7ed6ac9c5258c79ae3b655c45" - }, - { - "path": "garbage/images/19.png", - "hash": "a9adcc4884bf0c54f6acc1c268e89259" - }, - { - "path": "garbage/images/2.png", - "hash": "76adaddd8f25c4ff87af41652fae8426" - }, - { - "path": "garbage/images/20.png", - "hash": "f702cab4e4fb5a12e5c927e081357b01" - }, - { - "path": "garbage/images/21.png", - "hash": "4a8d8ff86119d8765855cf7a4d6ddfb0" - }, - { - "path": "garbage/images/22.png", - "hash": "54a5c78b51335d5cca607eb61114c684" - }, - { - "path": "garbage/images/23.png", - "hash": "712228f18c3fd891779cc53637e51ecb" - }, - { - "path": "garbage/images/24.png", - "hash": "3146fd2df0be2e38b8971c58c51b6cdd" - }, - { - "path": "garbage/images/3.png", - "hash": "9b9b4f0dfc7de061341aa423bacc91f4" - }, - { - "path": "garbage/images/4.png", - "hash": "ed4545859014cbd5f88ff3d8d464406c" - }, - { - "path": "garbage/images/5.png", - "hash": "da3d51b91a7e166c4e6b1a71396dbad3" - }, - { - "path": "garbage/images/6.png", - "hash": "f0ef28426cfd2a62633da02c3e3867c3" - }, - { - "path": "garbage/images/7.png", - "hash": "0a36874457b495812f8a708dc2af5eba" - }, - { - "path": "garbage/images/8.png", - "hash": "6f7f69ba43029a2053bd12fabdcd7a43" - }, - { - "path": "garbage/images/9.png", - "hash": "6749dad6bd2ade275a157a205ef6b860" - }, - { - "path": "genshin_start/images/0.png", - "hash": "7b5b9156e3582217ac185d1b96059c80" - }, - { - "path": "gif_subtitle/images/chanshenzi.gif", - "hash": "1d691ef44c9015b90118d462d8254bcf" - }, - { - "path": "gif_subtitle/images/maikease.gif", - "hash": "6eb2aa718212b23329a43e4bfd70998c" - }, - { - "path": "gif_subtitle/images/nihaosaoa.gif", - "hash": "97d8904891a6c890778b7ff6c467f438" - }, - { - "path": "gif_subtitle/images/qiegewala.gif", - "hash": "286153b55f83fc13f4eb6c7d48252541" - }, - { - "path": "gif_subtitle/images/shishilani.gif", - "hash": "64a1c8167bfd0cb46898bba32225a49b" - }, - { - "path": "gif_subtitle/images/shuifandui.gif", - "hash": "3125a5b21d77fbe5176068f82a82f344" - }, - { - "path": "gif_subtitle/images/wangjingze.gif", - "hash": "96bc6eefc1ec523746ba3ddccfe79833" - }, - { - "path": "gif_subtitle/images/weisuoyuwei.gif", - "hash": "c835e2828b6c050e594592c4f44923e9" - }, - { - "path": "gif_subtitle/images/wunian.gif", - "hash": "ef27895e6f030f6a308d60189aba662d" - }, - { - "path": "gif_subtitle/images/yalidaye.gif", - "hash": "ce1a77bc761384d08324bc94a495d74f" - }, - { - "path": "gif_subtitle/images/zengxiaoxian.gif", - "hash": "aa3dde683bea08ee6fe5fee1d34ae8b1" - }, - { - "path": "good_news/images/0.jpg", - "hash": "bb1631780bd36ea5e2338611d2887800" - }, - { - "path": "gun/images/0.png", - "hash": "23e223aba69b4c42cd04dcae58aec254" - }, - { - "path": "hammer/images/0.png", - "hash": "b8e94050256fc70c57f7167a8bbe3842" - }, - { - "path": "hammer/images/1.png", - "hash": "e87bdd2e1ab714965594486ec7e59273" - }, - { - "path": "hammer/images/2.png", - "hash": "3db04d878be5d2bcc6385419464f8cbe" - }, - { - "path": "hammer/images/3.png", - "hash": "5926fc010853908f2fde98149b1cde26" - }, - { - "path": "hammer/images/4.png", - "hash": "9b10b4ee1c6980260d48489d2edb4b0d" - }, - { - "path": "hammer/images/5.png", - "hash": "4f183ced8935e58b63e65330bce6479a" - }, - { - "path": "hammer/images/6.png", - "hash": "fa99a2c0fd32fc12b53c29b34ecfdc5b" - }, - { - "path": "high_EQ/images/0.jpg", - "hash": "e82b03fd3c5e4b8671c76047c9bcc1ad" - }, - { - "path": "hit_screen/images/0.png", - "hash": "1b77c941f4e0be97f9209b1697af78a3" - }, - { - "path": "hit_screen/images/1.png", - "hash": "2f72e6b3a7ef135bab0d1791740e50ad" - }, - { - "path": "hit_screen/images/10.png", - "hash": "06ee8c86ee5a4fcf1c64f05178d7a9f1" - }, - { - "path": "hit_screen/images/11.png", - "hash": "d9a620a32c4d83ef5124acc4c8f44c0c" - }, - { - "path": "hit_screen/images/12.png", - "hash": "906e33a3efcd9939c8d101d7907ee8d6" - }, - { - "path": "hit_screen/images/13.png", - "hash": "1ab5a1f4460db339b769265eb611a984" - }, - { - "path": "hit_screen/images/14.png", - "hash": "2ab2826e31abfa85e9bed6bd9a29a0fb" - }, - { - "path": "hit_screen/images/15.png", - "hash": "fcf7244d01c15e81f1a10509a57f7421" - }, - { - "path": "hit_screen/images/16.png", - "hash": "f31617015d582e6fb0dc705f3ce9dda1" - }, - { - "path": "hit_screen/images/17.png", - "hash": "595266cf81b8d831defc869588f13866" - }, - { - "path": "hit_screen/images/18.png", - "hash": "edf5600790fb42cde74fc0e08f018d0b" - }, - { - "path": "hit_screen/images/19.png", - "hash": "e69e9768da626a01dda6d5a3d86160c6" - }, - { - "path": "hit_screen/images/2.png", - "hash": "52d6b3e7409df8b840f2b1b1ec096be7" - }, - { - "path": "hit_screen/images/20.png", - "hash": "8079c0064342788af30cd274a52dfa89" - }, - { - "path": "hit_screen/images/21.png", - "hash": "e7fb41be10bef52e718aa4022995732b" - }, - { - "path": "hit_screen/images/22.png", - "hash": "61fd0c02dbc2fee0fb6e47fee48b47bc" - }, - { - "path": "hit_screen/images/23.png", - "hash": "3bcec874887b5f1b730622cb22834cc9" - }, - { - "path": "hit_screen/images/24.png", - "hash": "4660c21bb748574a9cc1d4b25536814c" - }, - { - "path": "hit_screen/images/25.png", - "hash": "f8e28991d35af936974315a1035bcccf" - }, - { - "path": "hit_screen/images/26.png", - "hash": "2561fbdf6d86e0296b2954c28015bf24" - }, - { - "path": "hit_screen/images/27.png", - "hash": "746c182316953d7ab216f0aa960224ef" - }, - { - "path": "hit_screen/images/28.png", - "hash": "0c6dce8b6f078612bfcac807bec83779" - }, - { - "path": "hit_screen/images/3.png", - "hash": "15e94688ebc0649564df9344e900e0ad" - }, - { - "path": "hit_screen/images/4.png", - "hash": "f1dbc36604462cf90604f3143938ab0b" - }, - { - "path": "hit_screen/images/5.png", - "hash": "44dd57fa5d23ff5614a6d98656b31095" - }, - { - "path": "hit_screen/images/6.png", - "hash": "8c66d2df6ce945ef239d3b18a4774b3b" - }, - { - "path": "hit_screen/images/7.png", - "hash": "6e42ce15f6a148273e926e085307a3cc" - }, - { - "path": "hit_screen/images/8.png", - "hash": "e313e4047ff2973817e1a47064a32988" - }, - { - "path": "hit_screen/images/9.png", - "hash": "a6dd680de2644d2fba6dfeeff2c90d1b" - }, - { - "path": "hold_grudge/images/0.png", - "hash": "985187c5c54b553b0af9781bfa7a5514" - }, - { - "path": "hold_tight/images/0.png", - "hash": "6c52f7de5f1a4aca8f1a0e7c5f6dd89b" - }, - { - "path": "hug_leg/images/0.png", - "hash": "bc08d4fd4fa124712006354df0eb092d" - }, - { - "path": "hug_leg/images/1.png", - "hash": "31bd381c73cccd175f1c71497a752870" - }, - { - "path": "hug_leg/images/2.png", - "hash": "49214e16f3150aea1cbc4849576516cd" - }, - { - "path": "hug_leg/images/3.png", - "hash": "83f6f33ead609c270873287ee65b89ca" - }, - { - "path": "hug_leg/images/4.png", - "hash": "74bf0373ac3b8057326722a0cf8fc51c" - }, - { - "path": "hug_leg/images/5.png", - "hash": "3d12cc8ad857617351d2961790e031af" - }, - { - "path": "hutao_bite/images/0.png", - "hash": "bbd32543d177575053100e7b23ac1b27" - }, - { - "path": "hutao_bite/images/1.png", - "hash": "9b108ddc8654bda9c3a3922308be2e07" - }, - { - "path": "imprison/images/0.jpg", - "hash": "7afdc93efbe34a2a9c7e7fc60b8b57a4" - }, - { - "path": "incivilization/images/0.png", - "hash": "352c9534c4ff182174b0b29e7ff7df42" - }, - { - "path": "interview/images/huaji.png", - "hash": "3bb5ff24a83544995edab765c837bec3" - }, - { - "path": "interview/images/microphone.png", - "hash": "34775a82e4b8b7df44d2cf37a6e16ea5" - }, - { - "path": "jiji_king/images/0.png", - "hash": "346ae46e7697540a3bec08c30ad78969" - }, - { - "path": "jiujiu/images/0.png", - "hash": "781d5ebfc9f2309c4cf60ef7b93ecfb8" - }, - { - "path": "jiujiu/images/1.png", - "hash": "c01805a80c726fbc6f9bab364b82e867" - }, - { - "path": "jiujiu/images/2.png", - "hash": "a1bdbc3c5d4830ca6baf459d686e38e3" - }, - { - "path": "jiujiu/images/3.png", - "hash": "b972b1ea12948e76735bed4528dcab46" - }, - { - "path": "jiujiu/images/4.png", - "hash": "30caae291977d2a3121c0a15a3832683" - }, - { - "path": "jiujiu/images/5.png", - "hash": "281b8b7796f579ac907c5923bf8a368b" - }, - { - "path": "jiujiu/images/6.png", - "hash": "eddf5fe3cc1e7470c17e04c8db35168f" - }, - { - "path": "jiujiu/images/7.png", - "hash": "82f7556d03c3e847ec3dd3f1d0915d9f" - }, - { - "path": "karyl_point/images/0.png", - "hash": "9ab82387b8f3cce1acdb57499c49ebe7" - }, - { - "path": "kick_ball/images/0.png", - "hash": "d2b2916d37d2cccd5c9f12ea99da87a7" - }, - { - "path": "kick_ball/images/1.png", - "hash": "509da70e46d631c3353ad525431b7674" - }, - { - "path": "kick_ball/images/10.png", - "hash": "9535ff5344dbf99f1afbf27f0282b2d1" - }, - { - "path": "kick_ball/images/11.png", - "hash": "4af18499194c6436eca8ff0a24944643" - }, - { - "path": "kick_ball/images/12.png", - "hash": "95897fc9e72b3f9ada4cf3ae673cbcdc" - }, - { - "path": "kick_ball/images/13.png", - "hash": "0dd603137fc1de3b18e4c0fd65eda6bb" - }, - { - "path": "kick_ball/images/14.png", - "hash": "fd8164a80326bdd5eee1291767b05ed3" - }, - { - "path": "kick_ball/images/2.png", - "hash": "bd6d20fd03612ba751059157b1966fab" - }, - { - "path": "kick_ball/images/3.png", - "hash": "94990605389da96c2f8168b4c2561562" - }, - { - "path": "kick_ball/images/4.png", - "hash": "6b0071cb715b8bc853ba32cde58a0e73" - }, - { - "path": "kick_ball/images/5.png", - "hash": "80e2a119658a86b1d97a26c2b41d8481" - }, - { - "path": "kick_ball/images/6.png", - "hash": "f573f27a1d7ff5117f2855d34bd225a1" - }, - { - "path": "kick_ball/images/7.png", - "hash": "76d027ec89c7de2b0abeabe84497cd00" - }, - { - "path": "kick_ball/images/8.png", - "hash": "3865dacbe636cb2c56967b1d873752c3" - }, - { - "path": "kick_ball/images/9.png", - "hash": "ca06142edeeafb64a59cd83985d4afd5" - }, - { - "path": "kirby_hammer/images/0.png", - "hash": "4b3d751215727547c9d596370c0cadc6" - }, - { - "path": "kirby_hammer/images/1.png", - "hash": "3e9b3db1325109cd857498cf764ed8b3" - }, - { - "path": "kirby_hammer/images/10.png", - "hash": "252c83ec6328ca49a46bf2cf88481123" - }, - { - "path": "kirby_hammer/images/11.png", - "hash": "410b76d943885f08adbf10f7f054e75f" - }, - { - "path": "kirby_hammer/images/12.png", - "hash": "9ae6ca270a810714a8d7c9dd4099593a" - }, - { - "path": "kirby_hammer/images/13.png", - "hash": "ec99ad3043c7fd3ff77530ee38172eaa" - }, - { - "path": "kirby_hammer/images/14.png", - "hash": "096fe608b0490ed4fcb3f35bd0f74baa" - }, - { - "path": "kirby_hammer/images/15.png", - "hash": "d117358a362f2ddff2d4c22ed88c981a" - }, - { - "path": "kirby_hammer/images/16.png", - "hash": "d80a8e7ab1c123c5ece132d9770de968" - }, - { - "path": "kirby_hammer/images/17.png", - "hash": "9e4d604e25a2da6b99d1840fe7c75602" - }, - { - "path": "kirby_hammer/images/18.png", - "hash": "067baa4f017f15f90d36d15e89f9527f" - }, - { - "path": "kirby_hammer/images/19.png", - "hash": "3907359c33ea79883f36a5aaf2cffc81" - }, - { - "path": "kirby_hammer/images/2.png", - "hash": "2b9c78da812ace9ab756b3ac31bcc2c3" - }, - { - "path": "kirby_hammer/images/20.png", - "hash": "f72fb17d8f0187ab153021b44dd214d9" - }, - { - "path": "kirby_hammer/images/21.png", - "hash": "f2c1b689c31792c862208e0027f5eb3d" - }, - { - "path": "kirby_hammer/images/22.png", - "hash": "d2a986955f38ae165ab7ed5e9eff2c22" - }, - { - "path": "kirby_hammer/images/23.png", - "hash": "9e90dba73e5a018ca0fd222a004b1f5e" - }, - { - "path": "kirby_hammer/images/24.png", - "hash": "94a54a4bb46aef8764dc90b4a914c68e" - }, - { - "path": "kirby_hammer/images/25.png", - "hash": "54bd5065691abd93f8f67e6d4d82654b" - }, - { - "path": "kirby_hammer/images/26.png", - "hash": "984150c2897e2989bd89a4739ee17628" - }, - { - "path": "kirby_hammer/images/27.png", - "hash": "acf235c91c7ae0877531dd5eb1d05e9c" - }, - { - "path": "kirby_hammer/images/28.png", - "hash": "bb8829238a3bbdc892999a9bc3cc0035" - }, - { - "path": "kirby_hammer/images/29.png", - "hash": "de595b27464eac39b387f139daf0240c" - }, - { - "path": "kirby_hammer/images/3.png", - "hash": "f2298d7403dc43180713d7d31de47455" - }, - { - "path": "kirby_hammer/images/30.png", - "hash": "ed48b5f532f17d4419d2eac91787a6e2" - }, - { - "path": "kirby_hammer/images/31.png", - "hash": "e322d5ae9489235c164239ea0c80ea68" - }, - { - "path": "kirby_hammer/images/32.png", - "hash": "cca6150a0e930ac96985d7a33daa47ac" - }, - { - "path": "kirby_hammer/images/33.png", - "hash": "efb182d89025cb064a6d5ab7682975b5" - }, - { - "path": "kirby_hammer/images/34.png", - "hash": "99ca9df71e8a370f192374a057406d37" - }, - { - "path": "kirby_hammer/images/35.png", - "hash": "fdde0008b84eabbcff46a0e59c057105" - }, - { - "path": "kirby_hammer/images/36.png", - "hash": "45b4f1f245216b8670067b9df8df1ea6" - }, - { - "path": "kirby_hammer/images/37.png", - "hash": "206a72ca3b28cc1a50d4414364190bdc" - }, - { - "path": "kirby_hammer/images/38.png", - "hash": "9c5f7a67a182d73e0bc4a3a51b676938" - }, - { - "path": "kirby_hammer/images/39.png", - "hash": "c8eedcaacd133ac50373d45b56f007a7" - }, - { - "path": "kirby_hammer/images/4.png", - "hash": "9b7ab8b7137898c3a3ef680f27c5dac4" - }, - { - "path": "kirby_hammer/images/40.png", - "hash": "080e309ebc305fcd4ee2aabfaf40e6e0" - }, - { - "path": "kirby_hammer/images/41.png", - "hash": "fc6622b31b57c66e5b008d63e6409a94" - }, - { - "path": "kirby_hammer/images/42.png", - "hash": "1d003a0c7b75832ec11849d0192cabd3" - }, - { - "path": "kirby_hammer/images/43.png", - "hash": "fc56793262bf080fe9b8cef629a3acc2" - }, - { - "path": "kirby_hammer/images/44.png", - "hash": "cd3cc7029bffd42fe7119c687be44f2e" - }, - { - "path": "kirby_hammer/images/45.png", - "hash": "96419814c91e3082d1850793b5978f3f" - }, - { - "path": "kirby_hammer/images/46.png", - "hash": "f06d71ebed8e4410fe9139de30612e3e" - }, - { - "path": "kirby_hammer/images/47.png", - "hash": "ac9b4ae0523f7cc80f6ec8545436888c" - }, - { - "path": "kirby_hammer/images/48.png", - "hash": "3592a8851467f316e4b4186a85bbce27" - }, - { - "path": "kirby_hammer/images/49.png", - "hash": "9e5bc3797377a5f4f9385e8c9d55b8d6" - }, - { - "path": "kirby_hammer/images/5.png", - "hash": "3a5ec940f94e19c03879b3b2c21d9959" - }, - { - "path": "kirby_hammer/images/50.png", - "hash": "b0d440755b85428fc2d00537ab79caec" - }, - { - "path": "kirby_hammer/images/51.png", - "hash": "65757c46c224edd93ade8aadf0bfc3c0" - }, - { - "path": "kirby_hammer/images/52.png", - "hash": "c12fe7a7d87912155c9ded3b999752fb" - }, - { - "path": "kirby_hammer/images/53.png", - "hash": "5046fbe65e726be58b1ef243b7111a7d" - }, - { - "path": "kirby_hammer/images/54.png", - "hash": "3500fda8e30e5818cf16576e11be38d8" - }, - { - "path": "kirby_hammer/images/55.png", - "hash": "dec898961403796b4dff81f2af93767f" - }, - { - "path": "kirby_hammer/images/56.png", - "hash": "da4a03072d3f3ac6b2ef6bd0c129ff4c" - }, - { - "path": "kirby_hammer/images/57.png", - "hash": "054c7b45c34819d7c6f086da4b27cf3a" - }, - { - "path": "kirby_hammer/images/58.png", - "hash": "7f2f3d88c96d8f21f47087db40a3156a" - }, - { - "path": "kirby_hammer/images/59.png", - "hash": "4db1b3f61044fc795e6e859da2030321" - }, - { - "path": "kirby_hammer/images/6.png", - "hash": "98602b15bcd486f5d334910791a11ff5" - }, - { - "path": "kirby_hammer/images/60.png", - "hash": "e3e2b230e05b168aeb0c278ce6dea4ed" - }, - { - "path": "kirby_hammer/images/61.png", - "hash": "89e1a31ef24f68d5d8d7cdf5c0e245c5" - }, - { - "path": "kirby_hammer/images/7.png", - "hash": "85f414a42d7c8a991e55ef227ce44c22" - }, - { - "path": "kirby_hammer/images/8.png", - "hash": "3e5886543cdee36c21830fb681568ac1" - }, - { - "path": "kirby_hammer/images/9.png", - "hash": "83a12e09e4c29d23c634c0f11f1823b4" - }, - { - "path": "kiss/images/0.png", - "hash": "49c396692947a52148bcef0ea47f0491" - }, - { - "path": "kiss/images/1.png", - "hash": "f3587ef479ea9243d6370f7a6b30b68b" - }, - { - "path": "kiss/images/10.png", - "hash": "d396dfc1857882f82a5294a3af1d638b" - }, - { - "path": "kiss/images/11.png", - "hash": "84c8d3845fca2efe97cb5f6beb113376" - }, - { - "path": "kiss/images/12.png", - "hash": "9d50e3777af1b60b58fe30009ce29c24" - }, - { - "path": "kiss/images/2.png", - "hash": "97fd783dbe88877952a092199671d514" - }, - { - "path": "kiss/images/3.png", - "hash": "93c7d6c3ca56be70f10eabe92a828120" - }, - { - "path": "kiss/images/4.png", - "hash": "a6079d128ba4c0fb0f332823a36b780b" - }, - { - "path": "kiss/images/5.png", - "hash": "686562b06f7834f6328a2ece1931d85d" - }, - { - "path": "kiss/images/6.png", - "hash": "5d53fa7523b11b2c61450c0b57c5826f" - }, - { - "path": "kiss/images/7.png", - "hash": "e690eac3a3ba1c32f235a64de9f10263" - }, - { - "path": "kiss/images/8.png", - "hash": "2226d16df1e6f42535bb8814919b6e7c" - }, - { - "path": "kiss/images/9.png", - "hash": "2ddacd69e518cdc3b63dc682bffe4d1e" - }, - { - "path": "klee_eat/images/0.png", - "hash": "bd284652faeb1d17a9fe9a96a7eed219" - }, - { - "path": "klee_eat/images/1.png", - "hash": "434dd145519e680ea5a7efd6c46fc181" - }, - { - "path": "klee_eat/images/10.png", - "hash": "57f83d884ef3f5da1b7036e97a77ca31" - }, - { - "path": "klee_eat/images/11.png", - "hash": "8a5807ac9c701f1fe6d8f4acac72db36" - }, - { - "path": "klee_eat/images/12.png", - "hash": "2474538aae3536aa75f00bf49eba6587" - }, - { - "path": "klee_eat/images/13.png", - "hash": "c24d9702f74c06b1e14473542ca0ecea" - }, - { - "path": "klee_eat/images/14.png", - "hash": "ce03d5f6d09e6aba982272187701756e" - }, - { - "path": "klee_eat/images/15.png", - "hash": "30f24c72d721677136805ca01cfdc50e" - }, - { - "path": "klee_eat/images/16.png", - "hash": "36f15c4c9460e7d6b2d41a03ebfa7718" - }, - { - "path": "klee_eat/images/17.png", - "hash": "70023d2f2d0a6018b839a29c70f8710f" - }, - { - "path": "klee_eat/images/18.png", - "hash": "5206043658761fa5ec7479c518a8e369" - }, - { - "path": "klee_eat/images/19.png", - "hash": "c1a2d1db2ffafc850d2d859884437dae" - }, - { - "path": "klee_eat/images/2.png", - "hash": "a187d0bfec4b78787077b8780d91e7b0" - }, - { - "path": "klee_eat/images/20.png", - "hash": "3ba814841c09721cd37e30b8ef9683a5" - }, - { - "path": "klee_eat/images/21.png", - "hash": "578e23bba8cb885c377833aa14562f9d" - }, - { - "path": "klee_eat/images/22.png", - "hash": "8495aa8a2792ac60f6359553c29c1567" - }, - { - "path": "klee_eat/images/23.png", - "hash": "1746365398e99a42860a0a8154a63541" - }, - { - "path": "klee_eat/images/24.png", - "hash": "a594a3457c8c562e5891e721a692c324" - }, - { - "path": "klee_eat/images/25.png", - "hash": "92bbc0ca794e36e10b5e1049884df9ce" - }, - { - "path": "klee_eat/images/26.png", - "hash": "85a9bc64d2a974cb718b9c08c1f84a34" - }, - { - "path": "klee_eat/images/27.png", - "hash": "bd29cf8dd5ba31d77e69904d6456d1c9" - }, - { - "path": "klee_eat/images/28.png", - "hash": "1ff5c07022df2f08355b337209d5464e" - }, - { - "path": "klee_eat/images/29.png", - "hash": "97f45cae4dd2daa2a4d3f00ca561eb58" - }, - { - "path": "klee_eat/images/3.png", - "hash": "dcc1eca20924fcd31012dc38bc2b6429" - }, - { - "path": "klee_eat/images/30.png", - "hash": "8ac8286949b0c765fb8312fee62363a6" - }, - { - "path": "klee_eat/images/4.png", - "hash": "fe507dbb5c909e28c2919d26210225a4" - }, - { - "path": "klee_eat/images/5.png", - "hash": "4b65a362e8465945c7d439c64386abc5" - }, - { - "path": "klee_eat/images/6.png", - "hash": "76244ceeded4c6ea3ffb226cf717be3f" - }, - { - "path": "klee_eat/images/7.png", - "hash": "0e7ce4c9b664d253ec57c1eb579158ef" - }, - { - "path": "klee_eat/images/8.png", - "hash": "ead69b36f949b45cc4c7da801405ae38" - }, - { - "path": "klee_eat/images/9.png", - "hash": "6bc9f15771d52cf1c1bb09e09b9b76a7" - }, - { - "path": "knock/images/0.png", - "hash": "c4e73350a09ac862d8109995436734f4" - }, - { - "path": "knock/images/1.png", - "hash": "d241d1aee02c46b4b9947eb6685822f0" - }, - { - "path": "knock/images/2.png", - "hash": "cc7023dd828227ca6af658639b10ce7e" - }, - { - "path": "knock/images/3.png", - "hash": "06b3459243c79f4c499d3c52929a4b2c" - }, - { - "path": "knock/images/4.png", - "hash": "992619f101424f96cc972b537532d7ce" - }, - { - "path": "knock/images/5.png", - "hash": "9dde5fd9fe478412f51b26344114f33d" - }, - { - "path": "knock/images/6.png", - "hash": "14823b403ee6ade595c4b9c326bf72be" - }, - { - "path": "knock/images/7.png", - "hash": "fa158f632f04f81c4eeeb4766222df07" - }, - { - "path": "learn/images/0.png", - "hash": "548f528b25cfab4e79c36f901227cd59" - }, - { - "path": "lim_x_0/images/0.png", - "hash": "c2f71b246240a101195ab7bc653fc46f" - }, - { - "path": "listen_music/images/0.png", - "hash": "63252e976b3d821f982d8886bd2900c8" - }, - { - "path": "loading/images/icon.png", - "hash": "e85c326ab5c4ca55589761be7b7e990d" - }, - { - "path": "look_this_icon/images/nmsl.png", - "hash": "4f37b38d2a14cbe368b4e427c23aa28d" - }, - { - "path": "love_you/images/0.png", - "hash": "66ddcca5601fd9224a1e0d17909ade56" - }, - { - "path": "love_you/images/1.png", - "hash": "3e44083dd543e1380bdc03931b09984d" - }, - { - "path": "luoyonghao_say/images/0.jpg", - "hash": "dce3cd1bc790a4475744b525e728bdd2" - }, - { - "path": "luxun_say/images/0.jpg", - "hash": "fdf0252e7edea0a3186b908af557d2a7" - }, - { - "path": "maimai_awaken/images/0.png", - "hash": "e624223202cfeefff8c6be39f395c9d6" - }, - { - "path": "maimai_join/images/0.png", - "hash": "0b76b5df240115d862fb08425857363b" - }, - { - "path": "make_friend/images/0.png", - "hash": "9b20187a1eb50164c5963fc13146f4ea" - }, - { - "path": "marriage/images/0.png", - "hash": "700e73f2bfc52f205caa46c81c55a1fe" - }, - { - "path": "marriage/images/1.png", - "hash": "b118fe27aec8b9b05fe73cb8c942726e" - }, - { - "path": "meteor/images/0.png", - "hash": "16a32e5a514c4355a164afb05d510fb6" - }, - { - "path": "mihoyo/images/logo.png", - "hash": "681bf981d9181df226ca42354b7b7a85" - }, - { - "path": "mourning/images/0.png", - "hash": "931a7b0cda1cc6aa9dc2fcc6853dea35" - }, - { - "path": "murmur/images/0.jpg", - "hash": "2f37f330f2f6c83ef74505a405f25b87" - }, - { - "path": "my_friend/images/corner1.png", - "hash": "53a18e9da0e4723e876976b06aebe1a2" - }, - { - "path": "my_friend/images/corner2.png", - "hash": "5789f0bfbbfc745f5d5e37b77d911940" - }, - { - "path": "my_friend/images/corner3.png", - "hash": "e6a10dded6652680d878434ca1a19830" - }, - { - "path": "my_friend/images/corner4.png", - "hash": "40a04aa8c2ffb9243119c865ece04cc4" - }, - { - "path": "my_friend/images/label.png", - "hash": "9538d1dd1e7e3befadacc26bbb511754" - }, - { - "path": "my_wife/images/0.png", - "hash": "c6fd08ac07edee816f25a4713758f428" - }, - { - "path": "my_wife/images/1.png", - "hash": "d4f0dca879deb9a02a732c921c6a8abb" - }, - { - "path": "name_generator/images/title.png", - "hash": "770526d5d986cceb04c0516ec5e31bd1" - }, - { - "path": "need/images/0.png", - "hash": "1b1b6fb05731056fc52d9afd3b4877b9" - }, - { - "path": "nekoha_holdsign/images/0.jpg", - "hash": "2f218b1028744b120d6ee6b19664194b" - }, - { - "path": "nijika_holdsign/images/0.jpg", - "hash": "267732c79de6f2b26a7e98146237d67e" - }, - { - "path": "no_response/images/0.png", - "hash": "2d83def33dfe559dcad883f39bfee4cb" - }, - { - "path": "nokia/images/0.jpg", - "hash": "b15f3d10d3b28f9988deb9940b2084cb" - }, - { - "path": "not_call_me/images/0.png", - "hash": "27500542a606e46aa4c218686fd43077" - }, - { - "path": "oshi_no_ko/images/background.png", - "hash": "758bbb5a92d74f0869e64039be575a76" - }, - { - "path": "oshi_no_ko/images/foreground.png", - "hash": "7e0c9250c5294a062ab4e948dbe6261c" - }, - { - "path": "oshi_no_ko/images/text1.png", - "hash": "3819b528aa7d71a3243d95de6152183e" - }, - { - "path": "oshi_no_ko/images/text2.png", - "hash": "f6f7d087081b960c553acd1645d3d6a3" - }, - { - "path": "osu/images/osu.png", - "hash": "b4b0bc153542220204b590cf48736bdd" - }, - { - "path": "overtime/images/0.png", - "hash": "ec2b3f45754ffef5dd334f1e2d21f652" - }, - { - "path": "paint/images/0.png", - "hash": "c819d7bdbada27cc825db68927157b98" - }, - { - "path": "painter/images/0.png", - "hash": "a9b282341ef7222e44ad66cd9a39819c" - }, - { - "path": "pass_the_buck/images/0.png", - "hash": "5f749373afdf58cde70ea2af2d30a714" - }, - { - "path": "pass_the_buck/images/1.png", - "hash": "c966daa812d79ec51ac14ea845b8b910" - }, - { - "path": "pass_the_buck/images/2.png", - "hash": "a85eeded320e6d73ca8681f1a09cb2ec" - }, - { - "path": "pass_the_buck/images/3.png", - "hash": "18e0ee5e536c311bbc89814e73c09e62" - }, - { - "path": "pass_the_buck/images/4.png", - "hash": "b9917d59c00d7c72cd15b44e6f5432cd" - }, - { - "path": "pass_the_buck/images/5.png", - "hash": "d2f837911a2a085538a2d4800dd4650e" - }, - { - "path": "pass_the_buck/images/6.png", - "hash": "b096dc7de13827c73013216d34358be7" - }, - { - "path": "pass_the_buck/images/7.png", - "hash": "30d2811477862856697b2b277390a022" - }, - { - "path": "pat/images/0.png", - "hash": "089f648471c168ed0eadcb5ad1a8a5b0" - }, - { - "path": "pat/images/1.png", - "hash": "7e2aa352d96eee79d7ead97f9f867c58" - }, - { - "path": "pat/images/2.png", - "hash": "8268e18385c30834fad22a44d26bfffd" - }, - { - "path": "pat/images/3.png", - "hash": "afbfb52f564d8e21275d5150ebd7bc19" - }, - { - "path": "pat/images/4.png", - "hash": "184b8669333285cbca11ff02bd5e7938" - }, - { - "path": "pat/images/5.png", - "hash": "f57fb66c9dc205f3a2d60039ed3e81f3" - }, - { - "path": "pat/images/6.png", - "hash": "0bca6a9528efd4c75e069aade9c5d70f" - }, - { - "path": "pat/images/7.png", - "hash": "981681b3d681ca561254e2cbb1b2908b" - }, - { - "path": "pat/images/8.png", - "hash": "92b0a66f1fa6818635772f03a6379788" - }, - { - "path": "pat/images/9.png", - "hash": "2ee0fda7d77e0b5d6c6d65e5974c70dc" - }, - { - "path": "perfect/images/0.png", - "hash": "52548c41f2774afb87bf7aad314e9938" - }, - { - "path": "petpet/images/0.png", - "hash": "aa8401e6dee45a90dd17efac4797355d" - }, - { - "path": "petpet/images/1.png", - "hash": "97cb8b8449b8000edaa5c4380594a611" - }, - { - "path": "petpet/images/2.png", - "hash": "5e2896e5971f1f18410353c63c35bfc5" - }, - { - "path": "petpet/images/3.png", - "hash": "73812f2ec03138254ffed2199d172c9b" - }, - { - "path": "petpet/images/4.png", - "hash": "4cc824d2d50fadc3e7aa83b8f8c01585" - }, - { - "path": "play/images/0.png", - "hash": "4964c0cecc7d5536ac070356531a0f2a" - }, - { - "path": "play/images/1.png", - "hash": "44242083d7d62c88ce1c4df5fa7e2c18" - }, - { - "path": "play/images/10.png", - "hash": "0622967a345a44eb787cb0729430ed1f" - }, - { - "path": "play/images/11.png", - "hash": "d07943ca2dc901e87dd1de1fb57f1522" - }, - { - "path": "play/images/12.png", - "hash": "611d761e98d873f2e0a295273901cb9d" - }, - { - "path": "play/images/13.png", - "hash": "91807f3f15dbd8385022a3967029520d" - }, - { - "path": "play/images/14.png", - "hash": "873c8b4a9d05d1f6869f80ba0efaf4fa" - }, - { - "path": "play/images/15.png", - "hash": "b553976c6c0539afeb354315428211f1" - }, - { - "path": "play/images/16.png", - "hash": "b9eef848ee25631a033023c18f5fb711" - }, - { - "path": "play/images/17.png", - "hash": "b0319ca25761c7b036e81e555d0d350d" - }, - { - "path": "play/images/18.png", - "hash": "2c2d1c73ef7586f3bbaed7083f503171" - }, - { - "path": "play/images/19.png", - "hash": "2678692ef119d151594d6e6b72a21100" - }, - { - "path": "play/images/2.png", - "hash": "70194e8b049eaf52bf64137d402af5b7" - }, - { - "path": "play/images/20.png", - "hash": "e5d12ed9217f3df2d5e8d3f50f692ade" - }, - { - "path": "play/images/21.png", - "hash": "93e8b3a0197f707a0272013c296c45ad" - }, - { - "path": "play/images/22.png", - "hash": "d1e23a1e2f3f67a68f13d514222e8288" - }, - { - "path": "play/images/23.png", - "hash": "027cfd72da7425411f4fbfb45af76e75" - }, - { - "path": "play/images/24.png", - "hash": "ca73fe22c80e4d12f07854456e67500d" - }, - { - "path": "play/images/25.png", - "hash": "79a133301b5aadd29c00ae351eb70258" - }, - { - "path": "play/images/26.png", - "hash": "be4252f16c83933f0f843dbe65c41df1" - }, - { - "path": "play/images/27.png", - "hash": "ca73fe22c80e4d12f07854456e67500d" - }, - { - "path": "play/images/28.png", - "hash": "668b9f971b27685a1fcc06bc6d27d661" - }, - { - "path": "play/images/29.png", - "hash": "027cfd72da7425411f4fbfb45af76e75" - }, - { - "path": "play/images/3.png", - "hash": "1f5064e766aa07cbd0bcc6014e04a363" - }, - { - "path": "play/images/30.png", - "hash": "79a133301b5aadd29c00ae351eb70258" - }, - { - "path": "play/images/31.png", - "hash": "be4252f16c83933f0f843dbe65c41df1" - }, - { - "path": "play/images/32.png", - "hash": "668b9f971b27685a1fcc06bc6d27d661" - }, - { - "path": "play/images/33.png", - "hash": "027cfd72da7425411f4fbfb45af76e75" - }, - { - "path": "play/images/34.png", - "hash": "79a133301b5aadd29c00ae351eb70258" - }, - { - "path": "play/images/35.png", - "hash": "be4252f16c83933f0f843dbe65c41df1" - }, - { - "path": "play/images/36.png", - "hash": "f15c1afc1766b284662e2972caff927e" - }, - { - "path": "play/images/37.png", - "hash": "ca73fe22c80e4d12f07854456e67500d" - }, - { - "path": "play/images/4.png", - "hash": "931b04efcc1786137c24e532f42ed847" - }, - { - "path": "play/images/5.png", - "hash": "e1e185b4450a41b2f0b3a20e7822a87f" - }, - { - "path": "play/images/6.png", - "hash": "53c0d86f536a10a6ad551845e9cb477a" - }, - { - "path": "play/images/7.png", - "hash": "84855b20768e4a8baf8a904898759fa8" - }, - { - "path": "play/images/8.png", - "hash": "12febab0de29bfc49af8f11941eef7a3" - }, - { - "path": "play/images/9.png", - "hash": "8aaa0621bce8a04b4932d997c47bae03" - }, - { - "path": "play_game/images/0.png", - "hash": "aa9ba6ed9b53feb9b655a2db774fa0cf" - }, - { - "path": "police/images/0.png", - "hash": "31a60a25b44407b6a01a07b3cdd3c2de" - }, - { - "path": "police/images/1.png", - "hash": "57959e7d0b0ee6a36f7d6eb39fd37714" - }, - { - "path": "potato/images/0.png", - "hash": "46cc49cf59d8c234489c4493d4d2c6f2" - }, - { - "path": "pound/images/0.png", - "hash": "bc329e320843da1652fa8cbaebc547f6" - }, - { - "path": "pound/images/1.png", - "hash": "1287970496b73b9b8cc581efca214167" - }, - { - "path": "pound/images/2.png", - "hash": "5196cd4b0b7add30d6ee445ef3302bdc" - }, - { - "path": "pound/images/3.png", - "hash": "6de53f69220f12bd575962f98cfcbf89" - }, - { - "path": "pound/images/4.png", - "hash": "363bc7090b8a57a5eca03ce0903cd5be" - }, - { - "path": "pound/images/5.png", - "hash": "e82712a091010daf9805def5a3a87790" - }, - { - "path": "pound/images/6.png", - "hash": "2f577a122a2b94f6a9b13a2746203906" - }, - { - "path": "pound/images/7.png", - "hash": "bbb206934bdec99cc500ccc2cd2d801d" - }, - { - "path": "printing/images/0.png", - "hash": "ac3cff745bbaf446918b84aee688a750" - }, - { - "path": "printing/images/1.png", - "hash": "72da190ca388c9ae96eb884830b4481f" - }, - { - "path": "printing/images/10.png", - "hash": "129583017b8b02ace1340066433cf986" - }, - { - "path": "printing/images/100.png", - "hash": "b6e14377c005356ef57a2e4b07cf7292" - }, - { - "path": "printing/images/101.png", - "hash": "6b1cd000248a907c1291acb96361441e" - }, - { - "path": "printing/images/102.png", - "hash": "8ec22ccdbd0c9dbc858da3dfda4967ff" - }, - { - "path": "printing/images/103.png", - "hash": "b65ecfdbdae3bbc81148bf1228180c2f" - }, - { - "path": "printing/images/104.png", - "hash": "d1fa8d37a18f9f581e9f6b14622ca1a6" - }, - { - "path": "printing/images/105.png", - "hash": "941d0130b5581674813e8404f9509eff" - }, - { - "path": "printing/images/106.png", - "hash": "63adb8500c990b71f3cb77b50375e52f" - }, - { - "path": "printing/images/107.png", - "hash": "c1fe55f6eea0e8c4971f5038318fcdc1" - }, - { - "path": "printing/images/108.png", - "hash": "3620c7b0de8754f8de8708ceedba6b23" - }, - { - "path": "printing/images/109.png", - "hash": "65e3ab016ec0924e1a2739ecbf7d35d1" - }, - { - "path": "printing/images/11.png", - "hash": "2ca1c8654ca6de78f3c4bdcd7d663234" - }, - { - "path": "printing/images/110.png", - "hash": "7f0840cfc51722d11b1843144227efdf" - }, - { - "path": "printing/images/111.png", - "hash": "77031111c9e53996042ef6e908443c15" - }, - { - "path": "printing/images/112.png", - "hash": "1264df4ba6d1325af96ba15477533af7" - }, - { - "path": "printing/images/113.png", - "hash": "8af7d6b59d30692d4e260140603abd93" - }, - { - "path": "printing/images/114.png", - "hash": "2f27ca03f5bf1f601036e5b4de8d9950" - }, - { - "path": "printing/images/12.png", - "hash": "b3c65ab3c51c559928198e17df9badc8" - }, - { - "path": "printing/images/13.png", - "hash": "740fdc5053855d7f1278cba3593ea729" - }, - { - "path": "printing/images/14.png", - "hash": "f6adfc704b7839c3e391396995073af5" - }, - { - "path": "printing/images/15.png", - "hash": "40829d369a13a6b1bfaa38406e492cbe" - }, - { - "path": "printing/images/16.png", - "hash": "6a3c780a61dbfa06f737c597e2abcaf7" - }, - { - "path": "printing/images/17.png", - "hash": "7876c0a5e91d5fecadc61ef526fdab86" - }, - { - "path": "printing/images/18.png", - "hash": "b10a8f8602cf048399db9020bfdd1e75" - }, - { - "path": "printing/images/19.png", - "hash": "ffc2ae5e811fded5c8aefe2d60635ba8" - }, - { - "path": "printing/images/2.png", - "hash": "65c5675d45f77b42afd06f5d28cecdc5" - }, - { - "path": "printing/images/20.png", - "hash": "b5609cde715a76f2857a2f810db1a8df" - }, - { - "path": "printing/images/21.png", - "hash": "7f9e9f595867665d6e793dae66957b37" - }, - { - "path": "printing/images/22.png", - "hash": "94d1cfd2cc404470f4216b3b9d5c09c9" - }, - { - "path": "printing/images/23.png", - "hash": "555fbe5b32b8fabb4dec5b67de806416" - }, - { - "path": "printing/images/24.png", - "hash": "815f6cfa6c8b8bd67e22d25f592f9efb" - }, - { - "path": "printing/images/25.png", - "hash": "fbdb72c2c34bda528c658a64ea87929b" - }, - { - "path": "printing/images/26.png", - "hash": "2711343b873784e8339b1bdfc4fcfb17" - }, - { - "path": "printing/images/27.png", - "hash": "a0e1b20a162997030cca39394f753d83" - }, - { - "path": "printing/images/28.png", - "hash": "33bfd6b64103e85f8f7593df3083d3c6" - }, - { - "path": "printing/images/29.png", - "hash": "822ddd7bb4f08a790cc2dd12def9fd57" - }, - { - "path": "printing/images/3.png", - "hash": "dd7c0fd91b364ec6ab67424f9b290252" - }, - { - "path": "printing/images/30.png", - "hash": "26135ed3ba6a1ea2689d5d456bae8091" - }, - { - "path": "printing/images/31.png", - "hash": "a4618e6f0ba690e19f8eb46fa40c24d8" - }, - { - "path": "printing/images/32.png", - "hash": "0c6b1311b2b87ec4217965aaf0142a67" - }, - { - "path": "printing/images/33.png", - "hash": "9a5328b1a5a9a1661a6d4383485f38a0" - }, - { - "path": "printing/images/34.png", - "hash": "863b57994604481030eeb9fa07917025" - }, - { - "path": "printing/images/35.png", - "hash": "b89e61f0d769c422927e2870ee2a52f7" - }, - { - "path": "printing/images/36.png", - "hash": "b2a12f4258eb4263725b3e9626c1ce0f" - }, - { - "path": "printing/images/37.png", - "hash": "fe7e7592705cfb38f3554af6ce40e676" - }, - { - "path": "printing/images/38.png", - "hash": "b8e553c9741860aa57bb88f7555bf027" - }, - { - "path": "printing/images/39.png", - "hash": "bf27d396f0e0d04a4c93370089a42e27" - }, - { - "path": "printing/images/4.png", - "hash": "91731f63760d20e0f051d57976897bf7" - }, - { - "path": "printing/images/40.png", - "hash": "5eb837747fa0858effde2e64651a14c9" - }, - { - "path": "printing/images/41.png", - "hash": "605b3313f6d3e38949db0e45e5b1a985" - }, - { - "path": "printing/images/42.png", - "hash": "36807f6d13f4c28d35c22eb8f835e4c8" - }, - { - "path": "printing/images/43.png", - "hash": "687f41f2072c26536b70bf35cbc5009b" - }, - { - "path": "printing/images/44.png", - "hash": "2d64170cbc237d3334766ffcbd1e2c54" - }, - { - "path": "printing/images/45.png", - "hash": "d5234d8605636ee02a77780372c7987f" - }, - { - "path": "printing/images/46.png", - "hash": "53d08603e7fa7e02a3741b4635ec7cd3" - }, - { - "path": "printing/images/47.png", - "hash": "bc71ddd856dfd8b24208ab35b7eedc0c" - }, - { - "path": "printing/images/48.png", - "hash": "44ce15c87fea669d5cc48f41429abf12" - }, - { - "path": "printing/images/49.png", - "hash": "ed2ba817c893cd33f465bf7d2e60ecb2" - }, - { - "path": "printing/images/5.png", - "hash": "8a7f6f66b93e58e9feb6e2207bc7e97f" - }, - { - "path": "printing/images/50.png", - "hash": "a0aab0eb666a90665c9cad5951950143" - }, - { - "path": "printing/images/51.png", - "hash": "8ac53fb8acad20be4ac2a89f7fac5f5a" - }, - { - "path": "printing/images/52.png", - "hash": "4eb11b4cc5bed7f74144884253df1fd2" - }, - { - "path": "printing/images/53.png", - "hash": "c7eaa6de72c86e828dd2f128264e6687" - }, - { - "path": "printing/images/54.png", - "hash": "f7131c14f1a5cee663b8980a21a5bffe" - }, - { - "path": "printing/images/55.png", - "hash": "5d8559a47e8580724039777930942e6d" - }, - { - "path": "printing/images/56.png", - "hash": "be35cd4ddd47f5601ce37afbf14a84de" - }, - { - "path": "printing/images/57.png", - "hash": "c8d986b658968045fea08d94c52b15c4" - }, - { - "path": "printing/images/58.png", - "hash": "2c988b171455d149b0ee55bb37c10c80" - }, - { - "path": "printing/images/59.png", - "hash": "f9a40a01d0dc22f6afed309a42357d56" - }, - { - "path": "printing/images/6.png", - "hash": "a0a79ec55b3c75901bd92d6532fe077d" - }, - { - "path": "printing/images/60.png", - "hash": "61a95457564ceb9c76acd4a778ab6cb0" - }, - { - "path": "printing/images/61.png", - "hash": "6bf483eb9155431f7b8a0592818375c2" - }, - { - "path": "printing/images/62.png", - "hash": "2a7c1edb268391bdf1b3a1ec064103e1" - }, - { - "path": "printing/images/63.png", - "hash": "725821184a8defc249382043632f4848" - }, - { - "path": "printing/images/64.png", - "hash": "4f8839993c49489c7eccd0e7b93c3f50" - }, - { - "path": "printing/images/65.png", - "hash": "7de3f303bd6415f46fd9ca4c99c1c2c6" - }, - { - "path": "printing/images/66.png", - "hash": "be3d33ec8caa9ebe286e52480bab794c" - }, - { - "path": "printing/images/67.png", - "hash": "75e5257d44f16697a230dc959554f6c9" - }, - { - "path": "printing/images/68.png", - "hash": "e52e73c209f028c8b9bdd3baf7d025bf" - }, - { - "path": "printing/images/69.png", - "hash": "fa9f2b49b619559effea9e40f5d7ecd4" - }, - { - "path": "printing/images/7.png", - "hash": "001b10e11da922e3ae037074454be1d0" - }, - { - "path": "printing/images/70.png", - "hash": "a753a853c71e1c2f9d872556a14fabff" - }, - { - "path": "printing/images/71.png", - "hash": "8adf4cf372980a71cebd5a195f955e30" - }, - { - "path": "printing/images/72.png", - "hash": "5c45b2906aaee6a42e01fd1ba6799c32" - }, - { - "path": "printing/images/73.png", - "hash": "674d3c828ea55aef6f5403c5962bde88" - }, - { - "path": "printing/images/74.png", - "hash": "8697148fdb62eaf4fcb3ba5d6d6b0d45" - }, - { - "path": "printing/images/75.png", - "hash": "1f574ff3f9fa2fcaaed49348eceff336" - }, - { - "path": "printing/images/76.png", - "hash": "048b2aae09f83ad559ee9c4f733327b5" - }, - { - "path": "printing/images/77.png", - "hash": "adf05d6f80151eef426075490d542689" - }, - { - "path": "printing/images/78.png", - "hash": "b76784a51340993c26222076ae1c7e19" - }, - { - "path": "printing/images/79.png", - "hash": "a896795729718db13a6dddb410c9ce27" - }, - { - "path": "printing/images/8.png", - "hash": "ab3e1334d642043899b90a78c4fd61f9" - }, - { - "path": "printing/images/80.png", - "hash": "a7dc03466b6bd804c503610906c6f853" - }, - { - "path": "printing/images/81.png", - "hash": "bfbc2cc1c6dd88e45c3842fbd1b90873" - }, - { - "path": "printing/images/82.png", - "hash": "5ca48057a33ee011ce9da553da7f926f" - }, - { - "path": "printing/images/83.png", - "hash": "1c658cc34d088660d29ec36df3c39f0d" - }, - { - "path": "printing/images/84.png", - "hash": "ec9221b4772f36dec3f3511fef90bb89" - }, - { - "path": "printing/images/85.png", - "hash": "5717a74c5271a239b39b525d1f7c6601" - }, - { - "path": "printing/images/86.png", - "hash": "ae6aadc1a4ee31717601b6ae9a33b755" - }, - { - "path": "printing/images/87.png", - "hash": "588ab7fd8d58c05a7874b68f67af4363" - }, - { - "path": "printing/images/88.png", - "hash": "3ffc2d672a8e8feb3db6b184c6b8588e" - }, - { - "path": "printing/images/89.png", - "hash": "c8f92188f211f3d13b760ea63bd26f22" - }, - { - "path": "printing/images/9.png", - "hash": "f99c09832d7c0381625174e9a7e0d392" - }, - { - "path": "printing/images/90.png", - "hash": "6690eec00bce15cda128cf846ea212f0" - }, - { - "path": "printing/images/91.png", - "hash": "070ee6cd8529b919b716f07074e0d167" - }, - { - "path": "printing/images/92.png", - "hash": "14bd48c391ae0baad5d3ef3d242f2fb9" - }, - { - "path": "printing/images/93.png", - "hash": "2ea865e0b43b0eba043b6b1b72f6f5c5" - }, - { - "path": "printing/images/94.png", - "hash": "3475397d42b855ebf9fb6500d194761e" - }, - { - "path": "printing/images/95.png", - "hash": "7fa50ae1f73e19ffa7ab5acb84cf9947" - }, - { - "path": "printing/images/96.png", - "hash": "9111106b9cb4a836b81f250446b3142b" - }, - { - "path": "printing/images/97.png", - "hash": "76ba9e5d54ecdb4bb7913563d9d6b7aa" - }, - { - "path": "printing/images/98.png", - "hash": "61aff8c626615c3fcae399c4e9874030" - }, - { - "path": "printing/images/99.png", - "hash": "0cf63257d2a31dc023d15e718e433300" - }, - { - "path": "prpr/images/0.png", - "hash": "0375726f9e7c54b6993129b790e7adcc" - }, - { - "path": "psyduck/images/0.jpg", - "hash": "6202ec5410070dc4c555da8f96bed178" - }, - { - "path": "psyduck/images/1.jpg", - "hash": "4bbd69e7d760ceb020ea183703ee3c4f" - }, - { - "path": "psyduck/images/10.jpg", - "hash": "2b88c97afddc019a361948db1d294c09" - }, - { - "path": "psyduck/images/11.jpg", - "hash": "443509125b7c6bf2f8d7bd2de1850e8f" - }, - { - "path": "psyduck/images/12.jpg", - "hash": "450c7e24cd5782923d5fc43ed6059274" - }, - { - "path": "psyduck/images/13.jpg", - "hash": "4d3c4db8e6d5603a670c1fda698d2a65" - }, - { - "path": "psyduck/images/14.jpg", - "hash": "fb05987bc8e71c10ea14945f5773998f" - }, - { - "path": "psyduck/images/15.jpg", - "hash": "d41d59768debb11cce3b8ddd459d9f73" - }, - { - "path": "psyduck/images/16.jpg", - "hash": "cb748afc1be5c6a24631e834e65dc788" - }, - { - "path": "psyduck/images/17.jpg", - "hash": "c907167d37716a05f9b98f67c738b5f9" - }, - { - "path": "psyduck/images/2.jpg", - "hash": "bcdada499bee10b55bcf89f3c4203c41" - }, - { - "path": "psyduck/images/3.jpg", - "hash": "2c56d83e9c28ecff169f2bc2934b7e51" - }, - { - "path": "psyduck/images/4.jpg", - "hash": "7d2d686127e5ecbdca634859f044b245" - }, - { - "path": "psyduck/images/5.jpg", - "hash": "44ef8e53403baed0104ec7be98a255f1" - }, - { - "path": "psyduck/images/6.jpg", - "hash": "1e5a3c85df09b32b7ba5e8b3e62aaa67" - }, - { - "path": "psyduck/images/7.jpg", - "hash": "4447c7004f6a34fe1dfa973899b74593" - }, - { - "path": "psyduck/images/8.jpg", - "hash": "567f517d1674346c98bd223b11549c93" - }, - { - "path": "psyduck/images/9.jpg", - "hash": "5d9e85e3e70a8f2488070a19b703452d" - }, - { - "path": "punch/images/0.png", - "hash": "5c50071615149514b42f692aea9d9290" - }, - { - "path": "punch/images/1.png", - "hash": "84e6a624d4546bfcc85c5544ee252c2b" - }, - { - "path": "punch/images/10.png", - "hash": "8c6f3c2838078b5c7241fdd5316f4363" - }, - { - "path": "punch/images/11.png", - "hash": "f25db4a8ee3a9ab72d57f434aa0ca865" - }, - { - "path": "punch/images/12.png", - "hash": "85aee422feae35c368fed239a2b1b0e0" - }, - { - "path": "punch/images/2.png", - "hash": "4c8c9b99f640c78cc634ae4c34191070" - }, - { - "path": "punch/images/3.png", - "hash": "412ac6464392446a77af45c6980e5228" - }, - { - "path": "punch/images/4.png", - "hash": "58c5395c3275558187d0c07c8e59b8b1" - }, - { - "path": "punch/images/5.png", - "hash": "f6a16aaf1d0c0f7239fb12d8f10400a7" - }, - { - "path": "punch/images/6.png", - "hash": "e827982690eaa7703178649a9f7d035b" - }, - { - "path": "punch/images/7.png", - "hash": "0086c46b42a8910c475615ce6c5a98a1" - }, - { - "path": "punch/images/8.png", - "hash": "ee9f371aff7718d1ed2dce523d2f89a0" - }, - { - "path": "punch/images/9.png", - "hash": "f17f4a89f7fed4ff5360b7a566303cd1" - }, - { - "path": "raise_image/images/raise_image.png", - "hash": "53034eae1c09898b82c778c1ea420139" - }, - { - "path": "raise_sign/images/0.jpg", - "hash": "e8151cf81d9c6944e38de9652f5ac409" - }, - { - "path": "read_book/images/0.png", - "hash": "c0bfd676ec62f8ef1a2e2c98244681ba" - }, - { - "path": "repeat/images/0.jpg", - "hash": "b3dabf0c895201454e66011eb88459ff" - }, - { - "path": "rip/images/0.png", - "hash": "ce5cab4dddc51f7c1627e5d135dc6336" - }, - { - "path": "rip/images/1.png", - "hash": "91cfac98b3e2857988c727c03ce76418" - }, - { - "path": "rip_angrily/images/0.png", - "hash": "0c58878dfbe96bdc8a4f8cb3a5d9ae79" - }, - { - "path": "rise_dead/images/0.png", - "hash": "bb4da42954caf82707ae808e07101365" - }, - { - "path": "rise_dead/images/1.png", - "hash": "b10c173d27820716bfa62c906d2fdfe0" - }, - { - "path": "rise_dead/images/10.png", - "hash": "ebc7017ada9ba2d340988a41def17a31" - }, - { - "path": "rise_dead/images/11.png", - "hash": "064625a135258a8525e23cdc44040157" - }, - { - "path": "rise_dead/images/12.png", - "hash": "78c77f0495aa78756ed7e1909009b2f6" - }, - { - "path": "rise_dead/images/13.png", - "hash": "86b71d80dea3789312eba925ea7e3b56" - }, - { - "path": "rise_dead/images/14.png", - "hash": "05993f523cdcceb0ec8bc9e6656c1f49" - }, - { - "path": "rise_dead/images/15.png", - "hash": "ac00807a618031c7f76928526503451f" - }, - { - "path": "rise_dead/images/16.png", - "hash": "8983a7c0ffd8b6ebd12fc2339c2edfeb" - }, - { - "path": "rise_dead/images/17.png", - "hash": "f3f90643dacf3f515bb6524fc87c7535" - }, - { - "path": "rise_dead/images/18.png", - "hash": "5f0b03fe62967453b1b9020ac056440d" - }, - { - "path": "rise_dead/images/19.png", - "hash": "347769d325378397d07e3532969eb868" - }, - { - "path": "rise_dead/images/2.png", - "hash": "0bc0586166d67e6a316228514d4fcb7d" - }, - { - "path": "rise_dead/images/20.png", - "hash": "0b7b35f43230dd8978969173b394d5ee" - }, - { - "path": "rise_dead/images/21.png", - "hash": "0f2e2388b681dbbd1d31fda06684e0b5" - }, - { - "path": "rise_dead/images/22.png", - "hash": "db7f48285b432b21535e8c96cb9d184c" - }, - { - "path": "rise_dead/images/23.png", - "hash": "f5d5737d78644c9f67029da754ca0ebf" - }, - { - "path": "rise_dead/images/24.png", - "hash": "6145e4ab2f5b0f92586b68b7f85ddc5e" - }, - { - "path": "rise_dead/images/25.png", - "hash": "5585c88626e8412b78bf4c51d045c2c1" - }, - { - "path": "rise_dead/images/26.png", - "hash": "be925adadeb85d0a3dce380f522440ef" - }, - { - "path": "rise_dead/images/27.png", - "hash": "339666a1146653e04cb89991310afc60" - }, - { - "path": "rise_dead/images/28.png", - "hash": "b3136958aa2f24b4c74b21a0e79bcd64" - }, - { - "path": "rise_dead/images/29.png", - "hash": "89c73842fa2b0390acbcac79014b849b" - }, - { - "path": "rise_dead/images/3.png", - "hash": "425bb05e042774c00b77a697733f9902" - }, - { - "path": "rise_dead/images/30.png", - "hash": "b36b2c85161ac3d73ece81485a725b25" - }, - { - "path": "rise_dead/images/31.png", - "hash": "dd172233ca3a26d5729ca48f8e212362" - }, - { - "path": "rise_dead/images/32.png", - "hash": "b4a080295ec55dc4e790d7f2eeaa5c88" - }, - { - "path": "rise_dead/images/33.png", - "hash": "b65493e53df17f3a9637b3e73996c111" - }, - { - "path": "rise_dead/images/4.png", - "hash": "8496a9a5c3d2a82ddaabdb477096d213" - }, - { - "path": "rise_dead/images/5.png", - "hash": "325cc724fe6e4a38dc89c08bb95aee06" - }, - { - "path": "rise_dead/images/6.png", - "hash": "23490018d2317c7feae489de998ac222" - }, - { - "path": "rise_dead/images/7.png", - "hash": "08994770e161777e630fd5436eb1e418" - }, - { - "path": "rise_dead/images/8.png", - "hash": "03c5ca3f5c0a26ea9e7c95892ff4c391" - }, - { - "path": "rise_dead/images/9.png", - "hash": "401693c6a4e254609bd2bff9864ea0ce" - }, - { - "path": "roll/images/0.png", - "hash": "4b7bd23b3f9d4c2ab7d36885a6edf21a" - }, - { - "path": "roll/images/1.png", - "hash": "19aa54e138172a2ddf7f031da195ebf1" - }, - { - "path": "roll/images/2.png", - "hash": "fa009d3c3dc2645600b3b8ba2200c240" - }, - { - "path": "roll/images/3.png", - "hash": "72ddb67a4589290b6cc7c2591c163401" - }, - { - "path": "roll/images/4.png", - "hash": "3d0292a3e7bfc90e32aa320f85d906e0" - }, - { - "path": "roll/images/5.png", - "hash": "5767ba5025f85dc60b65c1e448f4c243" - }, - { - "path": "roll/images/6.png", - "hash": "b1babecdb8a977ba477c033b9d929b73" - }, - { - "path": "roll/images/7.png", - "hash": "c0475533dc1e6282dfa50e7ee5f6d150" - }, - { - "path": "rub/images/0.png", - "hash": "a9b12cb6b809ae7bce00f90776a0366b" - }, - { - "path": "rub/images/1.png", - "hash": "dcaa808bd4d89084ab341ee5589dab75" - }, - { - "path": "rub/images/2.png", - "hash": "8e8eb0d22991b02c96b4098210a861ee" - }, - { - "path": "rub/images/3.png", - "hash": "4039152492625de12a188e0d80a2fc9c" - }, - { - "path": "rub/images/4.png", - "hash": "b80153e63c7918ae5b59aa2287803a94" - }, - { - "path": "rub/images/5.png", - "hash": "910edf679e3b3bf292a7f3a86fe878c0" - }, - { - "path": "run/images/0.png", - "hash": "8504969b4b3d302c15e37ab7033591a7" - }, - { - "path": "safe_sense/images/0.png", - "hash": "83653a8efa58498ae0ff8ea806e523ad" - }, - { - "path": "scratch_head/images/0.png", - "hash": "a72596f3beff01eaa56d20458175cf7b" - }, - { - "path": "scratch_head/images/1.png", - "hash": "7e2ffe8187564dd18cdbd7826c4cc264" - }, - { - "path": "scratch_head/images/2.png", - "hash": "53293a097661db4412b2cd4fd4d50b49" - }, - { - "path": "scratch_head/images/3.png", - "hash": "473644e2d0a98e9e4c6149485c7f57c1" - }, - { - "path": "scratch_head/images/4.png", - "hash": "4dc269cf571fe1ed75082ccb90acb5d5" - }, - { - "path": "scratch_head/images/5.png", - "hash": "477528b65f0672b6c98a285455c727c3" - }, - { - "path": "scratchcard/images/0.png", - "hash": "0a9f099c2ff528543c6c8a7cfb2566aa" - }, - { - "path": "scratchcard/images/1.png", - "hash": "8b4dd8c62fe06b2accb2ca8d79102e3a" - }, - { - "path": "scroll/images/corner1.png", - "hash": "53a18e9da0e4723e876976b06aebe1a2" - }, - { - "path": "scroll/images/corner2.png", - "hash": "5789f0bfbbfc745f5d5e37b77d911940" - }, - { - "path": "scroll/images/corner3.png", - "hash": "e6a10dded6652680d878434ca1a19830" - }, - { - "path": "scroll/images/corner4.png", - "hash": "40a04aa8c2ffb9243119c865ece04cc4" - }, - { - "path": "shutup/images/0.jpg", - "hash": "79462d2472da56f64f056b7c16b43b04" - }, - { - "path": "sit_still/images/0.png", - "hash": "7c80de7e9f83c87b8f099fda676cafde" - }, - { - "path": "slap/images/0.jpg", - "hash": "bca036d3b7a5de25c57e92525891c3e7" - }, - { - "path": "slogan/images/0.jpg", - "hash": "93e06a80b22c3b796f3bb90c590f8cd6" - }, - { - "path": "smash/images/0.png", - "hash": "f14a1ff64015a1cd5cf752e80e5cf367" - }, - { - "path": "step_on/images/0.png", - "hash": "560c088afdbeff7f0321455b0640b938" - }, - { - "path": "step_on/images/1.png", - "hash": "9ce4e4cee75d6d30385d7bd1b50b3882" - }, - { - "path": "step_on/images/2.png", - "hash": "2c3531495de3bfb2c0a631db0e2a6bf1" - }, - { - "path": "step_on/images/3.png", - "hash": "a6a77178a80d9cffdb4292901dc6cb14" - }, - { - "path": "step_on/images/4.png", - "hash": "f052852fa07b20fa4d9d48a7d8249d87" - }, - { - "path": "suck/images/0.png", - "hash": "848d6fe194940dc2fef9db9a354fb126" - }, - { - "path": "suck/images/1.png", - "hash": "74739c77b17df646533133ab49174379" - }, - { - "path": "suck/images/10.png", - "hash": "76688f982ae2e1c7e878ba185fcddd7d" - }, - { - "path": "suck/images/11.png", - "hash": "d1723c022b984588853956ad454c0eba" - }, - { - "path": "suck/images/2.png", - "hash": "a13a413108cc0e319449d549df0533f2" - }, - { - "path": "suck/images/3.png", - "hash": "5663af4b29aed543cbab978154d46a6c" - }, - { - "path": "suck/images/4.png", - "hash": "e51457c880f8bac176d7adcce7c2374f" - }, - { - "path": "suck/images/5.png", - "hash": "1d7a90731644d866ca75975da0b9b074" - }, - { - "path": "suck/images/6.png", - "hash": "95f8124f3135e813c1273b6261a49855" - }, - { - "path": "suck/images/7.png", - "hash": "138eb577148a6e2ffa7e9b21de644395" - }, - { - "path": "suck/images/8.png", - "hash": "e58d096d494249b94565a122b6bfc1e6" - }, - { - "path": "suck/images/9.png", - "hash": "35d5c2a770ca62666d054f7de229c01b" - }, - { - "path": "support/images/0.png", - "hash": "f82b0d023e4aab41df6159db726f4ae3" - }, - { - "path": "tankuku_raisesign/images/0.png", - "hash": "e4eac3dbf019343f3dd02597e982707d" - }, - { - "path": "tankuku_raisesign/images/1.png", - "hash": "896acaf1cc2cab04833244b89cb8dca7" - }, - { - "path": "tankuku_raisesign/images/10.png", - "hash": "e775c695c9875a67106d5f7f421def85" - }, - { - "path": "tankuku_raisesign/images/11.png", - "hash": "067068e71e648e0e79ef280e1bc49fc2" - }, - { - "path": "tankuku_raisesign/images/12.png", - "hash": "0dcb44d94c9422d1c2f5b37b7d0409c7" - }, - { - "path": "tankuku_raisesign/images/13.png", - "hash": "41fd25672049e69721d9f626247d4ac8" - }, - { - "path": "tankuku_raisesign/images/14.png", - "hash": "f798a270ffe2a4992e8ac23c4e749dc4" - }, - { - "path": "tankuku_raisesign/images/2.png", - "hash": "d60603b9dce7924f237c7610c636b6d0" - }, - { - "path": "tankuku_raisesign/images/3.png", - "hash": "c9eaf5c44495cd5b2e3a53e92dca9037" - }, - { - "path": "tankuku_raisesign/images/4.png", - "hash": "eadb1e2419fe3b138b83ac72d26c175f" - }, - { - "path": "tankuku_raisesign/images/5.png", - "hash": "31511f3f3bd656f0481cc43579806f69" - }, - { - "path": "tankuku_raisesign/images/6.png", - "hash": "140f1de7f05e51ca0024b7147978e5a6" - }, - { - "path": "tankuku_raisesign/images/7.png", - "hash": "7c595f3e0855121586e0e1d132a570f6" - }, - { - "path": "tankuku_raisesign/images/8.png", - "hash": "cbfc69c8c36e6b40b1f6d2b5de48cdd7" - }, - { - "path": "tankuku_raisesign/images/9.png", - "hash": "7b43a1b2f5c738b821224919141318dc" - }, - { - "path": "taunt/images/0.png", - "hash": "5c7c1026ecca7ec754ecdf622bdbcec9" - }, - { - "path": "teach/images/0.png", - "hash": "d035c0cb0ffcc2487cc563d9222fe37e" - }, - { - "path": "tease/images/0.png", - "hash": "8251e76997777ce41acf17ff15af23fd" - }, - { - "path": "tease/images/1.png", - "hash": "9d647800cdeedc8f3c5b1b776a7cccb0" - }, - { - "path": "tease/images/10.png", - "hash": "057cfbfad82bb0b0908007ebfed287a5" - }, - { - "path": "tease/images/11.png", - "hash": "da37ae44aed77e31d728b67661617ad5" - }, - { - "path": "tease/images/12.png", - "hash": "7b5aed610a21aa724d51b42b72a65c38" - }, - { - "path": "tease/images/13.png", - "hash": "78cb78fd9a69b688f32035c04b823799" - }, - { - "path": "tease/images/14.png", - "hash": "f35d24e56efebef538d35710f00e6705" - }, - { - "path": "tease/images/15.png", - "hash": "208655c7486c4a84e431001034d34f36" - }, - { - "path": "tease/images/16.png", - "hash": "2885f985790cb8faa62245a6eae275d5" - }, - { - "path": "tease/images/17.png", - "hash": "0ea6cec2b18fdf9c1114e478327735ce" - }, - { - "path": "tease/images/18.png", - "hash": "8d5d40c3632d608229f4654598504c2c" - }, - { - "path": "tease/images/19.png", - "hash": "2af25b9cd739f125ed554da6d42a57e4" - }, - { - "path": "tease/images/2.png", - "hash": "7082394ff52b33cda2cb8331d13abdb0" - }, - { - "path": "tease/images/20.png", - "hash": "73555cf10c26253029e27d6357ff7a68" - }, - { - "path": "tease/images/21.png", - "hash": "1ed333486a248a18a84348c7f5629639" - }, - { - "path": "tease/images/22.png", - "hash": "180f319575c668818299fbb7354665e6" - }, - { - "path": "tease/images/23.png", - "hash": "41a81c881a2a9b2232f36d7fe7f640c3" - }, - { - "path": "tease/images/3.png", - "hash": "9df8b76fba5c7efad4d2d41182ed23ec" - }, - { - "path": "tease/images/4.png", - "hash": "ecca01e1ea93aacf2b993eeac4c8a9a3" - }, - { - "path": "tease/images/5.png", - "hash": "f8b89e4d9227c84aab6327595e262341" - }, - { - "path": "tease/images/6.png", - "hash": "3581909eee488e81c478575b83366856" - }, - { - "path": "tease/images/7.png", - "hash": "efade3fa3148c398d3f7dbf7cb0b7ce2" - }, - { - "path": "tease/images/8.png", - "hash": "b731fabc810ff894d8204bb3d5070068" - }, - { - "path": "tease/images/9.png", - "hash": "841db44a3ea19ca016ba21a0f4d71564" - }, - { - "path": "think_what/images/0.png", - "hash": "550c3e7829033511873a12d0a8e25447" - }, - { - "path": "throw/images/0.png", - "hash": "b3e1c12b34acc44e1dd63ce05330025e" - }, - { - "path": "throw_gif/images/0.png", - "hash": "1f0eab0cb4b06609712c14e788209b58" - }, - { - "path": "throw_gif/images/1.png", - "hash": "8d7168433eaa08d827d4165a1f47f76a" - }, - { - "path": "throw_gif/images/2.png", - "hash": "aae0c868f80bdeb5a3345326757c129f" - }, - { - "path": "throw_gif/images/3.png", - "hash": "770abef39d642b721896fc92237beb7a" - }, - { - "path": "throw_gif/images/4.png", - "hash": "29ed013453ef3495b16f231a3c423dd4" - }, - { - "path": "throw_gif/images/5.png", - "hash": "144ba24b867fb739dd2c497e325fb508" - }, - { - "path": "throw_gif/images/6.png", - "hash": "ce41dd6517baf2a389093a2b9a9d1b4b" - }, - { - "path": "throw_gif/images/7.png", - "hash": "08d7b581c394979ab9d63e004b23d67a" - }, - { - "path": "thump/images/0.png", - "hash": "a3db460ecbc8ed4d14bb900d535bf6a5" - }, - { - "path": "thump/images/1.png", - "hash": "4fb3e391510555e146d506705ea0f242" - }, - { - "path": "thump/images/2.png", - "hash": "f004a475c1cd77b1c3852b3df5027f0f" - }, - { - "path": "thump/images/3.png", - "hash": "4e9ef84cdbd3833171f74727ae007aa3" - }, - { - "path": "thump_wildly/images/0.png", - "hash": "1f6e57bccf7f58f6b140abeb1c3b941c" - }, - { - "path": "thump_wildly/images/1.png", - "hash": "22aec171174bb5957d74390e87b6ef83" - }, - { - "path": "thump_wildly/images/10.png", - "hash": "6fcc6eb6320db0a166bee663d999eae5" - }, - { - "path": "thump_wildly/images/11.png", - "hash": "4c3db37b7014adaff0c836f39d4c964f" - }, - { - "path": "thump_wildly/images/12.png", - "hash": "827281875b7952487f338771a4209983" - }, - { - "path": "thump_wildly/images/13.png", - "hash": "a325da842b19d4fe31ab95e0656315f8" - }, - { - "path": "thump_wildly/images/14.png", - "hash": "4d6016470d4d7e461529663cec234cf0" - }, - { - "path": "thump_wildly/images/15.png", - "hash": "4b39fd5edfa9d053c00d2990cd20ff41" - }, - { - "path": "thump_wildly/images/16.png", - "hash": "c48b6254004e13e205a06b70f5ea300d" - }, - { - "path": "thump_wildly/images/17.png", - "hash": "920f35e60237244358c8f9a47d04b7c6" - }, - { - "path": "thump_wildly/images/18.png", - "hash": "09677cbd43ec5d7dc791855ba0e2842e" - }, - { - "path": "thump_wildly/images/19.png", - "hash": "66f6a4dc418a6955ba7b9a5df64dd2d1" - }, - { - "path": "thump_wildly/images/2.png", - "hash": "7efa3aea81c37808f950335be0922424" - }, - { - "path": "thump_wildly/images/20.png", - "hash": "2c2b482fb1154a3cf885ba38223aa2da" - }, - { - "path": "thump_wildly/images/21.png", - "hash": "673ec97403e5d92fc44788942b152642" - }, - { - "path": "thump_wildly/images/22.png", - "hash": "641d5f6862d18b43c2c8c4670f40eb74" - }, - { - "path": "thump_wildly/images/23.png", - "hash": "6af4359dea571c1f14f9f7fba43838d1" - }, - { - "path": "thump_wildly/images/24.png", - "hash": "c055a22db19722fb2f4ea5c4026d8fdd" - }, - { - "path": "thump_wildly/images/25.png", - "hash": "5ef2c5f1a390eb74147291d51ecbc5af" - }, - { - "path": "thump_wildly/images/26.png", - "hash": "b7005e93b8971a5d0e410b3a2fad6722" - }, - { - "path": "thump_wildly/images/27.png", - "hash": "c3a792b3c53f0c20e5d7e11b20ed4545" - }, - { - "path": "thump_wildly/images/28.png", - "hash": "a53192f9a057b5fac112a722a6df83b6" - }, - { - "path": "thump_wildly/images/29.png", - "hash": "12b2d0924e1d697f43a95024e2c5cc47" - }, - { - "path": "thump_wildly/images/3.png", - "hash": "eccebf3e49a818599407970f1835f951" - }, - { - "path": "thump_wildly/images/30.png", - "hash": "f2df7fed5364434fc87f2c200ee8230d" - }, - { - "path": "thump_wildly/images/4.png", - "hash": "0831aee0b3a2def7bef42ac7eae538f4" - }, - { - "path": "thump_wildly/images/5.png", - "hash": "af37e14eba37d272867bc16a650d6cc7" - }, - { - "path": "thump_wildly/images/6.png", - "hash": "af0eebbf35bdf5a9b0726c86322af301" - }, - { - "path": "thump_wildly/images/7.png", - "hash": "cf85f256a80234fbc2cb8dd5fb10a536" - }, - { - "path": "thump_wildly/images/8.png", - "hash": "01a470586d3ca7b4f5ce1701e4a2ea31" - }, - { - "path": "thump_wildly/images/9.png", - "hash": "d191535c58006ac23687e7910d84970e" - }, - { - "path": "tightly/images/0.png", - "hash": "a75986b79eb610e85c68d27a68e121ce" - }, - { - "path": "tightly/images/1.png", - "hash": "ffc5cd12eff13d205b5873810939d071" - }, - { - "path": "tightly/images/10.png", - "hash": "c3be7c205aca24c400e83a98a007a4b1" - }, - { - "path": "tightly/images/11.png", - "hash": "cd36590de435081542abc4f8b5e03ed7" - }, - { - "path": "tightly/images/12.png", - "hash": "dd3dc95f856c43fa3dcad347d7942506" - }, - { - "path": "tightly/images/13.png", - "hash": "5a57c97e80873ac64a2db11e71d0331c" - }, - { - "path": "tightly/images/14.png", - "hash": "d5f7e6eafabe6c1a17b1f985b154ff08" - }, - { - "path": "tightly/images/15.png", - "hash": "85075732dbd183a02b93b7b4eb8c2592" - }, - { - "path": "tightly/images/16.png", - "hash": "8ad15d7c72142b9b3f81146ced8196c8" - }, - { - "path": "tightly/images/17.png", - "hash": "43ec85f7f7fc18485acdb329a7b9c173" - }, - { - "path": "tightly/images/18.png", - "hash": "ba7ac479234cfada00bebe34d96ae8b4" - }, - { - "path": "tightly/images/19.png", - "hash": "7e562d467024416aea69a05e3214cc0e" - }, - { - "path": "tightly/images/2.png", - "hash": "91ab512732c81e4f1ee8a1ed85834523" - }, - { - "path": "tightly/images/3.png", - "hash": "991e06589dd243c45560f4259627c673" - }, - { - "path": "tightly/images/4.png", - "hash": "170d0a57327cb7dc19a44d6dd801a292" - }, - { - "path": "tightly/images/5.png", - "hash": "021d95cebbf539d14d258253d10e9370" - }, - { - "path": "tightly/images/6.png", - "hash": "7f7cb2d5f554dbc3df70128e53653c1f" - }, - { - "path": "tightly/images/7.png", - "hash": "68683eaeb8e1a2d4aa81f6b627738d09" - }, - { - "path": "tightly/images/8.png", - "hash": "dc63be99d968fe0007527d8fc4dcfcf1" - }, - { - "path": "tightly/images/9.png", - "hash": "23e00f03f6a6a883f2550b91646e9fd7" - }, - { - "path": "together/images/0.png", - "hash": "ed562d9d1bf0d345ce83b1b7a83524ac" - }, - { - "path": "twist/images/0.png", - "hash": "f0b59e60d234e2b145e453f1f3ccac5b" - }, - { - "path": "twist/images/1.png", - "hash": "380855eda516a3be0401a5dee662378e" - }, - { - "path": "twist/images/2.png", - "hash": "07b9cf8a73ed851f4965522143c74a8b" - }, - { - "path": "twist/images/3.png", - "hash": "f15b4a115675e62d213d25f6bc7237e8" - }, - { - "path": "twist/images/4.png", - "hash": "946914bdada2b87e06172331e288db83" - }, - { - "path": "wakeup/images/0.jpg", - "hash": "2737c1fd3d312729ee917f5bee3f9016" - }, - { - "path": "wallpaper/images/0.png", - "hash": "5d91e3669643cd2d45fe64c6c9501696" - }, - { - "path": "wallpaper/images/1.png", - "hash": "12eab235d0dc3272884509f6e1ca2bf2" - }, - { - "path": "wallpaper/images/10.png", - "hash": "bd5589b1c64998359a7e1d7bae363aba" - }, - { - "path": "wallpaper/images/11.png", - "hash": "474c2eb9906581e94ce89fcc1636d961" - }, - { - "path": "wallpaper/images/12.png", - "hash": "eb823e78e4088b6abc8273f4466f31c4" - }, - { - "path": "wallpaper/images/13.png", - "hash": "fc6c90ca74d9a8de92bcda226749809b" - }, - { - "path": "wallpaper/images/14.png", - "hash": "22e92ab92d43a4b83d572e2f3d58d6be" - }, - { - "path": "wallpaper/images/15.png", - "hash": "d1a5f088684f0b400a792efbb34c00cb" - }, - { - "path": "wallpaper/images/16.png", - "hash": "7db94297b51c8766705325cc7aa51a09" - }, - { - "path": "wallpaper/images/17.png", - "hash": "edabb58ee911b3d7970afab119ec0b38" - }, - { - "path": "wallpaper/images/18.png", - "hash": "3d8ffcd34928a1bbd75134f1ccee7f04" - }, - { - "path": "wallpaper/images/19.png", - "hash": "41879caa381e4c7107c6f1810a2c308a" - }, - { - "path": "wallpaper/images/2.png", - "hash": "c13be05187841b4b03263e545fe24b76" - }, - { - "path": "wallpaper/images/3.png", - "hash": "7b711459f62b49211078c1473f938062" - }, - { - "path": "wallpaper/images/4.png", - "hash": "d16b19293ef50f06c5ccd192697eec71" - }, - { - "path": "wallpaper/images/5.png", - "hash": "18eb7e80f997eadb512c2151162788dc" - }, - { - "path": "wallpaper/images/6.png", - "hash": "4a3a35a985229434c62e82278a788630" - }, - { - "path": "wallpaper/images/7.png", - "hash": "94dc43c774b32afaa43b42e2fac96ad4" - }, - { - "path": "wallpaper/images/8.png", - "hash": "f123ff9994c6b73a00503a0f71bb61c4" - }, - { - "path": "wallpaper/images/9.png", - "hash": "c622e4dcaca983ed072022692373abc8" - }, - { - "path": "walnut_pad/images/0.png", - "hash": "1868d25967cc950d811b0218d313b42e" - }, - { - "path": "walnut_zoom/images/0.png", - "hash": "54f145f1d66d15726196e6ae690158dc" - }, - { - "path": "walnut_zoom/images/1.png", - "hash": "f61d350a4d95a56083924cd88dbbcd14" - }, - { - "path": "walnut_zoom/images/10.png", - "hash": "0114a2c7010d751674794e9d61febcb5" - }, - { - "path": "walnut_zoom/images/11.png", - "hash": "7ece5bcc469a441e7d3b3f5166ab450f" - }, - { - "path": "walnut_zoom/images/12.png", - "hash": "3ce53d39a6fdb411f88cfbc71a02d553" - }, - { - "path": "walnut_zoom/images/13.png", - "hash": "80f449d1aa5b37f19be05952e9ea4690" - }, - { - "path": "walnut_zoom/images/14.png", - "hash": "3484665c49f4f8e4843be3e016703c01" - }, - { - "path": "walnut_zoom/images/15.png", - "hash": "52017060b380dd4dcab6c330defea997" - }, - { - "path": "walnut_zoom/images/16.png", - "hash": "bd0575ed22a9c9e84da546e15f3eaa36" - }, - { - "path": "walnut_zoom/images/17.png", - "hash": "3354b0a41977265d7768344ed4a01798" - }, - { - "path": "walnut_zoom/images/18.png", - "hash": "097143f19e124348e8823ab11feb2356" - }, - { - "path": "walnut_zoom/images/19.png", - "hash": "98b50bc4b8b8de10fb552821faff3947" - }, - { - "path": "walnut_zoom/images/2.png", - "hash": "90849c6c92dd907cebd0caab396aa36d" - }, - { - "path": "walnut_zoom/images/20.png", - "hash": "4c2d68c5b9299513c8da7a99b320042a" - }, - { - "path": "walnut_zoom/images/21.png", - "hash": "02758244cb76dbbdb087931c0b3aaae2" - }, - { - "path": "walnut_zoom/images/22.png", - "hash": "b8681ce06bda9297986edfa87ba8b9e5" - }, - { - "path": "walnut_zoom/images/23.png", - "hash": "cadf3d90bfc3d9c9989013223604cbb5" - }, - { - "path": "walnut_zoom/images/3.png", - "hash": "7075b474c816617ee6ae77e7a31ded3a" - }, - { - "path": "walnut_zoom/images/4.png", - "hash": "f9c430517346247063fcf9a751c9b497" - }, - { - "path": "walnut_zoom/images/5.png", - "hash": "b41589e48ffe5d2f7ebccb0ccbeb15ae" - }, - { - "path": "walnut_zoom/images/6.png", - "hash": "c247af529838e071ee28bbf89c6884f0" - }, - { - "path": "walnut_zoom/images/7.png", - "hash": "304e586f1c14a677283bcba85d2846ef" - }, - { - "path": "walnut_zoom/images/8.png", - "hash": "d61f4ba636a50858c013b3d271805867" - }, - { - "path": "walnut_zoom/images/9.png", - "hash": "2b3a75dc7874fc47612a0ebe82ead577" - }, - { - "path": "what_I_want_to_do/images/0.png", - "hash": "6f6f0b5452555aa8c162745db59587f0" - }, - { - "path": "what_he_wants/images/0.png", - "hash": "3e9ca1ac6dacf6cb3dceb30c4d2ca74d" - }, - { - "path": "why_at_me/images/0.png", - "hash": "46a89eb5567c049e12722511653722f7" - }, - { - "path": "why_have_hands/images/0.png", - "hash": "96487155465f64e3b79ef5c7d2a1b882" - }, - { - "path": "wish_fail/images/0.png", - "hash": "ecf3e01a1091ef0d035dd2114e7c9a29" - }, - { - "path": "wooden_fish/images/0.png", - "hash": "6d9a3a2283fa7804c7d0053d7dfd2564" - }, - { - "path": "wooden_fish/images/1.png", - "hash": "e0209aed76388832884846769156dceb" - }, - { - "path": "wooden_fish/images/10.png", - "hash": "cec873d2011eb7939946b7b4b3bff9a3" - }, - { - "path": "wooden_fish/images/11.png", - "hash": "712b2bfd606eb5efbddf673862436008" - }, - { - "path": "wooden_fish/images/12.png", - "hash": "5839329d4d13278ec1dad21e601bf006" - }, - { - "path": "wooden_fish/images/13.png", - "hash": "7aace48b94ec939fccbe0123482193c7" - }, - { - "path": "wooden_fish/images/14.png", - "hash": "ecfca6644fbc21c8a0d1b65ddf10c5f7" - }, - { - "path": "wooden_fish/images/15.png", - "hash": "28ac570cd87020781c754eae7062c91e" - }, - { - "path": "wooden_fish/images/16.png", - "hash": "2361ffd34ff8bfcc4a70da139c92af4d" - }, - { - "path": "wooden_fish/images/17.png", - "hash": "884dee4b95f5e58348f0dbeb38e6120a" - }, - { - "path": "wooden_fish/images/18.png", - "hash": "c5fc69e1b72e4576fae6928b09d77942" - }, - { - "path": "wooden_fish/images/19.png", - "hash": "01bf0df0405a5f3bec8a88f1955c487f" - }, - { - "path": "wooden_fish/images/2.png", - "hash": "2d3f89df34bbbf50314030e19582ac82" - }, - { - "path": "wooden_fish/images/20.png", - "hash": "28c1e84abd5af68d67933cba7cb39293" - }, - { - "path": "wooden_fish/images/21.png", - "hash": "7433c06114ff44dcfdfa586d05b9e12a" - }, - { - "path": "wooden_fish/images/22.png", - "hash": "401386db0da8d0f451f037a83055fb97" - }, - { - "path": "wooden_fish/images/23.png", - "hash": "d88ca4f0cbe0baba69cc5124a26ac271" - }, - { - "path": "wooden_fish/images/24.png", - "hash": "6a0b876ccd4fc868da1b1482130724b2" - }, - { - "path": "wooden_fish/images/25.png", - "hash": "facabd578b33beecebaaad619a931cfc" - }, - { - "path": "wooden_fish/images/26.png", - "hash": "c9b3fbd6530cec0851ab8ad4f4f3e2dd" - }, - { - "path": "wooden_fish/images/27.png", - "hash": "e8e7f3d0cd8fcbc949162cfb513db643" - }, - { - "path": "wooden_fish/images/28.png", - "hash": "28345563148569bfc1c87bdaf15512cd" - }, - { - "path": "wooden_fish/images/29.png", - "hash": "6e509f0cf10d8d0eed6694ad4d67d417" - }, - { - "path": "wooden_fish/images/3.png", - "hash": "408ee9928d337a3e1093b360ce1f9c42" - }, - { - "path": "wooden_fish/images/30.png", - "hash": "e17e47ec541b137347ee5092f50b7af4" - }, - { - "path": "wooden_fish/images/31.png", - "hash": "c46afd5cfe31fbb0dff54a21b5275652" - }, - { - "path": "wooden_fish/images/32.png", - "hash": "c733975ec503cbab59083075fdac7df1" - }, - { - "path": "wooden_fish/images/33.png", - "hash": "6fd18280a7b3daeba31211ec357432ce" - }, - { - "path": "wooden_fish/images/34.png", - "hash": "3469e52d0176a91ab0bde381ac609b3e" - }, - { - "path": "wooden_fish/images/35.png", - "hash": "55a55c562ec107000c6a37cd0b6dc93a" - }, - { - "path": "wooden_fish/images/36.png", - "hash": "cfbd99fac76a8f4730aa2abd0d1f9fc7" - }, - { - "path": "wooden_fish/images/37.png", - "hash": "e0c36d441526f5f0ae1d4f7ebf33f783" - }, - { - "path": "wooden_fish/images/38.png", - "hash": "9b344ef9f6f5d0cef32f7fae1aeb867d" - }, - { - "path": "wooden_fish/images/39.png", - "hash": "0eaf38b4b65ba9d8acb18ddedb482c26" - }, - { - "path": "wooden_fish/images/4.png", - "hash": "7a2c835125447d2c2c91022e9da5bba0" - }, - { - "path": "wooden_fish/images/40.png", - "hash": "605ffccc8dd614b3776bcb1b68f8392d" - }, - { - "path": "wooden_fish/images/41.png", - "hash": "6c3942c1f933048da5842556d45b41fd" - }, - { - "path": "wooden_fish/images/42.png", - "hash": "de6cdb5e5dc569b93bd110e328ccee48" - }, - { - "path": "wooden_fish/images/43.png", - "hash": "a2590f5e678b4b49951d457bff4d7416" - }, - { - "path": "wooden_fish/images/44.png", - "hash": "e25bbc2b3d6b004107a78a07472a26bc" - }, - { - "path": "wooden_fish/images/45.png", - "hash": "f0b6b348a1e95793535a963cdec0c526" - }, - { - "path": "wooden_fish/images/46.png", - "hash": "feaf6200470ca2670250a5ecf1d82638" - }, - { - "path": "wooden_fish/images/47.png", - "hash": "f20eea970a4f715bed311fd3292b6ffe" - }, - { - "path": "wooden_fish/images/48.png", - "hash": "c131eac6cb07efb11fc0db34344375cd" - }, - { - "path": "wooden_fish/images/49.png", - "hash": "4d02f896bd3add73f0607efbd399405a" - }, - { - "path": "wooden_fish/images/5.png", - "hash": "9808b4dfc0739cc92801c07218c437a1" - }, - { - "path": "wooden_fish/images/50.png", - "hash": "79390633b41372c3697d0f5cb875c920" - }, - { - "path": "wooden_fish/images/51.png", - "hash": "094b6e5646bfe1ba46a5a37075316aa4" - }, - { - "path": "wooden_fish/images/52.png", - "hash": "110f85d76529735911de6f2aed883c8d" - }, - { - "path": "wooden_fish/images/53.png", - "hash": "a06dd450c09157782cb1dca8cad9ea88" - }, - { - "path": "wooden_fish/images/54.png", - "hash": "f8417b9eeb8dff82385cd20a5acdb5be" - }, - { - "path": "wooden_fish/images/55.png", - "hash": "db3b4b5518a00cc83db2d6cb1190b4b3" - }, - { - "path": "wooden_fish/images/56.png", - "hash": "0d3848e808467b632a273a51e4b94b94" - }, - { - "path": "wooden_fish/images/57.png", - "hash": "67c3ec213de1f043b3123262c2dcba24" - }, - { - "path": "wooden_fish/images/58.png", - "hash": "9c58d568c71c2724985853f7843ae11a" - }, - { - "path": "wooden_fish/images/59.png", - "hash": "d6e191f08943eeda4afd3d038447810a" - }, - { - "path": "wooden_fish/images/6.png", - "hash": "25d5ae7ef4a3cd3f4443f632fdd968e7" - }, - { - "path": "wooden_fish/images/60.png", - "hash": "e834e553cc5f24fbbe99c8dbd92d440e" - }, - { - "path": "wooden_fish/images/61.png", - "hash": "45491e4be378af118a0d55628837ae64" - }, - { - "path": "wooden_fish/images/62.png", - "hash": "d71f36fca51f8713105c1d2a855b89bb" - }, - { - "path": "wooden_fish/images/63.png", - "hash": "aeef95bbadaa5fb5f0e5845a96d82dbf" - }, - { - "path": "wooden_fish/images/64.png", - "hash": "8c2465ab4495a49e3be4fdc8a0e1c773" - }, - { - "path": "wooden_fish/images/65.png", - "hash": "c09e998c676b8d1982a1db064823bf6e" - }, - { - "path": "wooden_fish/images/7.png", - "hash": "01a98a53bda386901f09ed2e146c0c3c" - }, - { - "path": "wooden_fish/images/8.png", - "hash": "e16848c937770c31d310aa71661558aa" - }, - { - "path": "wooden_fish/images/9.png", - "hash": "64d52829d84b8f4a1aa98c0248be1380" - }, - { - "path": "worship/images/0.png", - "hash": "bd2f7121444b63365141cb292da532d5" - }, - { - "path": "worship/images/1.png", - "hash": "6145ed9f4c81b253d53fdedab1a63886" - }, - { - "path": "worship/images/2.png", - "hash": "c5e679727b7a5d5ca5a5f32bfba08f87" - }, - { - "path": "worship/images/3.png", - "hash": "56174982455efd6b7e7d41711cb72d0c" - }, - { - "path": "worship/images/4.png", - "hash": "661d4a2397fdf2f07d9ef4a48c825ed1" - }, - { - "path": "worship/images/5.png", - "hash": "6eeff86edfbe977e92ee1027ec68b011" - }, - { - "path": "worship/images/6.png", - "hash": "91ccfb9ae60b673e765a5e616c032a77" - }, - { - "path": "worship/images/7.png", - "hash": "e298d69f5c3eade7b741d6ec260f7a15" - }, - { - "path": "worship/images/8.png", - "hash": "9053063bc46e88f0a33c642037dafc39" - }, - { - "path": "worship/images/9.png", - "hash": "3861aae5494bd34ce6937d6224c48915" - }, - { - "path": "wujing/images/0.jpg", - "hash": "c187cfc302ce2c8583e7d18bfdde245a" - }, - { - "path": "youtube/images/corner.png", - "hash": "2f6f9a380e8c3045022d28fed799ff1c" - } -] \ No newline at end of file + { + "path": "acg_entrance/images/0.png", + "hash": "50d92b64bfdd6b7aa3872ba24bface4f" + }, + { + "path": "add_chaos/images/0.png", + "hash": "c9265d1d01b8d0746a544640f924e2c2" + }, + { + "path": "addiction/images/0.png", + "hash": "dc201145111b74eca4d09429afe0dfb9" + }, + { + "path": "always_like/images/0.png", + "hash": "7e4b3845cf80fa46942269d58bd64e9d" + }, + { + "path": "anti_kidnap/images/0.png", + "hash": "57991b7103cecbe1c13dc03cf4b7ed38" + }, + { + "path": "anya_suki/images/0.png", + "hash": "9a46dd33cc7a511a8368e768c6d4abb0" + }, + { + "path": "applaud/images/0.png", + "hash": "0e5f561f3abc093f8089ed5e3b4d4e51" + }, + { + "path": "applaud/images/1.png", + "hash": "948ee568b13be8427c0dd8d6de5740c3" + }, + { + "path": "applaud/images/2.png", + "hash": "ab191735e9c523517deca3e4c444bd81" + }, + { + "path": "applaud/images/3.png", + "hash": "46579d1329fa40685a264720bdb97593" + }, + { + "path": "applaud/images/4.png", + "hash": "26b72b155b645d5e8ed4f96948c48ba7" + }, + { + "path": "ascension/images/0.png", + "hash": "e09e50c266c1e8babfe2c73612ac4200" + }, + { + "path": "back_to_work/images/0.png", + "hash": "d85cf009fac3ce49ed90883e0c61e737" + }, + { + "path": "bad_news/images/0.png", + "hash": "960baf23d9d516c5ea6d13f48b67f070" + }, + { + "path": "beat_head/images/0.png", + "hash": "eacd07809b6ead153d7edd6630c18b57" + }, + { + "path": "beat_head/images/1.png", + "hash": "9c9c2eeee4dd11ce6af0e5ac9810ff9b" + }, + { + "path": "beat_head/images/2.png", + "hash": "94e491fbd91d9a8714ad87bd6dd2259f" + }, + { + "path": "bite/images/0.png", + "hash": "1bf01e9d335cea07f0fa41ac9b7cf1c4" + }, + { + "path": "bite/images/1.png", + "hash": "f39275eb62478b134d334cd12816ea8b" + }, + { + "path": "bite/images/10.png", + "hash": "3803c4e601226c29d9d5649fe4a14035" + }, + { + "path": "bite/images/11.png", + "hash": "0ecbeccbb0b56aba5141482308749688" + }, + { + "path": "bite/images/12.png", + "hash": "33294ff41e6106e9f058cb4c12774ecf" + }, + { + "path": "bite/images/13.png", + "hash": "0c146c08708ff40246876f6aab9ea7e5" + }, + { + "path": "bite/images/14.png", + "hash": "3803c4e601226c29d9d5649fe4a14035" + }, + { + "path": "bite/images/15.png", + "hash": "0ecbeccbb0b56aba5141482308749688" + }, + { + "path": "bite/images/2.png", + "hash": "ed49249ac247d237310faffb7d11c11e" + }, + { + "path": "bite/images/3.png", + "hash": "95d8fe8bfe6a6bafc0a02b7be64e7ea5" + }, + { + "path": "bite/images/4.png", + "hash": "a95502dae9f2a18b8be3dd2c68af10aa" + }, + { + "path": "bite/images/5.png", + "hash": "04449c3729ff7422bbd2f811e7ec9d89" + }, + { + "path": "bite/images/6.png", + "hash": "1924b0e63242af4a0280a5458e9cafda" + }, + { + "path": "bite/images/7.png", + "hash": "90bc4c8ad295a7a63123ebf98a39fe0f" + }, + { + "path": "bite/images/8.png", + "hash": "33294ff41e6106e9f058cb4c12774ecf" + }, + { + "path": "bite/images/9.png", + "hash": "0c146c08708ff40246876f6aab9ea7e5" + }, + { + "path": "blood_pressure/images/0.png", + "hash": "d5dd1ea44908952885ff14a283f99695" + }, + { + "path": "bluearchive/images/cross.png", + "hash": "bc36cde34cb165515ed4a80858861ab1" + }, + { + "path": "bluearchive/images/halo.png", + "hash": "5783e8f50adfae75ec19b8742893325d" + }, + { + "path": "bocchi_draft/images/0.png", + "hash": "680aea676a5f3d510ddee5c30201e59e" + }, + { + "path": "bocchi_draft/images/1.png", + "hash": "680aea676a5f3d510ddee5c30201e59e" + }, + { + "path": "bocchi_draft/images/10.png", + "hash": "7223660dff08058ebfd18abe91e3b4c1" + }, + { + "path": "bocchi_draft/images/11.png", + "hash": "5be40608585af14e81d1290a822bb765" + }, + { + "path": "bocchi_draft/images/12.png", + "hash": "10fe7523c888e2f9d58f63b529138c67" + }, + { + "path": "bocchi_draft/images/13.png", + "hash": "f04a0254f4cf76de4dcb15e006ce5251" + }, + { + "path": "bocchi_draft/images/14.png", + "hash": "e02a5bf9fd8c010dbbdbdfcfd68c88b2" + }, + { + "path": "bocchi_draft/images/15.png", + "hash": "c627cf848a3258c3f60f387f94424594" + }, + { + "path": "bocchi_draft/images/16.png", + "hash": "3ae22d0f4d647123a5a3d6463615894f" + }, + { + "path": "bocchi_draft/images/17.png", + "hash": "d3b524c173dae3f6f99a9280348c7c9f" + }, + { + "path": "bocchi_draft/images/18.png", + "hash": "89138ffaae09314d0d6ace6ea084dd35" + }, + { + "path": "bocchi_draft/images/19.png", + "hash": "5369cc29e4deab14936cae35cf6a039e" + }, + { + "path": "bocchi_draft/images/2.png", + "hash": "680aea676a5f3d510ddee5c30201e59e" + }, + { + "path": "bocchi_draft/images/20.png", + "hash": "23b17e86c34e6762c774f71cebef119b" + }, + { + "path": "bocchi_draft/images/21.png", + "hash": "23b17e86c34e6762c774f71cebef119b" + }, + { + "path": "bocchi_draft/images/22.png", + "hash": "23b17e86c34e6762c774f71cebef119b" + }, + { + "path": "bocchi_draft/images/3.png", + "hash": "d2fe56d893a8bf44d12fa43dc0d9616f" + }, + { + "path": "bocchi_draft/images/4.png", + "hash": "8c9b0855d8a752fb0c1969e5962035e2" + }, + { + "path": "bocchi_draft/images/5.png", + "hash": "3e1fe9c59bd56721b8e306b30fec11a1" + }, + { + "path": "bocchi_draft/images/6.png", + "hash": "81c83f74c8fb24c7aaf47c794c42f5b7" + }, + { + "path": "bocchi_draft/images/7.png", + "hash": "12d192f4487f6caf72c14328fbe62915" + }, + { + "path": "bocchi_draft/images/8.png", + "hash": "30c655e223bb9e6d2f5f60deec416941" + }, + { + "path": "bocchi_draft/images/9.png", + "hash": "ecd068db32969f4b587b992acce1fd65" + }, + { + "path": "bronya_holdsign/images/0.jpg", + "hash": "fc035e0ac02ee3bd44f4409f8df14ed9" + }, + { + "path": "bubble_tea/images/0.png", + "hash": "31c42e10985c1efa934d6b616b155c92" + }, + { + "path": "caoshen_bite/images/0.png", + "hash": "08420f435eb8e9b395fad3bc11823c70" + }, + { + "path": "caoshen_bite/images/1.png", + "hash": "f340d01ad0763eb5600a41c8008e03d5" + }, + { + "path": "caoshen_bite/images/10.png", + "hash": "a1d267b8c2dc8960145e809a6f369fab" + }, + { + "path": "caoshen_bite/images/11.png", + "hash": "9f9441dcc91f0062ca846ad3b0b8620c" + }, + { + "path": "caoshen_bite/images/12.png", + "hash": "ff19d6745c655440c5694ef5f295a65d" + }, + { + "path": "caoshen_bite/images/13.png", + "hash": "ef07e844622561ad41f0f385d1c6c9b3" + }, + { + "path": "caoshen_bite/images/14.png", + "hash": "897d566b8141a1bfc2511028cee4fe1f" + }, + { + "path": "caoshen_bite/images/15.png", + "hash": "fd6c58767115008172ab831f45094e17" + }, + { + "path": "caoshen_bite/images/16.png", + "hash": "601e9c86aa5c88f8f61eb1f864f646ed" + }, + { + "path": "caoshen_bite/images/17.png", + "hash": "7bd7c71a858fb17a79e9edad48c9eaa7" + }, + { + "path": "caoshen_bite/images/18.png", + "hash": "9cd95aa172f1ed3c7f05b09cc79ab782" + }, + { + "path": "caoshen_bite/images/19.png", + "hash": "75a0f0e5743b463fe2720fd2af485faf" + }, + { + "path": "caoshen_bite/images/2.png", + "hash": "6aad3b8f4033dbd8e8d3337543e13021" + }, + { + "path": "caoshen_bite/images/20.png", + "hash": "ea4d6d11dba51342bd1dabe6d88ba5e3" + }, + { + "path": "caoshen_bite/images/21.png", + "hash": "a567e86a31fcbe0253deb3feb774d4c5" + }, + { + "path": "caoshen_bite/images/22.png", + "hash": "05e08e612e618e33439e1d1d6e8fa175" + }, + { + "path": "caoshen_bite/images/23.png", + "hash": "18389bd829edb63d0ceae078bb1763ce" + }, + { + "path": "caoshen_bite/images/24.png", + "hash": "7891aac64cf87dc9d9434fac371a3407" + }, + { + "path": "caoshen_bite/images/25.png", + "hash": "ae02845905cb4dabc9fb895abd401c00" + }, + { + "path": "caoshen_bite/images/26.png", + "hash": "64edbdbe41176edca386c65f0f8af96f" + }, + { + "path": "caoshen_bite/images/27.png", + "hash": "f4cb93a0a4bec4e7d083a3d9933cf09c" + }, + { + "path": "caoshen_bite/images/28.png", + "hash": "97b63b42a2185e68226a7169d87b0b6e" + }, + { + "path": "caoshen_bite/images/29.png", + "hash": "1fd421c45721fd2e0d0f332b7f04292e" + }, + { + "path": "caoshen_bite/images/3.png", + "hash": "2e1d13692bf091b5c6f6f085949d68f8" + }, + { + "path": "caoshen_bite/images/30.png", + "hash": "b6eecaaab53ea23f05257ac999c418d0" + }, + { + "path": "caoshen_bite/images/31.png", + "hash": "7895a3b96748d299471d5ea7e29acd1a" + }, + { + "path": "caoshen_bite/images/32.png", + "hash": "651c3ed9a98818165d18e0c324824460" + }, + { + "path": "caoshen_bite/images/33.png", + "hash": "a040f062a3efc9a234cb086f434dafbf" + }, + { + "path": "caoshen_bite/images/34.png", + "hash": "34d89ed45313e5251253af64f616e8a1" + }, + { + "path": "caoshen_bite/images/35.png", + "hash": "655c475ad47f0badb51dccfca6e1aac7" + }, + { + "path": "caoshen_bite/images/36.png", + "hash": "0c5f969d05f730bedc7e2878e273b874" + }, + { + "path": "caoshen_bite/images/37.png", + "hash": "2d224e773965415953b7b4b8841b595c" + }, + { + "path": "caoshen_bite/images/4.png", + "hash": "ea4c10cdfb97252224814c92d8ecc175" + }, + { + "path": "caoshen_bite/images/5.png", + "hash": "cc4c6a030b0ba9a77ba559a49ce9d9be" + }, + { + "path": "caoshen_bite/images/6.png", + "hash": "d6f30de64fadec982c1e988a71dff7ed" + }, + { + "path": "caoshen_bite/images/7.png", + "hash": "b817fc07aa3cde720162bb693caca64c" + }, + { + "path": "caoshen_bite/images/8.png", + "hash": "5be01bb928ba4b553a7eb2256b5ec198" + }, + { + "path": "caoshen_bite/images/9.png", + "hash": "737d6062cd53c0133b361cb2c4543ffc" + }, + { + "path": "capoo_draw/images/0.png", + "hash": "f912144ee503cb4c193e6c109eb83637" + }, + { + "path": "capoo_draw/images/1.png", + "hash": "d85d94489c3a4ad1c418782ff5a9dafa" + }, + { + "path": "capoo_draw/images/2.png", + "hash": "dc3f3d37a5b985088388253ff7abecf4" + }, + { + "path": "capoo_draw/images/3.png", + "hash": "97034f01eed7f12767f224911e667a6f" + }, + { + "path": "capoo_draw/images/4.png", + "hash": "137787ff3e3df61f9238874ebe8ce46b" + }, + { + "path": "capoo_draw/images/5.png", + "hash": "f0480a00928db523221265376dfe7c07" + }, + { + "path": "capoo_rip/images/0.png", + "hash": "b9071375f262197ebb2a646875b8d819" + }, + { + "path": "capoo_rip/images/1.png", + "hash": "1e57ec96c106f137106eaf263f28ef4b" + }, + { + "path": "capoo_rip/images/2.png", + "hash": "6b30315d53652333e1587b7478242d27" + }, + { + "path": "capoo_rip/images/3.png", + "hash": "a949947118b16140c7efb35c5ed59abf" + }, + { + "path": "capoo_rip/images/4.png", + "hash": "c4337ead3d063740014be45c6b14eb1f" + }, + { + "path": "capoo_rip/images/5.png", + "hash": "983f0d7e0c9080479d29f646c0a406f8" + }, + { + "path": "capoo_rip/images/6.png", + "hash": "1258ad3db7914f7f2f955a6f2c910595" + }, + { + "path": "capoo_rip/images/7.png", + "hash": "c4d7613a7d578dd956e66edfbac23c89" + }, + { + "path": "capoo_rub/images/0.png", + "hash": "6fc3f9dd10f0a7de7f8c4c853166de26" + }, + { + "path": "capoo_rub/images/1.png", + "hash": "4ee09f4c274dac2d33c59f1a464591df" + }, + { + "path": "capoo_rub/images/2.png", + "hash": "3e4d4babbd4b9081682651510ad70680" + }, + { + "path": "capoo_rub/images/3.png", + "hash": "6d35b343f1bde5f1de4a5df94921b634" + }, + { + "path": "capoo_say/images/0.png", + "hash": "f068d28034bde7515340a58da0e4d9bf" + }, + { + "path": "capoo_say/images/1.png", + "hash": "3135e96c106a035153400d2ebe8f0be5" + }, + { + "path": "capoo_say/images/2.png", + "hash": "13c0e3e5db935829df8216518b951ebd" + }, + { + "path": "capoo_say/images/3.png", + "hash": "371b2e086c5949945a896c63a091fa7a" + }, + { + "path": "capoo_say/images/4.png", + "hash": "0c2bd48833523efb31917ad3d3b9b639" + }, + { + "path": "capoo_say/images/5.png", + "hash": "e55a0f719d1e6cd644f5ccff2cd783c0" + }, + { + "path": "capoo_say/images/6.png", + "hash": "a834e50a071769825efa5d37bc983f3e" + }, + { + "path": "capoo_say/images/7.png", + "hash": "7d3d97118846dea27983479710d91194" + }, + { + "path": "capoo_say/images/8.png", + "hash": "1079fa13aa6adcfb2d90c1a58d5d092d" + }, + { + "path": "capoo_say/images/9.png", + "hash": "b9b1b73405dd68d923930425a04fc26e" + }, + { + "path": "capoo_strike/images/0.png", + "hash": "3b7f60521294a0fd93c9a73b8d67a4e7" + }, + { + "path": "capoo_strike/images/1.png", + "hash": "c73899d2b67010fb4171d4aedcdaed81" + }, + { + "path": "capoo_strike/images/2.png", + "hash": "4c6643ac048d75df4103af4788be9053" + }, + { + "path": "capoo_strike/images/3.png", + "hash": "865082240baad33b6a1d58ba6187c026" + }, + { + "path": "capoo_strike/images/4.png", + "hash": "d9ae348ed2306b1fe04f7004078bb41f" + }, + { + "path": "capoo_strike/images/5.png", + "hash": "e33771e54e4204c5881ec955fa6a021d" + }, + { + "path": "capoo_strike/images/6.png", + "hash": "a4f9b749b5481a65220581eb7be03d8b" + }, + { + "path": "captain/images/0.png", + "hash": "f6cca0f44aa54c721f8b172f8ebb7f40" + }, + { + "path": "captain/images/1.png", + "hash": "2885566e47ef4fb40560149c795dca7f" + }, + { + "path": "captain/images/2.png", + "hash": "e230240d0929b774a985a301962d36b5" + }, + { + "path": "certificate/images/0.png", + "hash": "4fa571530f1c9b4701bdc3240a19fe25" + }, + { + "path": "chase_train/images/0.png", + "hash": "7bf7c41898169f70973a249905e1086c" + }, + { + "path": "chase_train/images/1.png", + "hash": "1db1364a8dbd84e6ef74079bb5ff17a8" + }, + { + "path": "chase_train/images/10.png", + "hash": "292dbe5e5d0e420b4ef258b19ac52172" + }, + { + "path": "chase_train/images/100.png", + "hash": "4ed64a045b8ab95aafea0eb4c5079fa6" + }, + { + "path": "chase_train/images/101.png", + "hash": "335739eb957573a9dec19dba2b16b3e7" + }, + { + "path": "chase_train/images/102.png", + "hash": "dd879e677cb54ea91a7e68f776c523a6" + }, + { + "path": "chase_train/images/103.png", + "hash": "739f501c7826edd93c77b66ec868b194" + }, + { + "path": "chase_train/images/104.png", + "hash": "ba51852201ecad21a3f76d7603bba4a5" + }, + { + "path": "chase_train/images/105.png", + "hash": "f165e50e13ba5ec1806ba56111ebadd9" + }, + { + "path": "chase_train/images/106.png", + "hash": "dddec974b82ae647fbdf1c2a09a3ee61" + }, + { + "path": "chase_train/images/107.png", + "hash": "542d308cbcf85cc202622a79588d3a49" + }, + { + "path": "chase_train/images/108.png", + "hash": "2b10c147fc987e17e8898f77e2bdcb14" + }, + { + "path": "chase_train/images/109.png", + "hash": "69f87ef8712a717ce6dbaa7aa95d8eea" + }, + { + "path": "chase_train/images/11.png", + "hash": "9c046b3902292b4737503161f2b62d02" + }, + { + "path": "chase_train/images/110.png", + "hash": "4e91a1f042ff3f4adb1a823b1e1f1fe2" + }, + { + "path": "chase_train/images/111.png", + "hash": "edd3d9ee22bf9e700ba6ddb4827afd3e" + }, + { + "path": "chase_train/images/112.png", + "hash": "ed5902b62cd2e1ac54d32ff19e30505e" + }, + { + "path": "chase_train/images/113.png", + "hash": "e65e849be18bfc610b60ac862cf9e1e5" + }, + { + "path": "chase_train/images/114.png", + "hash": "4d464c70883177e31f05a65ade9de13e" + }, + { + "path": "chase_train/images/115.png", + "hash": "353675889c312a1416055d01317069ba" + }, + { + "path": "chase_train/images/116.png", + "hash": "b207d15fdbb26087d5bf527f27e4f087" + }, + { + "path": "chase_train/images/117.png", + "hash": "36fe4bb2cce9974141030210144c3ad8" + }, + { + "path": "chase_train/images/118.png", + "hash": "4235c27a89563fea2d7f5b114233ef17" + }, + { + "path": "chase_train/images/119.png", + "hash": "dd2c42261479419e676f09c55ed8e79a" + }, + { + "path": "chase_train/images/12.png", + "hash": "98ea083aa53ff3f3af606e7e67033476" + }, + { + "path": "chase_train/images/13.png", + "hash": "a6f43b04aa305e5a320e20db5d850199" + }, + { + "path": "chase_train/images/14.png", + "hash": "37074ede0dea70240baf2d26dd77a373" + }, + { + "path": "chase_train/images/15.png", + "hash": "fae7dbfbfff28b3eae665d48c656d4ff" + }, + { + "path": "chase_train/images/16.png", + "hash": "47b500c96c779d4ac335b5c46bdb2e0a" + }, + { + "path": "chase_train/images/17.png", + "hash": "e69029fc7f4ed692e06c4794d6dac4ae" + }, + { + "path": "chase_train/images/18.png", + "hash": "71de33d9e84189ab458df8c053317b91" + }, + { + "path": "chase_train/images/19.png", + "hash": "8d36823b898e52b32cc25b9ffabcf339" + }, + { + "path": "chase_train/images/2.png", + "hash": "65a0830bc6d6a3127faf8e50822ac8b3" + }, + { + "path": "chase_train/images/20.png", + "hash": "f5734adff0f98aa2efa2f0b7d70884bc" + }, + { + "path": "chase_train/images/21.png", + "hash": "6815118e286fdbf9078e20f41e6112af" + }, + { + "path": "chase_train/images/22.png", + "hash": "01f3a8eb8983bc6e24634839bee85b55" + }, + { + "path": "chase_train/images/23.png", + "hash": "b02e49bd23246d91efac12cc777d7f78" + }, + { + "path": "chase_train/images/24.png", + "hash": "a0ee2dc52c4c1c473cc57092d942f7b2" + }, + { + "path": "chase_train/images/25.png", + "hash": "ab7a9e557e09314a8e5109dcf809e296" + }, + { + "path": "chase_train/images/26.png", + "hash": "b1cadf11b827d74f0ddf48ef0a5a5d28" + }, + { + "path": "chase_train/images/27.png", + "hash": "6348519826d61b471a8fece92e4ee516" + }, + { + "path": "chase_train/images/28.png", + "hash": "58f9a74fa74d3a4198510e005c4484ca" + }, + { + "path": "chase_train/images/29.png", + "hash": "521571b8b5b5654129ebb195066480c6" + }, + { + "path": "chase_train/images/3.png", + "hash": "3b9f749bc39286b7b5e0d9e726a1d4bd" + }, + { + "path": "chase_train/images/30.png", + "hash": "973241e42057f711fd370c36d466d683" + }, + { + "path": "chase_train/images/31.png", + "hash": "57bcfb0936d920907e0c84d8091f2384" + }, + { + "path": "chase_train/images/32.png", + "hash": "a475f33be6cff4fd435429165e7a89ab" + }, + { + "path": "chase_train/images/33.png", + "hash": "9fe7fc8f8b51e75b55ce58990615b8ae" + }, + { + "path": "chase_train/images/34.png", + "hash": "ca099830bd27ea5a263ec413032a731a" + }, + { + "path": "chase_train/images/35.png", + "hash": "48a37c15cb3f553178b8a322ee5498a4" + }, + { + "path": "chase_train/images/36.png", + "hash": "83ddc24949269dacee985c5dd08dfef0" + }, + { + "path": "chase_train/images/37.png", + "hash": "502d977a23285c42690e04e48133ef45" + }, + { + "path": "chase_train/images/38.png", + "hash": "c34f48052c67d8bd9eb57499da3fce44" + }, + { + "path": "chase_train/images/39.png", + "hash": "f8da1e9c2dea0e6d227412a70a556ada" + }, + { + "path": "chase_train/images/4.png", + "hash": "5869633c96666ef1bd22a23177e41a11" + }, + { + "path": "chase_train/images/40.png", + "hash": "4976ea014147cdf6beebb22e26011ad6" + }, + { + "path": "chase_train/images/41.png", + "hash": "00a733e04c08f01af4a76d470c9fa3e0" + }, + { + "path": "chase_train/images/42.png", + "hash": "4bbc5205e8c8368ef5aeaf964128c79d" + }, + { + "path": "chase_train/images/43.png", + "hash": "aea76edecc7a6115cca6a75e98005adc" + }, + { + "path": "chase_train/images/44.png", + "hash": "916f4fe46a610ad7a36fbd2dfe2b1a71" + }, + { + "path": "chase_train/images/45.png", + "hash": "ba8f249cbdb55c25b467134c0c486bd3" + }, + { + "path": "chase_train/images/46.png", + "hash": "c9b25bc88e55cfffc0fa86615fcfe81c" + }, + { + "path": "chase_train/images/47.png", + "hash": "65d9a4ca467b3586f07e51cc1eabbc98" + }, + { + "path": "chase_train/images/48.png", + "hash": "7206195dbce1db53e8824d6e9aec3080" + }, + { + "path": "chase_train/images/49.png", + "hash": "2b4c83f6bc3b23ee293e1aac1a7ccd03" + }, + { + "path": "chase_train/images/5.png", + "hash": "1752695309e244dbd1d9717da63c9129" + }, + { + "path": "chase_train/images/50.png", + "hash": "3e2a46aa34f81dcd11fd4231c6b05160" + }, + { + "path": "chase_train/images/51.png", + "hash": "3b52abcf06fef40c45f373791f38a7ae" + }, + { + "path": "chase_train/images/52.png", + "hash": "db480438656ac78c053bd986f88b8e20" + }, + { + "path": "chase_train/images/53.png", + "hash": "efca259de1ced624cf9f24f78ca4cec8" + }, + { + "path": "chase_train/images/54.png", + "hash": "dc0b5c1a5971e2141cbe4d9c56d0c128" + }, + { + "path": "chase_train/images/55.png", + "hash": "ad9da6c1dc641a6bede0f4b7c8e38f30" + }, + { + "path": "chase_train/images/56.png", + "hash": "235c74c051701ca383eb8dc390934ac3" + }, + { + "path": "chase_train/images/57.png", + "hash": "257a0e3debc5b5176dc5ea61880a9d2d" + }, + { + "path": "chase_train/images/58.png", + "hash": "e4aa8b6784dd697280065e967315afc9" + }, + { + "path": "chase_train/images/59.png", + "hash": "455619e428f24bc7297246ea509cdc8e" + }, + { + "path": "chase_train/images/6.png", + "hash": "a2e63edc5c56f8dc5a1f749eaba9ad1c" + }, + { + "path": "chase_train/images/60.png", + "hash": "06658ba5901219637dcb86687e878488" + }, + { + "path": "chase_train/images/61.png", + "hash": "7fbab76e20924d6d655d256cb2a7618e" + }, + { + "path": "chase_train/images/62.png", + "hash": "f00691c5671383d2040ebb3cc6d0fce6" + }, + { + "path": "chase_train/images/63.png", + "hash": "22dc12001b5237b196859a9f57c00486" + }, + { + "path": "chase_train/images/64.png", + "hash": "fb529e76863bc338b7c01d8d5d152a01" + }, + { + "path": "chase_train/images/65.png", + "hash": "d9da6224c137a9f20998acbe92740dc2" + }, + { + "path": "chase_train/images/66.png", + "hash": "b3d7c85a3af021ae09ccc111a271f67d" + }, + { + "path": "chase_train/images/67.png", + "hash": "f9e1bb5ab9160458dabfb2c814e5c96c" + }, + { + "path": "chase_train/images/68.png", + "hash": "34629b82b74ea3064f91cb5e2d3d2c35" + }, + { + "path": "chase_train/images/69.png", + "hash": "a3cc3bd6f43a9d57f7165db69409b785" + }, + { + "path": "chase_train/images/7.png", + "hash": "81a63cd5a80146039ead67df4dc6a00f" + }, + { + "path": "chase_train/images/70.png", + "hash": "25f0e2695b503b9712aa97586e2d2d68" + }, + { + "path": "chase_train/images/71.png", + "hash": "a730868e157a3cf19d522c5c522a6ebe" + }, + { + "path": "chase_train/images/72.png", + "hash": "5a2d4cad093f62729029e7b46267912b" + }, + { + "path": "chase_train/images/73.png", + "hash": "ded3cb4a8d95243f160aec398b1478d6" + }, + { + "path": "chase_train/images/74.png", + "hash": "779beb6f0109623be10b2384e14e5170" + }, + { + "path": "chase_train/images/75.png", + "hash": "e04087097cf67d87e5a1a845a7f4f2e4" + }, + { + "path": "chase_train/images/76.png", + "hash": "398d14e6939d3af6a56382d5e4798ea7" + }, + { + "path": "chase_train/images/77.png", + "hash": "04e0eab8bbe7812c340e6973796b5852" + }, + { + "path": "chase_train/images/78.png", + "hash": "24a19ab361acbceda3b74a920c116cf4" + }, + { + "path": "chase_train/images/79.png", + "hash": "c64f1273c6f0838c82f63644ba61f2b0" + }, + { + "path": "chase_train/images/8.png", + "hash": "6f905804a2dd792088fb020ed4ba1ec5" + }, + { + "path": "chase_train/images/80.png", + "hash": "9dbf7b98b1f900666a284ff8c2a53bb5" + }, + { + "path": "chase_train/images/81.png", + "hash": "b1fac283bebd34b8299b4f07796882d1" + }, + { + "path": "chase_train/images/82.png", + "hash": "838e37bd37a44ae626057b7f4112a4f4" + }, + { + "path": "chase_train/images/83.png", + "hash": "1fc3c2aac840addab4a7232fce8d2618" + }, + { + "path": "chase_train/images/84.png", + "hash": "11e70793a048c508b1fd7ce200f2305c" + }, + { + "path": "chase_train/images/85.png", + "hash": "c9dc1d6b9880738b34ed8c2523ab28fa" + }, + { + "path": "chase_train/images/86.png", + "hash": "7accb0d98b7a09033238757722c06481" + }, + { + "path": "chase_train/images/87.png", + "hash": "ad7a36af263b89b9fd93c560cd93c734" + }, + { + "path": "chase_train/images/88.png", + "hash": "78c6254f5bc50edae2ad5ae77276ad37" + }, + { + "path": "chase_train/images/89.png", + "hash": "bc84844fa4af35b09773caaa78fefda0" + }, + { + "path": "chase_train/images/9.png", + "hash": "ac728bb2724f1b87a858225df47fe1a7" + }, + { + "path": "chase_train/images/90.png", + "hash": "50dc68f1ce171eea7186f1c80a868ad8" + }, + { + "path": "chase_train/images/91.png", + "hash": "8781c486e83faad346335c7f10fcd4ec" + }, + { + "path": "chase_train/images/92.png", + "hash": "6bb85189d43d162ff52e37da13a2c090" + }, + { + "path": "chase_train/images/93.png", + "hash": "4b7bb7d0423d12aba6b52153cefd8a82" + }, + { + "path": "chase_train/images/94.png", + "hash": "43ce0d9a874c4d4452f19e87411b1b24" + }, + { + "path": "chase_train/images/95.png", + "hash": "f61a6df0cb1977cdbc0413b249d2fec1" + }, + { + "path": "chase_train/images/96.png", + "hash": "2ba4cdef4cd8822b36c6afdf65aa2ccf" + }, + { + "path": "chase_train/images/97.png", + "hash": "7334779ae38e8a0f1d76e7e6d576af5c" + }, + { + "path": "chase_train/images/98.png", + "hash": "d249d2f3aab8f4eec578465b76c50cad" + }, + { + "path": "chase_train/images/99.png", + "hash": "4571cc545e6885c3b564ab87336cfe8e" + }, + { + "path": "china_flag/images/0.png", + "hash": "aa64adae6f7ede5bceafe81a5273cafc" + }, + { + "path": "clown/images/circle.png", + "hash": "4c29378f4e6f76ba7755808945eead80" + }, + { + "path": "clown/images/person.png", + "hash": "f5f150ed84fc4425a90daa92458f933a" + }, + { + "path": "confuse/images/0.png", + "hash": "4758c555242fb3b8f3f7426e575dde95" + }, + { + "path": "confuse/images/1.png", + "hash": "36fad69b2f66b88282254a9faf57d1ac" + }, + { + "path": "confuse/images/10.png", + "hash": "6ce9115d8292edabd74a1b7fbdced670" + }, + { + "path": "confuse/images/11.png", + "hash": "9b1a1434e083320b58390a4f86aa8ac8" + }, + { + "path": "confuse/images/12.png", + "hash": "f53fca003ac5b66f64cf7546a56356bc" + }, + { + "path": "confuse/images/13.png", + "hash": "14e4c8f746f319f15cad7d02daa7dad0" + }, + { + "path": "confuse/images/14.png", + "hash": "ba413c63991f17e2bd0a28bc4c105bae" + }, + { + "path": "confuse/images/15.png", + "hash": "f61159552fa9ab7f9e452ff927fc8acb" + }, + { + "path": "confuse/images/16.png", + "hash": "f938d95975d5f1045c2823ad396b4979" + }, + { + "path": "confuse/images/17.png", + "hash": "6832dea7f470464c095f65925e3a6ba9" + }, + { + "path": "confuse/images/18.png", + "hash": "8a49ebf2ab4564f650e690bef420695d" + }, + { + "path": "confuse/images/19.png", + "hash": "9a6d5fe6538b795bba572e0c4ab55ecc" + }, + { + "path": "confuse/images/2.png", + "hash": "82364e42fbc865097412338837b2d328" + }, + { + "path": "confuse/images/20.png", + "hash": "c29dfedd885067b036f2fa6e6d353ff3" + }, + { + "path": "confuse/images/21.png", + "hash": "349a96211a03552d040d044eb3f6bdd8" + }, + { + "path": "confuse/images/22.png", + "hash": "02de93e56d54e4c0d5628f5261643203" + }, + { + "path": "confuse/images/23.png", + "hash": "5ef1795da2f86c4a64e67263e3edfd1a" + }, + { + "path": "confuse/images/24.png", + "hash": "cc16e54ef506cdb23d9e0cfad2294603" + }, + { + "path": "confuse/images/25.png", + "hash": "b031bdd75398a2c14913d3a9b0f434c2" + }, + { + "path": "confuse/images/26.png", + "hash": "b410f262a549e23bf0c7cade90ebb412" + }, + { + "path": "confuse/images/27.png", + "hash": "11e766fac91cef3a207fab7c6131790f" + }, + { + "path": "confuse/images/28.png", + "hash": "0e5c0d09536eeefd8648c820e3d6d802" + }, + { + "path": "confuse/images/29.png", + "hash": "e22c184a0b8fae0c34e135949bb8b988" + }, + { + "path": "confuse/images/3.png", + "hash": "349dd7216c0a55db11127d985d592b12" + }, + { + "path": "confuse/images/30.png", + "hash": "5cebf2a9d4fa49500885df77b759cf1b" + }, + { + "path": "confuse/images/31.png", + "hash": "1632f329095a83130e72f89ff37c8454" + }, + { + "path": "confuse/images/32.png", + "hash": "362d6ce1326c08436566b7944a8bd2f4" + }, + { + "path": "confuse/images/33.png", + "hash": "ab3516b03fb98be9785005958d2577a3" + }, + { + "path": "confuse/images/34.png", + "hash": "da4af5bbd2f6b8747965b300e421c902" + }, + { + "path": "confuse/images/35.png", + "hash": "ac38b4b0bd681bf5b13b37888d05992b" + }, + { + "path": "confuse/images/36.png", + "hash": "95a43fc43eac8a5bde512ddacf037c3d" + }, + { + "path": "confuse/images/37.png", + "hash": "0c8526d12f5764a860d01017f3fbebbc" + }, + { + "path": "confuse/images/38.png", + "hash": "43a4bf013712dd73830d728e024d03f3" + }, + { + "path": "confuse/images/39.png", + "hash": "df7f3cb11a4e3a964e6886fd91559bf0" + }, + { + "path": "confuse/images/4.png", + "hash": "935ae3c540c5fe3dbad3cc5900564272" + }, + { + "path": "confuse/images/40.png", + "hash": "86d07b123ce2d919aa0d1a11bc8c8af0" + }, + { + "path": "confuse/images/41.png", + "hash": "14c5dcda50d097e7c418d678314f762a" + }, + { + "path": "confuse/images/42.png", + "hash": "670d20b0d7bd9327d4314871972c8dc6" + }, + { + "path": "confuse/images/43.png", + "hash": "cd247bbbe553704b93a22d6a68d68db9" + }, + { + "path": "confuse/images/44.png", + "hash": "e1c0b8a37f6a14d4512e68a5aa9c8c7e" + }, + { + "path": "confuse/images/45.png", + "hash": "f5efa7ffa7d28a8d9734ac6da16fd1f8" + }, + { + "path": "confuse/images/46.png", + "hash": "3e8c31adbb8263e787417efd862c35bd" + }, + { + "path": "confuse/images/47.png", + "hash": "8813439d0c101eee39c62cea5ac7cc63" + }, + { + "path": "confuse/images/48.png", + "hash": "65b6c396ed0e069314d411a760c732d1" + }, + { + "path": "confuse/images/49.png", + "hash": "900a70773d6b7e2bed31a5dbe6e6e0eb" + }, + { + "path": "confuse/images/5.png", + "hash": "93251d796fc5ddaac7b7f11ad606cd93" + }, + { + "path": "confuse/images/50.png", + "hash": "0495631cee1906334eae549aa6cbdbbb" + }, + { + "path": "confuse/images/51.png", + "hash": "d41fbbcd92414fda29dd135c7e52dfd5" + }, + { + "path": "confuse/images/52.png", + "hash": "b28b841b05143a99b493a80a75285fe1" + }, + { + "path": "confuse/images/53.png", + "hash": "b1581543d5840dd8e0614a38eccc6480" + }, + { + "path": "confuse/images/54.png", + "hash": "dbcba662c117d08322de64ddd4fca0de" + }, + { + "path": "confuse/images/55.png", + "hash": "14e32fd9a2f9969e1c487dd7463300fc" + }, + { + "path": "confuse/images/56.png", + "hash": "9ba295cb92d8db271293d5a3ed4efbf9" + }, + { + "path": "confuse/images/57.png", + "hash": "bc7e5cbc5bbc0d2e819e26f86a4c0d15" + }, + { + "path": "confuse/images/58.png", + "hash": "55fe9b8439cf8db774e8edf1ba925220" + }, + { + "path": "confuse/images/59.png", + "hash": "cd2cbac3e51185bd1ab89f0e0f9663d4" + }, + { + "path": "confuse/images/6.png", + "hash": "912dba6537f249ab96329551eb79590e" + }, + { + "path": "confuse/images/60.png", + "hash": "565b13924f766b6d544dad432534e7f4" + }, + { + "path": "confuse/images/61.png", + "hash": "9456d0cf43bca9715dde029eb196852b" + }, + { + "path": "confuse/images/62.png", + "hash": "2c162ab10a9d01e0e8b0019f597cbcdf" + }, + { + "path": "confuse/images/63.png", + "hash": "81940aed3fda844dabe97f05a6636311" + }, + { + "path": "confuse/images/64.png", + "hash": "dbaa72fcd6f6677c569f73449f2a8790" + }, + { + "path": "confuse/images/65.png", + "hash": "b10625ffdd4f4bab57c5ed27b0a84cc9" + }, + { + "path": "confuse/images/66.png", + "hash": "d550962452fe6c383c62b973dc00aefc" + }, + { + "path": "confuse/images/67.png", + "hash": "2187819577b8acd5c170a8137c6eb2ce" + }, + { + "path": "confuse/images/68.png", + "hash": "68b37e77e5678b1382c755e683f600f1" + }, + { + "path": "confuse/images/69.png", + "hash": "7ee64ef710190844ae138beb7080c414" + }, + { + "path": "confuse/images/7.png", + "hash": "b529943d2a97ee24dc2af526d6afbf20" + }, + { + "path": "confuse/images/70.png", + "hash": "31ac37fdcd36c2cc8b444e9245843316" + }, + { + "path": "confuse/images/71.png", + "hash": "c009b05844a6f673baebb85d4ca810df" + }, + { + "path": "confuse/images/72.png", + "hash": "82a8077f34e7052d16ba32386a018534" + }, + { + "path": "confuse/images/73.png", + "hash": "9a8a39e0fb705f9b259e8323a533ff20" + }, + { + "path": "confuse/images/74.png", + "hash": "880a60d5d3e656116b0be4a37a1e56bb" + }, + { + "path": "confuse/images/75.png", + "hash": "589ba816911705a0b7d8f1f07833cfa4" + }, + { + "path": "confuse/images/76.png", + "hash": "b9bb3ce47bb157a8b1b9383df59c0a30" + }, + { + "path": "confuse/images/77.png", + "hash": "f40cca19853e6b29d10dbf6bc410c39e" + }, + { + "path": "confuse/images/78.png", + "hash": "e110e2ce944356056714fe26894ee509" + }, + { + "path": "confuse/images/79.png", + "hash": "6365cbb7ff7106e1c6334942ebebfa6e" + }, + { + "path": "confuse/images/8.png", + "hash": "8faa3341b8a1d86f60313a11215b5ace" + }, + { + "path": "confuse/images/80.png", + "hash": "9a47bd56b13059e349f6236c6dce605a" + }, + { + "path": "confuse/images/81.png", + "hash": "fd5b11c40f60da53da999cce18572552" + }, + { + "path": "confuse/images/82.png", + "hash": "7f6a76528a8a531d8d0fb88b42b1855c" + }, + { + "path": "confuse/images/83.png", + "hash": "d0c1125dbb10d75406c1d2cc88368766" + }, + { + "path": "confuse/images/84.png", + "hash": "cefb8ed958cb38f74db21ed4b390b175" + }, + { + "path": "confuse/images/85.png", + "hash": "508467fcf63c81e8202f6c24b0007032" + }, + { + "path": "confuse/images/86.png", + "hash": "831d56520f8378c8c8a525d8bf786c99" + }, + { + "path": "confuse/images/87.png", + "hash": "807e7b96ac60ffb65b9f28643d87c7ea" + }, + { + "path": "confuse/images/88.png", + "hash": "d1f27772cc238b348e82b5126bf6cbc9" + }, + { + "path": "confuse/images/89.png", + "hash": "fca1191b7a7dbc199f7cb9541c0cffc1" + }, + { + "path": "confuse/images/9.png", + "hash": "562ed906ec350b5f948f2dc5793cdb3f" + }, + { + "path": "confuse/images/90.png", + "hash": "647b0aca88439a8bc0c4fd5f56bb08db" + }, + { + "path": "confuse/images/91.png", + "hash": "6a9f58a786851e8d227255007716c9c3" + }, + { + "path": "confuse/images/92.png", + "hash": "d5bc05be5757a38b5c8ede86b3bbecd0" + }, + { + "path": "confuse/images/93.png", + "hash": "0aec630f9affb58fc244ebf867b6756f" + }, + { + "path": "confuse/images/94.png", + "hash": "7c8afaaacd83da90ef8ba815ae9c6adb" + }, + { + "path": "confuse/images/95.png", + "hash": "98ae73a5d37372b009d70abdcd80c016" + }, + { + "path": "confuse/images/96.png", + "hash": "4197a036a87ae517034548801297b6a4" + }, + { + "path": "confuse/images/97.png", + "hash": "cdc67752ea7f8d22eccf9070068ff91e" + }, + { + "path": "confuse/images/98.png", + "hash": "55dc9c90d7b95a6f6a8f45a10c0b5900" + }, + { + "path": "confuse/images/99.png", + "hash": "8342ce8812c3104f57871d590a2ca408" + }, + { + "path": "coupon/images/0.png", + "hash": "e7faf1dcc5a4ff24536b7e41a4faf733" + }, + { + "path": "cover_face/images/0.png", + "hash": "8e26cd9059e61526a04d87918f9744a7" + }, + { + "path": "crawl/images/01.jpg", + "hash": "cce6b6c568d5fab48dcae9278c46a989" + }, + { + "path": "crawl/images/02.jpg", + "hash": "7c3ee42c3ff9426fc8f4de5ab143d85c" + }, + { + "path": "crawl/images/03.jpg", + "hash": "2e76c43a6d3fdf6f545b03e78e9f9fbd" + }, + { + "path": "crawl/images/04.jpg", + "hash": "97fa4883794bf2897ed5c3bb77469efb" + }, + { + "path": "crawl/images/05.jpg", + "hash": "e43b84a3615f376de456dd3fc44ed7b9" + }, + { + "path": "crawl/images/06.jpg", + "hash": "325794814502c47c91342a01e99ae848" + }, + { + "path": "crawl/images/07.jpg", + "hash": "c4e44e1b0da434105ac7ec3e00a719ef" + }, + { + "path": "crawl/images/08.jpg", + "hash": "854f91dd72caf3570a270de49c6c3a3f" + }, + { + "path": "crawl/images/09.jpg", + "hash": "f2426f40201f0188986fbc581be93f7f" + }, + { + "path": "crawl/images/10.jpg", + "hash": "5e2ed1f0c9b2e1f22ca2996ca0c2c583" + }, + { + "path": "crawl/images/11.jpg", + "hash": "a319d42a631243b12ea5e23e395db053" + }, + { + "path": "crawl/images/12.jpg", + "hash": "b2673e18b7fb6dbb7a8a9b548a9fac67" + }, + { + "path": "crawl/images/13.jpg", + "hash": "c641beff5799a5448c8d599fd382a712" + }, + { + "path": "crawl/images/14.jpg", + "hash": "e8987c5f87145247abf7b71f68315c35" + }, + { + "path": "crawl/images/15.jpg", + "hash": "44333dd2980c8f0634ecb4b51df68883" + }, + { + "path": "crawl/images/16.jpg", + "hash": "c05fc5e54e081909959da84a79602c14" + }, + { + "path": "crawl/images/17.jpg", + "hash": "69072cff8bbf687c5933536df8d14fa2" + }, + { + "path": "crawl/images/18.jpg", + "hash": "5e29e097d7145108d22141c980d37549" + }, + { + "path": "crawl/images/19.jpg", + "hash": "2bf84016a2fc51beb1a3b51ca566129f" + }, + { + "path": "crawl/images/20.jpg", + "hash": "dc8f3e84d315c6e8fb0e81cf01fe9858" + }, + { + "path": "crawl/images/21.jpg", + "hash": "2088ed79ddaf4ba4e90c388151001ba0" + }, + { + "path": "crawl/images/22.jpg", + "hash": "8356a010b3739a423971aaed1c04b189" + }, + { + "path": "crawl/images/23.jpg", + "hash": "c31d7dab81d42449a67f64849c9b92e3" + }, + { + "path": "crawl/images/24.jpg", + "hash": "5c6e144005eee87ef930551887be1231" + }, + { + "path": "crawl/images/25.jpg", + "hash": "d31ab3575368eee91640a61690f96455" + }, + { + "path": "crawl/images/26.jpg", + "hash": "08d586461e3fcf195d33b3dedf4c975c" + }, + { + "path": "crawl/images/27.jpg", + "hash": "231134ba99805ff5df605b152df96b50" + }, + { + "path": "crawl/images/28.jpg", + "hash": "7b224d314e8c0f24909fb81cf4dd46ad" + }, + { + "path": "crawl/images/29.jpg", + "hash": "0438049dbe406a3f226601ee43ccbbc5" + }, + { + "path": "crawl/images/30.jpg", + "hash": "c53078e5fc9c8325e77b3cc8a90742e4" + }, + { + "path": "crawl/images/31.jpg", + "hash": "1180e67b8783a97bc9836f5452d8bc97" + }, + { + "path": "crawl/images/32.jpg", + "hash": "6beb7396a405776b059f2f2570c7ab88" + }, + { + "path": "crawl/images/33.jpg", + "hash": "13a8694e3309db4974941dbbfaa9efeb" + }, + { + "path": "crawl/images/34.jpg", + "hash": "718f66b3fb852638c6e558ac6439134d" + }, + { + "path": "crawl/images/35.jpg", + "hash": "2d1fd0826efdcf432fa4d31123cc29d4" + }, + { + "path": "crawl/images/36.jpg", + "hash": "5f919e2888ae358ebb0d276764677eb9" + }, + { + "path": "crawl/images/37.jpg", + "hash": "3d05ce7d26c64d31d42a1d41b42679b6" + }, + { + "path": "crawl/images/38.jpg", + "hash": "779884b7ea0ba7ea74678dd2b72ed724" + }, + { + "path": "crawl/images/39.jpg", + "hash": "6ca6621f9d24185849e2b04a3d2e48cc" + }, + { + "path": "crawl/images/40.jpg", + "hash": "79b7ade1d3b87e5d12bee2194b575a64" + }, + { + "path": "crawl/images/41.jpg", + "hash": "370414538e997f6ca8c71ceb765a334f" + }, + { + "path": "crawl/images/42.jpg", + "hash": "f8e0e017de609c1761bb480f2c556cfa" + }, + { + "path": "crawl/images/43.jpg", + "hash": "6a0ad1624348135b563d080ab957f194" + }, + { + "path": "crawl/images/44.jpg", + "hash": "cad8a91f4ad34e97c9df229134423d7e" + }, + { + "path": "crawl/images/45.jpg", + "hash": "20a16ca7ecc0c2515c3995658619324e" + }, + { + "path": "crawl/images/46.jpg", + "hash": "9db7359991714a5be0cd8a452d9ad10e" + }, + { + "path": "crawl/images/47.jpg", + "hash": "a759b94eca07f1a544a303aef20da203" + }, + { + "path": "crawl/images/48.jpg", + "hash": "3a3191d21f27ffb9671bcedf1538abcc" + }, + { + "path": "crawl/images/49.jpg", + "hash": "fc04ef2afa46d592658172dd8dc1cc94" + }, + { + "path": "crawl/images/50.jpg", + "hash": "3bdd6b0cd1571511ab68d3a7d65503c6" + }, + { + "path": "crawl/images/51.jpg", + "hash": "73dd26dcebfd8bdd3f8fd11c1bdecb93" + }, + { + "path": "crawl/images/52.jpg", + "hash": "6fecf8ebd4aecbd7edf001a7ad5bd6a8" + }, + { + "path": "crawl/images/53.jpg", + "hash": "6c728cb71eb019ef5dcf79ce276d7304" + }, + { + "path": "crawl/images/54.jpg", + "hash": "249ab6abbadd5775b4db345d4111a483" + }, + { + "path": "crawl/images/55.jpg", + "hash": "43a8723bab213740211b1704a45b3e7a" + }, + { + "path": "crawl/images/56.jpg", + "hash": "27d00835d39b95543421a1070fff1db9" + }, + { + "path": "crawl/images/57.jpg", + "hash": "e5276244ddf08c6b1ec4cd516b72b679" + }, + { + "path": "crawl/images/58.jpg", + "hash": "8bd116c9d35fd75d2dafd93f8fc41ba7" + }, + { + "path": "crawl/images/59.jpg", + "hash": "af9dba7059394fb29d6cde220b4a81bd" + }, + { + "path": "crawl/images/60.jpg", + "hash": "dc6f1aed35469d818a5baa2376b0d079" + }, + { + "path": "crawl/images/61.jpg", + "hash": "f31def3cd5162c00d30972897298cd46" + }, + { + "path": "crawl/images/62.jpg", + "hash": "515ba871787b905c32c2b9d6bfa80e45" + }, + { + "path": "crawl/images/63.jpg", + "hash": "39e88bc661516e766e9c8f3e67a121a6" + }, + { + "path": "crawl/images/64.jpg", + "hash": "f923d5b7efc1ae8779f1255aae1e2e6d" + }, + { + "path": "crawl/images/65.jpg", + "hash": "a93c9bf77017252a84d15f8eab26d4b2" + }, + { + "path": "crawl/images/66.jpg", + "hash": "acea84f25f75d60627c0ede058eed4b8" + }, + { + "path": "crawl/images/67.jpg", + "hash": "18d416a63e4963b4363ebd9289dd15fc" + }, + { + "path": "crawl/images/68.jpg", + "hash": "cb661d9cd0df77b2a8c5535287224f7f" + }, + { + "path": "crawl/images/69.jpg", + "hash": "8137e5b1174969fd131ea04789fca972" + }, + { + "path": "crawl/images/70.jpg", + "hash": "380c0b89c5baf7dbd0ffef38446a87e8" + }, + { + "path": "crawl/images/71.jpg", + "hash": "60428aa26541efa2250d37d74a874ba6" + }, + { + "path": "crawl/images/72.jpg", + "hash": "bee413357320f096a9853804edd5aeb2" + }, + { + "path": "crawl/images/73.jpg", + "hash": "0fc974698f0be98e9c9920e521f73ce6" + }, + { + "path": "crawl/images/74.jpg", + "hash": "5185af743a9e233a7bee56aa0f7d6a1b" + }, + { + "path": "crawl/images/75.jpg", + "hash": "53ad0b0dce7ff8d90b66336108123d75" + }, + { + "path": "crawl/images/76.jpg", + "hash": "cee00e8f49851ef8a002180100aff3b7" + }, + { + "path": "crawl/images/77.jpg", + "hash": "3b1821d3e01777cda96d1a750f0a5570" + }, + { + "path": "crawl/images/78.jpg", + "hash": "be506707b4730cb4e94480231b46a617" + }, + { + "path": "crawl/images/79.jpg", + "hash": "9ae5ed97053b61541afe79b1ccb11fb5" + }, + { + "path": "crawl/images/80.jpg", + "hash": "f890db4dab16bd14f844d20c9a506245" + }, + { + "path": "crawl/images/81.jpg", + "hash": "f768dcefda04786bbc1be87f1da99d26" + }, + { + "path": "crawl/images/82.jpg", + "hash": "1060692fef8cd0865ec65b71ab4b3598" + }, + { + "path": "crawl/images/83.jpg", + "hash": "6c0e706db231044a2ee659a9003453e2" + }, + { + "path": "crawl/images/84.jpg", + "hash": "b30571c5ec880a98048004a859cf90cf" + }, + { + "path": "crawl/images/85.jpg", + "hash": "9245e2da88ebc134b7e2292068a80cfb" + }, + { + "path": "crawl/images/86.jpg", + "hash": "ca01df832eae89b1501c05373cd67b3d" + }, + { + "path": "crawl/images/87.jpg", + "hash": "40c6e2bcdb0292a52df7215844acfed0" + }, + { + "path": "crawl/images/88.jpg", + "hash": "e1ae322f432c9aa97e3735eb917558d1" + }, + { + "path": "crawl/images/89.jpg", + "hash": "5954888d330068ae2cb700b191223e93" + }, + { + "path": "crawl/images/90.jpg", + "hash": "0cdbaec24ba2753083cb57c4ea94fed6" + }, + { + "path": "crawl/images/91.jpg", + "hash": "f15ef87ab6a4e79e0b9fca132a27d060" + }, + { + "path": "crawl/images/92.jpg", + "hash": "b50d7c226a506e9e91bce322219aa131" + }, + { + "path": "daynight/images/0.png", + "hash": "df437d27f9e78c71b191cdef45502705" + }, + { + "path": "decent_kiss/images/0.png", + "hash": "c7bf01f3d8177d267d9dfd0a61b67007" + }, + { + "path": "dinosaur/images/0.png", + "hash": "dc7945042837325b39b70119ae140d66" + }, + { + "path": "distracted/images/0.png", + "hash": "e43d4c7cd948c5784509e6b90f1588d2" + }, + { + "path": "distracted/images/1.png", + "hash": "795ebc988f75b5cda340dce94cb3f6d7" + }, + { + "path": "distracted/images/2.png", + "hash": "cc15e121923c705a0610099217ee3006" + }, + { + "path": "distracted/images/3.png", + "hash": "fd7036c95a7c1270bcf2d7130fdfc0d7" + }, + { + "path": "divorce/images/0.png", + "hash": "2b142fc47a2cc1cc723a4edb33f7efcf" + }, + { + "path": "dog_dislike/images/0.png", + "hash": "35827740a3ea65f97b93d2f061d83e1a" + }, + { + "path": "dog_dislike/images/1.png", + "hash": "ecc17e318faeb5d7021c929d17cb7c3f" + }, + { + "path": "dog_dislike/images/10.png", + "hash": "f5327b48c973cbd47786bfdee3f174d6" + }, + { + "path": "dog_dislike/images/11.png", + "hash": "9d95df9d048658b4a2125b2f8f5c047d" + }, + { + "path": "dog_dislike/images/12.png", + "hash": "8a0a31faf59a825c3e446f9e149d07d6" + }, + { + "path": "dog_dislike/images/13.png", + "hash": "26ba5b74ba4ad1c07d0b82c6324f20f4" + }, + { + "path": "dog_dislike/images/14.png", + "hash": "6609e749b79759e79ba33d8cfa972dea" + }, + { + "path": "dog_dislike/images/15.png", + "hash": "3a9cd5497911a9eae170c27b0d2103ab" + }, + { + "path": "dog_dislike/images/16.png", + "hash": "a838858849f3ecc6e445f7c7660b2135" + }, + { + "path": "dog_dislike/images/17.png", + "hash": "56872042e75dd8933db319cca6131a32" + }, + { + "path": "dog_dislike/images/18.png", + "hash": "bb71efe90cb233f90f113216464c371b" + }, + { + "path": "dog_dislike/images/19.png", + "hash": "7341f591e6f3579b810590580f2ccc5c" + }, + { + "path": "dog_dislike/images/2.png", + "hash": "15dc7ee7c7ddfe1a6812b42bcdf2b13e" + }, + { + "path": "dog_dislike/images/20.png", + "hash": "8f1115f8e0802e21d6a907e8c6fa4c6f" + }, + { + "path": "dog_dislike/images/21.png", + "hash": "a728c12affba988f97e7889954c5a234" + }, + { + "path": "dog_dislike/images/22.png", + "hash": "911536b2e5f4fa8ec9ed6f03d4d9a35c" + }, + { + "path": "dog_dislike/images/23.png", + "hash": "5bdf690505cc70556d98553c0ce23ed6" + }, + { + "path": "dog_dislike/images/24.png", + "hash": "ec27ee9ede5dc5a9356b7714aab61bf1" + }, + { + "path": "dog_dislike/images/25.png", + "hash": "7054d80e4ae8d79eda8a79704a3b9bdf" + }, + { + "path": "dog_dislike/images/26.png", + "hash": "bb40efd37de6c787792a496eeeda8b77" + }, + { + "path": "dog_dislike/images/27.png", + "hash": "fb19cfe9da5dbe434c5dc5def2274755" + }, + { + "path": "dog_dislike/images/28.png", + "hash": "8d5268184caedd1d3d5c84f579ce6c42" + }, + { + "path": "dog_dislike/images/29.png", + "hash": "62561634bea91d2e2ebd574119467ebf" + }, + { + "path": "dog_dislike/images/3.png", + "hash": "cb2643d1ee8f1a7dbce007f575080d57" + }, + { + "path": "dog_dislike/images/30.png", + "hash": "22caaa2988aae9d92360055d98922477" + }, + { + "path": "dog_dislike/images/31.png", + "hash": "214c0042dc02fca39c2a73ff0ee97b88" + }, + { + "path": "dog_dislike/images/32.png", + "hash": "f852bfd19909a257029313915cac61a9" + }, + { + "path": "dog_dislike/images/33.png", + "hash": "e91d2617174dee464a934e9d226f9a75" + }, + { + "path": "dog_dislike/images/4.png", + "hash": "24e4e99c621db5484739217d929baf79" + }, + { + "path": "dog_dislike/images/5.png", + "hash": "e925b4df8da18d9ec1c5692aabbdcfaa" + }, + { + "path": "dog_dislike/images/6.png", + "hash": "290c421afeafb3a2a58c5c79ee311108" + }, + { + "path": "dog_dislike/images/7.png", + "hash": "5b505a690bba483e1bc3baf30efd790c" + }, + { + "path": "dog_dislike/images/8.png", + "hash": "9913459bd6549513d207ee52682acbdc" + }, + { + "path": "dog_dislike/images/9.png", + "hash": "0a8181770a69adda9c08d45a39cd3d16" + }, + { + "path": "dog_of_vtb/images/0.png", + "hash": "19a16294341eb540a5f48f6972937fc3" + }, + { + "path": "dont_go_near/images/0.png", + "hash": "eb240a7e56142a9e5233f675430b7481" + }, + { + "path": "dont_touch/images/0.png", + "hash": "3ff591ee749dfc208e2c5bf617c47dbe" + }, + { + "path": "dont_touch/images/mask.png", + "hash": "5b3ffca1b7a588a02d2dc4939cd6d31f" + }, + { + "path": "eat/images/0.png", + "hash": "114a3680c42d8818ff645aad63fa5af6" + }, + { + "path": "eat/images/1.png", + "hash": "1d46ae1a4d0080b62554783bfcdbb177" + }, + { + "path": "eat/images/2.png", + "hash": "3248f754830433778ae06df6ba2735d8" + }, + { + "path": "fanatic/images/0.jpg", + "hash": "65803c47845cd55e16cc3b5155d14430" + }, + { + "path": "fencing/images/0.png", + "hash": "494d6744b2fe70a2a24fa5680eab62e7" + }, + { + "path": "fencing/images/1.png", + "hash": "c2352fea73085e5e30465bdbd14e967f" + }, + { + "path": "fencing/images/10.png", + "hash": "bb11fc489bf9c9a5d6d7b6216cf2add7" + }, + { + "path": "fencing/images/11.png", + "hash": "bd2f472a815021ffe09a038256fc3ed6" + }, + { + "path": "fencing/images/12.png", + "hash": "c38fc68dbffa8f811dde76d05e158000" + }, + { + "path": "fencing/images/13.png", + "hash": "05c025367c38dcb56cbddc25dcee5c2c" + }, + { + "path": "fencing/images/14.png", + "hash": "e630633af5f3554a665c7acc700d8062" + }, + { + "path": "fencing/images/15.png", + "hash": "1a992964b9dc0730e3b8e5f6fa8e33c6" + }, + { + "path": "fencing/images/16.png", + "hash": "b2f3d5aae539fb2be6bc93d70361d93c" + }, + { + "path": "fencing/images/17.png", + "hash": "b6305e03a78495edba1787a2fe33cad0" + }, + { + "path": "fencing/images/18.png", + "hash": "0cd2f141d092fe8c2bc703b222275ac0" + }, + { + "path": "fencing/images/2.png", + "hash": "8ef9f2964d620faf379ac3f9556d1ab1" + }, + { + "path": "fencing/images/3.png", + "hash": "b0353f65f1f5c6f0dff890e314fbf866" + }, + { + "path": "fencing/images/4.png", + "hash": "f7f92325df415688edd85295e8ffbf1b" + }, + { + "path": "fencing/images/5.png", + "hash": "d13f10788d9b40353a3e0ea69fe646a5" + }, + { + "path": "fencing/images/6.png", + "hash": "99691ce248fdb3f8ec6365185c88b944" + }, + { + "path": "fencing/images/7.png", + "hash": "8eefb0b92e25340030721db422658c0c" + }, + { + "path": "fencing/images/8.png", + "hash": "8d4c631bc83659ffa3ede9dbf604f65c" + }, + { + "path": "fencing/images/9.png", + "hash": "81f17c9e3396f1d236efdb4d7a45c92f" + }, + { + "path": "fill_head/images/0.jpg", + "hash": "343d9e2f99061c99b8a2cca8a8074c93" + }, + { + "path": "find_chips/images/0.jpg", + "hash": "a8b86967b35a34129dd70a6c81a565e4" + }, + { + "path": "frieren_take/images/0.png", + "hash": "e398b7c3f7088245e4b3772375757beb" + }, + { + "path": "garbage/images/0.png", + "hash": "15a74fc27fc5ad1b2c4f3145aea81be4" + }, + { + "path": "garbage/images/1.png", + "hash": "13ed796e6e5a0f098d385ff5aa9360e2" + }, + { + "path": "garbage/images/10.png", + "hash": "018e992e8409366305d368b0b60d77e8" + }, + { + "path": "garbage/images/11.png", + "hash": "f6ae17fafdfc956645fb3f04deb5dc75" + }, + { + "path": "garbage/images/12.png", + "hash": "db2999727594e3186602b674993955b7" + }, + { + "path": "garbage/images/13.png", + "hash": "8186573633635047b38a8251494e207a" + }, + { + "path": "garbage/images/14.png", + "hash": "0374fac3fc52836b22226b33e10e4651" + }, + { + "path": "garbage/images/15.png", + "hash": "33ca5a42d75a9fc836082f31f059cb07" + }, + { + "path": "garbage/images/16.png", + "hash": "e044d9ad65657d0fadddefa91fe9d9f6" + }, + { + "path": "garbage/images/17.png", + "hash": "a4bcdd0bd939287881e3f6ab0ec5ee9e" + }, + { + "path": "garbage/images/18.png", + "hash": "41a300f7ed6ac9c5258c79ae3b655c45" + }, + { + "path": "garbage/images/19.png", + "hash": "a9adcc4884bf0c54f6acc1c268e89259" + }, + { + "path": "garbage/images/2.png", + "hash": "76adaddd8f25c4ff87af41652fae8426" + }, + { + "path": "garbage/images/20.png", + "hash": "f702cab4e4fb5a12e5c927e081357b01" + }, + { + "path": "garbage/images/21.png", + "hash": "4a8d8ff86119d8765855cf7a4d6ddfb0" + }, + { + "path": "garbage/images/22.png", + "hash": "54a5c78b51335d5cca607eb61114c684" + }, + { + "path": "garbage/images/23.png", + "hash": "712228f18c3fd891779cc53637e51ecb" + }, + { + "path": "garbage/images/24.png", + "hash": "3146fd2df0be2e38b8971c58c51b6cdd" + }, + { + "path": "garbage/images/3.png", + "hash": "9b9b4f0dfc7de061341aa423bacc91f4" + }, + { + "path": "garbage/images/4.png", + "hash": "ed4545859014cbd5f88ff3d8d464406c" + }, + { + "path": "garbage/images/5.png", + "hash": "da3d51b91a7e166c4e6b1a71396dbad3" + }, + { + "path": "garbage/images/6.png", + "hash": "f0ef28426cfd2a62633da02c3e3867c3" + }, + { + "path": "garbage/images/7.png", + "hash": "0a36874457b495812f8a708dc2af5eba" + }, + { + "path": "garbage/images/8.png", + "hash": "6f7f69ba43029a2053bd12fabdcd7a43" + }, + { + "path": "garbage/images/9.png", + "hash": "6749dad6bd2ade275a157a205ef6b860" + }, + { + "path": "genshin_start/images/0.png", + "hash": "7b5b9156e3582217ac185d1b96059c80" + }, + { + "path": "gif_subtitle/images/chanshenzi.gif", + "hash": "1d691ef44c9015b90118d462d8254bcf" + }, + { + "path": "gif_subtitle/images/maikease.gif", + "hash": "6eb2aa718212b23329a43e4bfd70998c" + }, + { + "path": "gif_subtitle/images/nihaosaoa.gif", + "hash": "97d8904891a6c890778b7ff6c467f438" + }, + { + "path": "gif_subtitle/images/qiegewala.gif", + "hash": "286153b55f83fc13f4eb6c7d48252541" + }, + { + "path": "gif_subtitle/images/shishilani.gif", + "hash": "64a1c8167bfd0cb46898bba32225a49b" + }, + { + "path": "gif_subtitle/images/shuifandui.gif", + "hash": "3125a5b21d77fbe5176068f82a82f344" + }, + { + "path": "gif_subtitle/images/wangjingze.gif", + "hash": "96bc6eefc1ec523746ba3ddccfe79833" + }, + { + "path": "gif_subtitle/images/weisuoyuwei.gif", + "hash": "c835e2828b6c050e594592c4f44923e9" + }, + { + "path": "gif_subtitle/images/wunian.gif", + "hash": "ef27895e6f030f6a308d60189aba662d" + }, + { + "path": "gif_subtitle/images/yalidaye.gif", + "hash": "ce1a77bc761384d08324bc94a495d74f" + }, + { + "path": "gif_subtitle/images/zengxiaoxian.gif", + "hash": "aa3dde683bea08ee6fe5fee1d34ae8b1" + }, + { + "path": "good_news/images/0.jpg", + "hash": "bb1631780bd36ea5e2338611d2887800" + }, + { + "path": "gun/images/0.png", + "hash": "23e223aba69b4c42cd04dcae58aec254" + }, + { + "path": "hammer/images/0.png", + "hash": "b8e94050256fc70c57f7167a8bbe3842" + }, + { + "path": "hammer/images/1.png", + "hash": "e87bdd2e1ab714965594486ec7e59273" + }, + { + "path": "hammer/images/2.png", + "hash": "3db04d878be5d2bcc6385419464f8cbe" + }, + { + "path": "hammer/images/3.png", + "hash": "5926fc010853908f2fde98149b1cde26" + }, + { + "path": "hammer/images/4.png", + "hash": "9b10b4ee1c6980260d48489d2edb4b0d" + }, + { + "path": "hammer/images/5.png", + "hash": "4f183ced8935e58b63e65330bce6479a" + }, + { + "path": "hammer/images/6.png", + "hash": "fa99a2c0fd32fc12b53c29b34ecfdc5b" + }, + { + "path": "high_EQ/images/0.jpg", + "hash": "e82b03fd3c5e4b8671c76047c9bcc1ad" + }, + { + "path": "hit_screen/images/0.png", + "hash": "1b77c941f4e0be97f9209b1697af78a3" + }, + { + "path": "hit_screen/images/1.png", + "hash": "2f72e6b3a7ef135bab0d1791740e50ad" + }, + { + "path": "hit_screen/images/10.png", + "hash": "06ee8c86ee5a4fcf1c64f05178d7a9f1" + }, + { + "path": "hit_screen/images/11.png", + "hash": "d9a620a32c4d83ef5124acc4c8f44c0c" + }, + { + "path": "hit_screen/images/12.png", + "hash": "906e33a3efcd9939c8d101d7907ee8d6" + }, + { + "path": "hit_screen/images/13.png", + "hash": "1ab5a1f4460db339b769265eb611a984" + }, + { + "path": "hit_screen/images/14.png", + "hash": "2ab2826e31abfa85e9bed6bd9a29a0fb" + }, + { + "path": "hit_screen/images/15.png", + "hash": "fcf7244d01c15e81f1a10509a57f7421" + }, + { + "path": "hit_screen/images/16.png", + "hash": "f31617015d582e6fb0dc705f3ce9dda1" + }, + { + "path": "hit_screen/images/17.png", + "hash": "595266cf81b8d831defc869588f13866" + }, + { + "path": "hit_screen/images/18.png", + "hash": "edf5600790fb42cde74fc0e08f018d0b" + }, + { + "path": "hit_screen/images/19.png", + "hash": "e69e9768da626a01dda6d5a3d86160c6" + }, + { + "path": "hit_screen/images/2.png", + "hash": "52d6b3e7409df8b840f2b1b1ec096be7" + }, + { + "path": "hit_screen/images/20.png", + "hash": "8079c0064342788af30cd274a52dfa89" + }, + { + "path": "hit_screen/images/21.png", + "hash": "e7fb41be10bef52e718aa4022995732b" + }, + { + "path": "hit_screen/images/22.png", + "hash": "61fd0c02dbc2fee0fb6e47fee48b47bc" + }, + { + "path": "hit_screen/images/23.png", + "hash": "3bcec874887b5f1b730622cb22834cc9" + }, + { + "path": "hit_screen/images/24.png", + "hash": "4660c21bb748574a9cc1d4b25536814c" + }, + { + "path": "hit_screen/images/25.png", + "hash": "f8e28991d35af936974315a1035bcccf" + }, + { + "path": "hit_screen/images/26.png", + "hash": "2561fbdf6d86e0296b2954c28015bf24" + }, + { + "path": "hit_screen/images/27.png", + "hash": "746c182316953d7ab216f0aa960224ef" + }, + { + "path": "hit_screen/images/28.png", + "hash": "0c6dce8b6f078612bfcac807bec83779" + }, + { + "path": "hit_screen/images/3.png", + "hash": "15e94688ebc0649564df9344e900e0ad" + }, + { + "path": "hit_screen/images/4.png", + "hash": "f1dbc36604462cf90604f3143938ab0b" + }, + { + "path": "hit_screen/images/5.png", + "hash": "44dd57fa5d23ff5614a6d98656b31095" + }, + { + "path": "hit_screen/images/6.png", + "hash": "8c66d2df6ce945ef239d3b18a4774b3b" + }, + { + "path": "hit_screen/images/7.png", + "hash": "6e42ce15f6a148273e926e085307a3cc" + }, + { + "path": "hit_screen/images/8.png", + "hash": "e313e4047ff2973817e1a47064a32988" + }, + { + "path": "hit_screen/images/9.png", + "hash": "a6dd680de2644d2fba6dfeeff2c90d1b" + }, + { + "path": "hold_grudge/images/0.png", + "hash": "985187c5c54b553b0af9781bfa7a5514" + }, + { + "path": "hold_tight/images/0.png", + "hash": "6c52f7de5f1a4aca8f1a0e7c5f6dd89b" + }, + { + "path": "hug_leg/images/0.png", + "hash": "bc08d4fd4fa124712006354df0eb092d" + }, + { + "path": "hug_leg/images/1.png", + "hash": "31bd381c73cccd175f1c71497a752870" + }, + { + "path": "hug_leg/images/2.png", + "hash": "49214e16f3150aea1cbc4849576516cd" + }, + { + "path": "hug_leg/images/3.png", + "hash": "83f6f33ead609c270873287ee65b89ca" + }, + { + "path": "hug_leg/images/4.png", + "hash": "74bf0373ac3b8057326722a0cf8fc51c" + }, + { + "path": "hug_leg/images/5.png", + "hash": "3d12cc8ad857617351d2961790e031af" + }, + { + "path": "hutao_bite/images/0.png", + "hash": "bbd32543d177575053100e7b23ac1b27" + }, + { + "path": "hutao_bite/images/1.png", + "hash": "9b108ddc8654bda9c3a3922308be2e07" + }, + { + "path": "imprison/images/0.jpg", + "hash": "7afdc93efbe34a2a9c7e7fc60b8b57a4" + }, + { + "path": "incivilization/images/0.png", + "hash": "352c9534c4ff182174b0b29e7ff7df42" + }, + { + "path": "interview/images/huaji.png", + "hash": "3bb5ff24a83544995edab765c837bec3" + }, + { + "path": "interview/images/microphone.png", + "hash": "34775a82e4b8b7df44d2cf37a6e16ea5" + }, + { + "path": "jiji_king/images/0.png", + "hash": "346ae46e7697540a3bec08c30ad78969" + }, + { + "path": "jiujiu/images/0.png", + "hash": "781d5ebfc9f2309c4cf60ef7b93ecfb8" + }, + { + "path": "jiujiu/images/1.png", + "hash": "c01805a80c726fbc6f9bab364b82e867" + }, + { + "path": "jiujiu/images/2.png", + "hash": "a1bdbc3c5d4830ca6baf459d686e38e3" + }, + { + "path": "jiujiu/images/3.png", + "hash": "b972b1ea12948e76735bed4528dcab46" + }, + { + "path": "jiujiu/images/4.png", + "hash": "30caae291977d2a3121c0a15a3832683" + }, + { + "path": "jiujiu/images/5.png", + "hash": "281b8b7796f579ac907c5923bf8a368b" + }, + { + "path": "jiujiu/images/6.png", + "hash": "eddf5fe3cc1e7470c17e04c8db35168f" + }, + { + "path": "jiujiu/images/7.png", + "hash": "82f7556d03c3e847ec3dd3f1d0915d9f" + }, + { + "path": "karyl_point/images/0.png", + "hash": "9ab82387b8f3cce1acdb57499c49ebe7" + }, + { + "path": "kick_ball/images/0.png", + "hash": "d2b2916d37d2cccd5c9f12ea99da87a7" + }, + { + "path": "kick_ball/images/1.png", + "hash": "509da70e46d631c3353ad525431b7674" + }, + { + "path": "kick_ball/images/10.png", + "hash": "9535ff5344dbf99f1afbf27f0282b2d1" + }, + { + "path": "kick_ball/images/11.png", + "hash": "4af18499194c6436eca8ff0a24944643" + }, + { + "path": "kick_ball/images/12.png", + "hash": "95897fc9e72b3f9ada4cf3ae673cbcdc" + }, + { + "path": "kick_ball/images/13.png", + "hash": "0dd603137fc1de3b18e4c0fd65eda6bb" + }, + { + "path": "kick_ball/images/14.png", + "hash": "fd8164a80326bdd5eee1291767b05ed3" + }, + { + "path": "kick_ball/images/2.png", + "hash": "bd6d20fd03612ba751059157b1966fab" + }, + { + "path": "kick_ball/images/3.png", + "hash": "94990605389da96c2f8168b4c2561562" + }, + { + "path": "kick_ball/images/4.png", + "hash": "6b0071cb715b8bc853ba32cde58a0e73" + }, + { + "path": "kick_ball/images/5.png", + "hash": "80e2a119658a86b1d97a26c2b41d8481" + }, + { + "path": "kick_ball/images/6.png", + "hash": "f573f27a1d7ff5117f2855d34bd225a1" + }, + { + "path": "kick_ball/images/7.png", + "hash": "76d027ec89c7de2b0abeabe84497cd00" + }, + { + "path": "kick_ball/images/8.png", + "hash": "3865dacbe636cb2c56967b1d873752c3" + }, + { + "path": "kick_ball/images/9.png", + "hash": "ca06142edeeafb64a59cd83985d4afd5" + }, + { + "path": "kirby_hammer/images/0.png", + "hash": "4b3d751215727547c9d596370c0cadc6" + }, + { + "path": "kirby_hammer/images/1.png", + "hash": "3e9b3db1325109cd857498cf764ed8b3" + }, + { + "path": "kirby_hammer/images/10.png", + "hash": "252c83ec6328ca49a46bf2cf88481123" + }, + { + "path": "kirby_hammer/images/11.png", + "hash": "410b76d943885f08adbf10f7f054e75f" + }, + { + "path": "kirby_hammer/images/12.png", + "hash": "9ae6ca270a810714a8d7c9dd4099593a" + }, + { + "path": "kirby_hammer/images/13.png", + "hash": "ec99ad3043c7fd3ff77530ee38172eaa" + }, + { + "path": "kirby_hammer/images/14.png", + "hash": "096fe608b0490ed4fcb3f35bd0f74baa" + }, + { + "path": "kirby_hammer/images/15.png", + "hash": "d117358a362f2ddff2d4c22ed88c981a" + }, + { + "path": "kirby_hammer/images/16.png", + "hash": "d80a8e7ab1c123c5ece132d9770de968" + }, + { + "path": "kirby_hammer/images/17.png", + "hash": "9e4d604e25a2da6b99d1840fe7c75602" + }, + { + "path": "kirby_hammer/images/18.png", + "hash": "067baa4f017f15f90d36d15e89f9527f" + }, + { + "path": "kirby_hammer/images/19.png", + "hash": "3907359c33ea79883f36a5aaf2cffc81" + }, + { + "path": "kirby_hammer/images/2.png", + "hash": "2b9c78da812ace9ab756b3ac31bcc2c3" + }, + { + "path": "kirby_hammer/images/20.png", + "hash": "f72fb17d8f0187ab153021b44dd214d9" + }, + { + "path": "kirby_hammer/images/21.png", + "hash": "f2c1b689c31792c862208e0027f5eb3d" + }, + { + "path": "kirby_hammer/images/22.png", + "hash": "d2a986955f38ae165ab7ed5e9eff2c22" + }, + { + "path": "kirby_hammer/images/23.png", + "hash": "9e90dba73e5a018ca0fd222a004b1f5e" + }, + { + "path": "kirby_hammer/images/24.png", + "hash": "94a54a4bb46aef8764dc90b4a914c68e" + }, + { + "path": "kirby_hammer/images/25.png", + "hash": "54bd5065691abd93f8f67e6d4d82654b" + }, + { + "path": "kirby_hammer/images/26.png", + "hash": "984150c2897e2989bd89a4739ee17628" + }, + { + "path": "kirby_hammer/images/27.png", + "hash": "acf235c91c7ae0877531dd5eb1d05e9c" + }, + { + "path": "kirby_hammer/images/28.png", + "hash": "bb8829238a3bbdc892999a9bc3cc0035" + }, + { + "path": "kirby_hammer/images/29.png", + "hash": "de595b27464eac39b387f139daf0240c" + }, + { + "path": "kirby_hammer/images/3.png", + "hash": "f2298d7403dc43180713d7d31de47455" + }, + { + "path": "kirby_hammer/images/30.png", + "hash": "ed48b5f532f17d4419d2eac91787a6e2" + }, + { + "path": "kirby_hammer/images/31.png", + "hash": "e322d5ae9489235c164239ea0c80ea68" + }, + { + "path": "kirby_hammer/images/32.png", + "hash": "cca6150a0e930ac96985d7a33daa47ac" + }, + { + "path": "kirby_hammer/images/33.png", + "hash": "efb182d89025cb064a6d5ab7682975b5" + }, + { + "path": "kirby_hammer/images/34.png", + "hash": "99ca9df71e8a370f192374a057406d37" + }, + { + "path": "kirby_hammer/images/35.png", + "hash": "fdde0008b84eabbcff46a0e59c057105" + }, + { + "path": "kirby_hammer/images/36.png", + "hash": "45b4f1f245216b8670067b9df8df1ea6" + }, + { + "path": "kirby_hammer/images/37.png", + "hash": "206a72ca3b28cc1a50d4414364190bdc" + }, + { + "path": "kirby_hammer/images/38.png", + "hash": "9c5f7a67a182d73e0bc4a3a51b676938" + }, + { + "path": "kirby_hammer/images/39.png", + "hash": "c8eedcaacd133ac50373d45b56f007a7" + }, + { + "path": "kirby_hammer/images/4.png", + "hash": "9b7ab8b7137898c3a3ef680f27c5dac4" + }, + { + "path": "kirby_hammer/images/40.png", + "hash": "080e309ebc305fcd4ee2aabfaf40e6e0" + }, + { + "path": "kirby_hammer/images/41.png", + "hash": "fc6622b31b57c66e5b008d63e6409a94" + }, + { + "path": "kirby_hammer/images/42.png", + "hash": "1d003a0c7b75832ec11849d0192cabd3" + }, + { + "path": "kirby_hammer/images/43.png", + "hash": "fc56793262bf080fe9b8cef629a3acc2" + }, + { + "path": "kirby_hammer/images/44.png", + "hash": "cd3cc7029bffd42fe7119c687be44f2e" + }, + { + "path": "kirby_hammer/images/45.png", + "hash": "96419814c91e3082d1850793b5978f3f" + }, + { + "path": "kirby_hammer/images/46.png", + "hash": "f06d71ebed8e4410fe9139de30612e3e" + }, + { + "path": "kirby_hammer/images/47.png", + "hash": "ac9b4ae0523f7cc80f6ec8545436888c" + }, + { + "path": "kirby_hammer/images/48.png", + "hash": "3592a8851467f316e4b4186a85bbce27" + }, + { + "path": "kirby_hammer/images/49.png", + "hash": "9e5bc3797377a5f4f9385e8c9d55b8d6" + }, + { + "path": "kirby_hammer/images/5.png", + "hash": "3a5ec940f94e19c03879b3b2c21d9959" + }, + { + "path": "kirby_hammer/images/50.png", + "hash": "b0d440755b85428fc2d00537ab79caec" + }, + { + "path": "kirby_hammer/images/51.png", + "hash": "65757c46c224edd93ade8aadf0bfc3c0" + }, + { + "path": "kirby_hammer/images/52.png", + "hash": "c12fe7a7d87912155c9ded3b999752fb" + }, + { + "path": "kirby_hammer/images/53.png", + "hash": "5046fbe65e726be58b1ef243b7111a7d" + }, + { + "path": "kirby_hammer/images/54.png", + "hash": "3500fda8e30e5818cf16576e11be38d8" + }, + { + "path": "kirby_hammer/images/55.png", + "hash": "dec898961403796b4dff81f2af93767f" + }, + { + "path": "kirby_hammer/images/56.png", + "hash": "da4a03072d3f3ac6b2ef6bd0c129ff4c" + }, + { + "path": "kirby_hammer/images/57.png", + "hash": "054c7b45c34819d7c6f086da4b27cf3a" + }, + { + "path": "kirby_hammer/images/58.png", + "hash": "7f2f3d88c96d8f21f47087db40a3156a" + }, + { + "path": "kirby_hammer/images/59.png", + "hash": "4db1b3f61044fc795e6e859da2030321" + }, + { + "path": "kirby_hammer/images/6.png", + "hash": "98602b15bcd486f5d334910791a11ff5" + }, + { + "path": "kirby_hammer/images/60.png", + "hash": "e3e2b230e05b168aeb0c278ce6dea4ed" + }, + { + "path": "kirby_hammer/images/61.png", + "hash": "89e1a31ef24f68d5d8d7cdf5c0e245c5" + }, + { + "path": "kirby_hammer/images/7.png", + "hash": "85f414a42d7c8a991e55ef227ce44c22" + }, + { + "path": "kirby_hammer/images/8.png", + "hash": "3e5886543cdee36c21830fb681568ac1" + }, + { + "path": "kirby_hammer/images/9.png", + "hash": "83a12e09e4c29d23c634c0f11f1823b4" + }, + { + "path": "kiss/images/0.png", + "hash": "49c396692947a52148bcef0ea47f0491" + }, + { + "path": "kiss/images/1.png", + "hash": "f3587ef479ea9243d6370f7a6b30b68b" + }, + { + "path": "kiss/images/10.png", + "hash": "d396dfc1857882f82a5294a3af1d638b" + }, + { + "path": "kiss/images/11.png", + "hash": "84c8d3845fca2efe97cb5f6beb113376" + }, + { + "path": "kiss/images/12.png", + "hash": "9d50e3777af1b60b58fe30009ce29c24" + }, + { + "path": "kiss/images/2.png", + "hash": "97fd783dbe88877952a092199671d514" + }, + { + "path": "kiss/images/3.png", + "hash": "93c7d6c3ca56be70f10eabe92a828120" + }, + { + "path": "kiss/images/4.png", + "hash": "a6079d128ba4c0fb0f332823a36b780b" + }, + { + "path": "kiss/images/5.png", + "hash": "686562b06f7834f6328a2ece1931d85d" + }, + { + "path": "kiss/images/6.png", + "hash": "5d53fa7523b11b2c61450c0b57c5826f" + }, + { + "path": "kiss/images/7.png", + "hash": "e690eac3a3ba1c32f235a64de9f10263" + }, + { + "path": "kiss/images/8.png", + "hash": "2226d16df1e6f42535bb8814919b6e7c" + }, + { + "path": "kiss/images/9.png", + "hash": "2ddacd69e518cdc3b63dc682bffe4d1e" + }, + { + "path": "klee_eat/images/0.png", + "hash": "bd284652faeb1d17a9fe9a96a7eed219" + }, + { + "path": "klee_eat/images/1.png", + "hash": "434dd145519e680ea5a7efd6c46fc181" + }, + { + "path": "klee_eat/images/10.png", + "hash": "57f83d884ef3f5da1b7036e97a77ca31" + }, + { + "path": "klee_eat/images/11.png", + "hash": "8a5807ac9c701f1fe6d8f4acac72db36" + }, + { + "path": "klee_eat/images/12.png", + "hash": "2474538aae3536aa75f00bf49eba6587" + }, + { + "path": "klee_eat/images/13.png", + "hash": "c24d9702f74c06b1e14473542ca0ecea" + }, + { + "path": "klee_eat/images/14.png", + "hash": "ce03d5f6d09e6aba982272187701756e" + }, + { + "path": "klee_eat/images/15.png", + "hash": "30f24c72d721677136805ca01cfdc50e" + }, + { + "path": "klee_eat/images/16.png", + "hash": "36f15c4c9460e7d6b2d41a03ebfa7718" + }, + { + "path": "klee_eat/images/17.png", + "hash": "70023d2f2d0a6018b839a29c70f8710f" + }, + { + "path": "klee_eat/images/18.png", + "hash": "5206043658761fa5ec7479c518a8e369" + }, + { + "path": "klee_eat/images/19.png", + "hash": "c1a2d1db2ffafc850d2d859884437dae" + }, + { + "path": "klee_eat/images/2.png", + "hash": "a187d0bfec4b78787077b8780d91e7b0" + }, + { + "path": "klee_eat/images/20.png", + "hash": "3ba814841c09721cd37e30b8ef9683a5" + }, + { + "path": "klee_eat/images/21.png", + "hash": "578e23bba8cb885c377833aa14562f9d" + }, + { + "path": "klee_eat/images/22.png", + "hash": "8495aa8a2792ac60f6359553c29c1567" + }, + { + "path": "klee_eat/images/23.png", + "hash": "1746365398e99a42860a0a8154a63541" + }, + { + "path": "klee_eat/images/24.png", + "hash": "a594a3457c8c562e5891e721a692c324" + }, + { + "path": "klee_eat/images/25.png", + "hash": "92bbc0ca794e36e10b5e1049884df9ce" + }, + { + "path": "klee_eat/images/26.png", + "hash": "85a9bc64d2a974cb718b9c08c1f84a34" + }, + { + "path": "klee_eat/images/27.png", + "hash": "bd29cf8dd5ba31d77e69904d6456d1c9" + }, + { + "path": "klee_eat/images/28.png", + "hash": "1ff5c07022df2f08355b337209d5464e" + }, + { + "path": "klee_eat/images/29.png", + "hash": "97f45cae4dd2daa2a4d3f00ca561eb58" + }, + { + "path": "klee_eat/images/3.png", + "hash": "dcc1eca20924fcd31012dc38bc2b6429" + }, + { + "path": "klee_eat/images/30.png", + "hash": "8ac8286949b0c765fb8312fee62363a6" + }, + { + "path": "klee_eat/images/4.png", + "hash": "fe507dbb5c909e28c2919d26210225a4" + }, + { + "path": "klee_eat/images/5.png", + "hash": "4b65a362e8465945c7d439c64386abc5" + }, + { + "path": "klee_eat/images/6.png", + "hash": "76244ceeded4c6ea3ffb226cf717be3f" + }, + { + "path": "klee_eat/images/7.png", + "hash": "0e7ce4c9b664d253ec57c1eb579158ef" + }, + { + "path": "klee_eat/images/8.png", + "hash": "ead69b36f949b45cc4c7da801405ae38" + }, + { + "path": "klee_eat/images/9.png", + "hash": "6bc9f15771d52cf1c1bb09e09b9b76a7" + }, + { + "path": "knock/images/0.png", + "hash": "c4e73350a09ac862d8109995436734f4" + }, + { + "path": "knock/images/1.png", + "hash": "d241d1aee02c46b4b9947eb6685822f0" + }, + { + "path": "knock/images/2.png", + "hash": "cc7023dd828227ca6af658639b10ce7e" + }, + { + "path": "knock/images/3.png", + "hash": "06b3459243c79f4c499d3c52929a4b2c" + }, + { + "path": "knock/images/4.png", + "hash": "992619f101424f96cc972b537532d7ce" + }, + { + "path": "knock/images/5.png", + "hash": "9dde5fd9fe478412f51b26344114f33d" + }, + { + "path": "knock/images/6.png", + "hash": "14823b403ee6ade595c4b9c326bf72be" + }, + { + "path": "knock/images/7.png", + "hash": "fa158f632f04f81c4eeeb4766222df07" + }, + { + "path": "learn/images/0.png", + "hash": "548f528b25cfab4e79c36f901227cd59" + }, + { + "path": "lim_x_0/images/0.png", + "hash": "c2f71b246240a101195ab7bc653fc46f" + }, + { + "path": "listen_music/images/0.png", + "hash": "63252e976b3d821f982d8886bd2900c8" + }, + { + "path": "loading/images/icon.png", + "hash": "e85c326ab5c4ca55589761be7b7e990d" + }, + { + "path": "look_this_icon/images/nmsl.png", + "hash": "4f37b38d2a14cbe368b4e427c23aa28d" + }, + { + "path": "lost_dog/images/0.png", + "hash": "4b53a52b609b76f6fff60bd1ee499109" + }, + { + "path": "love_you/images/0.png", + "hash": "66ddcca5601fd9224a1e0d17909ade56" + }, + { + "path": "love_you/images/1.png", + "hash": "3e44083dd543e1380bdc03931b09984d" + }, + { + "path": "luoyonghao_say/images/0.jpg", + "hash": "dce3cd1bc790a4475744b525e728bdd2" + }, + { + "path": "luxun_say/images/0.jpg", + "hash": "fdf0252e7edea0a3186b908af557d2a7" + }, + { + "path": "maimai_awaken/images/0.png", + "hash": "e624223202cfeefff8c6be39f395c9d6" + }, + { + "path": "maimai_join/images/0.png", + "hash": "0b76b5df240115d862fb08425857363b" + }, + { + "path": "make_friend/images/0.png", + "hash": "9b20187a1eb50164c5963fc13146f4ea" + }, + { + "path": "marriage/images/0.png", + "hash": "700e73f2bfc52f205caa46c81c55a1fe" + }, + { + "path": "marriage/images/1.png", + "hash": "b118fe27aec8b9b05fe73cb8c942726e" + }, + { + "path": "meteor/images/0.png", + "hash": "16a32e5a514c4355a164afb05d510fb6" + }, + { + "path": "mihoyo/images/logo.png", + "hash": "681bf981d9181df226ca42354b7b7a85" + }, + { + "path": "mourning/images/0.png", + "hash": "931a7b0cda1cc6aa9dc2fcc6853dea35" + }, + { + "path": "murmur/images/0.jpg", + "hash": "2f37f330f2f6c83ef74505a405f25b87" + }, + { + "path": "my_friend/images/corner1.png", + "hash": "53a18e9da0e4723e876976b06aebe1a2" + }, + { + "path": "my_friend/images/corner2.png", + "hash": "5789f0bfbbfc745f5d5e37b77d911940" + }, + { + "path": "my_friend/images/corner3.png", + "hash": "e6a10dded6652680d878434ca1a19830" + }, + { + "path": "my_friend/images/corner4.png", + "hash": "40a04aa8c2ffb9243119c865ece04cc4" + }, + { + "path": "my_friend/images/label.png", + "hash": "9538d1dd1e7e3befadacc26bbb511754" + }, + { + "path": "my_wife/images/0.png", + "hash": "c6fd08ac07edee816f25a4713758f428" + }, + { + "path": "my_wife/images/1.png", + "hash": "d4f0dca879deb9a02a732c921c6a8abb" + }, + { + "path": "name_generator/images/title.png", + "hash": "770526d5d986cceb04c0516ec5e31bd1" + }, + { + "path": "need/images/0.png", + "hash": "1b1b6fb05731056fc52d9afd3b4877b9" + }, + { + "path": "nekoha_holdsign/images/0.jpg", + "hash": "2f218b1028744b120d6ee6b19664194b" + }, + { + "path": "nijika_holdsign/images/0.jpg", + "hash": "267732c79de6f2b26a7e98146237d67e" + }, + { + "path": "no_response/images/0.png", + "hash": "2d83def33dfe559dcad883f39bfee4cb" + }, + { + "path": "nokia/images/0.jpg", + "hash": "b15f3d10d3b28f9988deb9940b2084cb" + }, + { + "path": "not_call_me/images/0.png", + "hash": "27500542a606e46aa4c218686fd43077" + }, + { + "path": "oshi_no_ko/images/background.png", + "hash": "758bbb5a92d74f0869e64039be575a76" + }, + { + "path": "oshi_no_ko/images/foreground.png", + "hash": "7e0c9250c5294a062ab4e948dbe6261c" + }, + { + "path": "oshi_no_ko/images/text1.png", + "hash": "3819b528aa7d71a3243d95de6152183e" + }, + { + "path": "oshi_no_ko/images/text2.png", + "hash": "f6f7d087081b960c553acd1645d3d6a3" + }, + { + "path": "osu/images/osu.png", + "hash": "b4b0bc153542220204b590cf48736bdd" + }, + { + "path": "overtime/images/0.png", + "hash": "ec2b3f45754ffef5dd334f1e2d21f652" + }, + { + "path": "paint/images/0.png", + "hash": "c819d7bdbada27cc825db68927157b98" + }, + { + "path": "painter/images/0.png", + "hash": "a9b282341ef7222e44ad66cd9a39819c" + }, + { + "path": "pass_the_buck/images/0.png", + "hash": "5f749373afdf58cde70ea2af2d30a714" + }, + { + "path": "pass_the_buck/images/1.png", + "hash": "c966daa812d79ec51ac14ea845b8b910" + }, + { + "path": "pass_the_buck/images/2.png", + "hash": "a85eeded320e6d73ca8681f1a09cb2ec" + }, + { + "path": "pass_the_buck/images/3.png", + "hash": "18e0ee5e536c311bbc89814e73c09e62" + }, + { + "path": "pass_the_buck/images/4.png", + "hash": "b9917d59c00d7c72cd15b44e6f5432cd" + }, + { + "path": "pass_the_buck/images/5.png", + "hash": "d2f837911a2a085538a2d4800dd4650e" + }, + { + "path": "pass_the_buck/images/6.png", + "hash": "b096dc7de13827c73013216d34358be7" + }, + { + "path": "pass_the_buck/images/7.png", + "hash": "30d2811477862856697b2b277390a022" + }, + { + "path": "pat/images/0.png", + "hash": "089f648471c168ed0eadcb5ad1a8a5b0" + }, + { + "path": "pat/images/1.png", + "hash": "7e2aa352d96eee79d7ead97f9f867c58" + }, + { + "path": "pat/images/2.png", + "hash": "8268e18385c30834fad22a44d26bfffd" + }, + { + "path": "pat/images/3.png", + "hash": "afbfb52f564d8e21275d5150ebd7bc19" + }, + { + "path": "pat/images/4.png", + "hash": "184b8669333285cbca11ff02bd5e7938" + }, + { + "path": "pat/images/5.png", + "hash": "f57fb66c9dc205f3a2d60039ed3e81f3" + }, + { + "path": "pat/images/6.png", + "hash": "0bca6a9528efd4c75e069aade9c5d70f" + }, + { + "path": "pat/images/7.png", + "hash": "981681b3d681ca561254e2cbb1b2908b" + }, + { + "path": "pat/images/8.png", + "hash": "92b0a66f1fa6818635772f03a6379788" + }, + { + "path": "pat/images/9.png", + "hash": "2ee0fda7d77e0b5d6c6d65e5974c70dc" + }, + { + "path": "perfect/images/0.png", + "hash": "52548c41f2774afb87bf7aad314e9938" + }, + { + "path": "petpet/images/0.png", + "hash": "aa8401e6dee45a90dd17efac4797355d" + }, + { + "path": "petpet/images/1.png", + "hash": "97cb8b8449b8000edaa5c4380594a611" + }, + { + "path": "petpet/images/2.png", + "hash": "5e2896e5971f1f18410353c63c35bfc5" + }, + { + "path": "petpet/images/3.png", + "hash": "73812f2ec03138254ffed2199d172c9b" + }, + { + "path": "petpet/images/4.png", + "hash": "4cc824d2d50fadc3e7aa83b8f8c01585" + }, + { + "path": "pinch/images/0.png", + "hash": "b7047527f307b338fea39ec386a09f50" + }, + { + "path": "play/images/0.png", + "hash": "4964c0cecc7d5536ac070356531a0f2a" + }, + { + "path": "play/images/1.png", + "hash": "44242083d7d62c88ce1c4df5fa7e2c18" + }, + { + "path": "play/images/10.png", + "hash": "0622967a345a44eb787cb0729430ed1f" + }, + { + "path": "play/images/11.png", + "hash": "d07943ca2dc901e87dd1de1fb57f1522" + }, + { + "path": "play/images/12.png", + "hash": "611d761e98d873f2e0a295273901cb9d" + }, + { + "path": "play/images/13.png", + "hash": "91807f3f15dbd8385022a3967029520d" + }, + { + "path": "play/images/14.png", + "hash": "873c8b4a9d05d1f6869f80ba0efaf4fa" + }, + { + "path": "play/images/15.png", + "hash": "b553976c6c0539afeb354315428211f1" + }, + { + "path": "play/images/16.png", + "hash": "b9eef848ee25631a033023c18f5fb711" + }, + { + "path": "play/images/17.png", + "hash": "b0319ca25761c7b036e81e555d0d350d" + }, + { + "path": "play/images/18.png", + "hash": "2c2d1c73ef7586f3bbaed7083f503171" + }, + { + "path": "play/images/19.png", + "hash": "2678692ef119d151594d6e6b72a21100" + }, + { + "path": "play/images/2.png", + "hash": "70194e8b049eaf52bf64137d402af5b7" + }, + { + "path": "play/images/20.png", + "hash": "e5d12ed9217f3df2d5e8d3f50f692ade" + }, + { + "path": "play/images/21.png", + "hash": "93e8b3a0197f707a0272013c296c45ad" + }, + { + "path": "play/images/22.png", + "hash": "d1e23a1e2f3f67a68f13d514222e8288" + }, + { + "path": "play/images/23.png", + "hash": "027cfd72da7425411f4fbfb45af76e75" + }, + { + "path": "play/images/24.png", + "hash": "ca73fe22c80e4d12f07854456e67500d" + }, + { + "path": "play/images/25.png", + "hash": "79a133301b5aadd29c00ae351eb70258" + }, + { + "path": "play/images/26.png", + "hash": "be4252f16c83933f0f843dbe65c41df1" + }, + { + "path": "play/images/27.png", + "hash": "ca73fe22c80e4d12f07854456e67500d" + }, + { + "path": "play/images/28.png", + "hash": "668b9f971b27685a1fcc06bc6d27d661" + }, + { + "path": "play/images/29.png", + "hash": "027cfd72da7425411f4fbfb45af76e75" + }, + { + "path": "play/images/3.png", + "hash": "1f5064e766aa07cbd0bcc6014e04a363" + }, + { + "path": "play/images/30.png", + "hash": "79a133301b5aadd29c00ae351eb70258" + }, + { + "path": "play/images/31.png", + "hash": "be4252f16c83933f0f843dbe65c41df1" + }, + { + "path": "play/images/32.png", + "hash": "668b9f971b27685a1fcc06bc6d27d661" + }, + { + "path": "play/images/33.png", + "hash": "027cfd72da7425411f4fbfb45af76e75" + }, + { + "path": "play/images/34.png", + "hash": "79a133301b5aadd29c00ae351eb70258" + }, + { + "path": "play/images/35.png", + "hash": "be4252f16c83933f0f843dbe65c41df1" + }, + { + "path": "play/images/36.png", + "hash": "f15c1afc1766b284662e2972caff927e" + }, + { + "path": "play/images/37.png", + "hash": "ca73fe22c80e4d12f07854456e67500d" + }, + { + "path": "play/images/4.png", + "hash": "931b04efcc1786137c24e532f42ed847" + }, + { + "path": "play/images/5.png", + "hash": "e1e185b4450a41b2f0b3a20e7822a87f" + }, + { + "path": "play/images/6.png", + "hash": "53c0d86f536a10a6ad551845e9cb477a" + }, + { + "path": "play/images/7.png", + "hash": "84855b20768e4a8baf8a904898759fa8" + }, + { + "path": "play/images/8.png", + "hash": "12febab0de29bfc49af8f11941eef7a3" + }, + { + "path": "play/images/9.png", + "hash": "8aaa0621bce8a04b4932d997c47bae03" + }, + { + "path": "play_game/images/0.png", + "hash": "aa9ba6ed9b53feb9b655a2db774fa0cf" + }, + { + "path": "police/images/0.png", + "hash": "31a60a25b44407b6a01a07b3cdd3c2de" + }, + { + "path": "police/images/1.png", + "hash": "57959e7d0b0ee6a36f7d6eb39fd37714" + }, + { + "path": "potato/images/0.png", + "hash": "46cc49cf59d8c234489c4493d4d2c6f2" + }, + { + "path": "pound/images/0.png", + "hash": "bc329e320843da1652fa8cbaebc547f6" + }, + { + "path": "pound/images/1.png", + "hash": "1287970496b73b9b8cc581efca214167" + }, + { + "path": "pound/images/2.png", + "hash": "5196cd4b0b7add30d6ee445ef3302bdc" + }, + { + "path": "pound/images/3.png", + "hash": "6de53f69220f12bd575962f98cfcbf89" + }, + { + "path": "pound/images/4.png", + "hash": "363bc7090b8a57a5eca03ce0903cd5be" + }, + { + "path": "pound/images/5.png", + "hash": "e82712a091010daf9805def5a3a87790" + }, + { + "path": "pound/images/6.png", + "hash": "2f577a122a2b94f6a9b13a2746203906" + }, + { + "path": "pound/images/7.png", + "hash": "bbb206934bdec99cc500ccc2cd2d801d" + }, + { + "path": "printing/images/0.png", + "hash": "ac3cff745bbaf446918b84aee688a750" + }, + { + "path": "printing/images/1.png", + "hash": "72da190ca388c9ae96eb884830b4481f" + }, + { + "path": "printing/images/10.png", + "hash": "129583017b8b02ace1340066433cf986" + }, + { + "path": "printing/images/100.png", + "hash": "b6e14377c005356ef57a2e4b07cf7292" + }, + { + "path": "printing/images/101.png", + "hash": "6b1cd000248a907c1291acb96361441e" + }, + { + "path": "printing/images/102.png", + "hash": "8ec22ccdbd0c9dbc858da3dfda4967ff" + }, + { + "path": "printing/images/103.png", + "hash": "b65ecfdbdae3bbc81148bf1228180c2f" + }, + { + "path": "printing/images/104.png", + "hash": "d1fa8d37a18f9f581e9f6b14622ca1a6" + }, + { + "path": "printing/images/105.png", + "hash": "941d0130b5581674813e8404f9509eff" + }, + { + "path": "printing/images/106.png", + "hash": "63adb8500c990b71f3cb77b50375e52f" + }, + { + "path": "printing/images/107.png", + "hash": "c1fe55f6eea0e8c4971f5038318fcdc1" + }, + { + "path": "printing/images/108.png", + "hash": "3620c7b0de8754f8de8708ceedba6b23" + }, + { + "path": "printing/images/109.png", + "hash": "65e3ab016ec0924e1a2739ecbf7d35d1" + }, + { + "path": "printing/images/11.png", + "hash": "2ca1c8654ca6de78f3c4bdcd7d663234" + }, + { + "path": "printing/images/110.png", + "hash": "7f0840cfc51722d11b1843144227efdf" + }, + { + "path": "printing/images/111.png", + "hash": "77031111c9e53996042ef6e908443c15" + }, + { + "path": "printing/images/112.png", + "hash": "1264df4ba6d1325af96ba15477533af7" + }, + { + "path": "printing/images/113.png", + "hash": "8af7d6b59d30692d4e260140603abd93" + }, + { + "path": "printing/images/114.png", + "hash": "2f27ca03f5bf1f601036e5b4de8d9950" + }, + { + "path": "printing/images/12.png", + "hash": "b3c65ab3c51c559928198e17df9badc8" + }, + { + "path": "printing/images/13.png", + "hash": "740fdc5053855d7f1278cba3593ea729" + }, + { + "path": "printing/images/14.png", + "hash": "f6adfc704b7839c3e391396995073af5" + }, + { + "path": "printing/images/15.png", + "hash": "40829d369a13a6b1bfaa38406e492cbe" + }, + { + "path": "printing/images/16.png", + "hash": "6a3c780a61dbfa06f737c597e2abcaf7" + }, + { + "path": "printing/images/17.png", + "hash": "7876c0a5e91d5fecadc61ef526fdab86" + }, + { + "path": "printing/images/18.png", + "hash": "b10a8f8602cf048399db9020bfdd1e75" + }, + { + "path": "printing/images/19.png", + "hash": "ffc2ae5e811fded5c8aefe2d60635ba8" + }, + { + "path": "printing/images/2.png", + "hash": "65c5675d45f77b42afd06f5d28cecdc5" + }, + { + "path": "printing/images/20.png", + "hash": "b5609cde715a76f2857a2f810db1a8df" + }, + { + "path": "printing/images/21.png", + "hash": "7f9e9f595867665d6e793dae66957b37" + }, + { + "path": "printing/images/22.png", + "hash": "94d1cfd2cc404470f4216b3b9d5c09c9" + }, + { + "path": "printing/images/23.png", + "hash": "555fbe5b32b8fabb4dec5b67de806416" + }, + { + "path": "printing/images/24.png", + "hash": "815f6cfa6c8b8bd67e22d25f592f9efb" + }, + { + "path": "printing/images/25.png", + "hash": "fbdb72c2c34bda528c658a64ea87929b" + }, + { + "path": "printing/images/26.png", + "hash": "2711343b873784e8339b1bdfc4fcfb17" + }, + { + "path": "printing/images/27.png", + "hash": "a0e1b20a162997030cca39394f753d83" + }, + { + "path": "printing/images/28.png", + "hash": "33bfd6b64103e85f8f7593df3083d3c6" + }, + { + "path": "printing/images/29.png", + "hash": "822ddd7bb4f08a790cc2dd12def9fd57" + }, + { + "path": "printing/images/3.png", + "hash": "dd7c0fd91b364ec6ab67424f9b290252" + }, + { + "path": "printing/images/30.png", + "hash": "26135ed3ba6a1ea2689d5d456bae8091" + }, + { + "path": "printing/images/31.png", + "hash": "a4618e6f0ba690e19f8eb46fa40c24d8" + }, + { + "path": "printing/images/32.png", + "hash": "0c6b1311b2b87ec4217965aaf0142a67" + }, + { + "path": "printing/images/33.png", + "hash": "9a5328b1a5a9a1661a6d4383485f38a0" + }, + { + "path": "printing/images/34.png", + "hash": "863b57994604481030eeb9fa07917025" + }, + { + "path": "printing/images/35.png", + "hash": "b89e61f0d769c422927e2870ee2a52f7" + }, + { + "path": "printing/images/36.png", + "hash": "b2a12f4258eb4263725b3e9626c1ce0f" + }, + { + "path": "printing/images/37.png", + "hash": "fe7e7592705cfb38f3554af6ce40e676" + }, + { + "path": "printing/images/38.png", + "hash": "b8e553c9741860aa57bb88f7555bf027" + }, + { + "path": "printing/images/39.png", + "hash": "bf27d396f0e0d04a4c93370089a42e27" + }, + { + "path": "printing/images/4.png", + "hash": "91731f63760d20e0f051d57976897bf7" + }, + { + "path": "printing/images/40.png", + "hash": "5eb837747fa0858effde2e64651a14c9" + }, + { + "path": "printing/images/41.png", + "hash": "605b3313f6d3e38949db0e45e5b1a985" + }, + { + "path": "printing/images/42.png", + "hash": "36807f6d13f4c28d35c22eb8f835e4c8" + }, + { + "path": "printing/images/43.png", + "hash": "687f41f2072c26536b70bf35cbc5009b" + }, + { + "path": "printing/images/44.png", + "hash": "2d64170cbc237d3334766ffcbd1e2c54" + }, + { + "path": "printing/images/45.png", + "hash": "d5234d8605636ee02a77780372c7987f" + }, + { + "path": "printing/images/46.png", + "hash": "53d08603e7fa7e02a3741b4635ec7cd3" + }, + { + "path": "printing/images/47.png", + "hash": "bc71ddd856dfd8b24208ab35b7eedc0c" + }, + { + "path": "printing/images/48.png", + "hash": "44ce15c87fea669d5cc48f41429abf12" + }, + { + "path": "printing/images/49.png", + "hash": "ed2ba817c893cd33f465bf7d2e60ecb2" + }, + { + "path": "printing/images/5.png", + "hash": "8a7f6f66b93e58e9feb6e2207bc7e97f" + }, + { + "path": "printing/images/50.png", + "hash": "a0aab0eb666a90665c9cad5951950143" + }, + { + "path": "printing/images/51.png", + "hash": "8ac53fb8acad20be4ac2a89f7fac5f5a" + }, + { + "path": "printing/images/52.png", + "hash": "4eb11b4cc5bed7f74144884253df1fd2" + }, + { + "path": "printing/images/53.png", + "hash": "c7eaa6de72c86e828dd2f128264e6687" + }, + { + "path": "printing/images/54.png", + "hash": "f7131c14f1a5cee663b8980a21a5bffe" + }, + { + "path": "printing/images/55.png", + "hash": "5d8559a47e8580724039777930942e6d" + }, + { + "path": "printing/images/56.png", + "hash": "be35cd4ddd47f5601ce37afbf14a84de" + }, + { + "path": "printing/images/57.png", + "hash": "c8d986b658968045fea08d94c52b15c4" + }, + { + "path": "printing/images/58.png", + "hash": "2c988b171455d149b0ee55bb37c10c80" + }, + { + "path": "printing/images/59.png", + "hash": "f9a40a01d0dc22f6afed309a42357d56" + }, + { + "path": "printing/images/6.png", + "hash": "a0a79ec55b3c75901bd92d6532fe077d" + }, + { + "path": "printing/images/60.png", + "hash": "61a95457564ceb9c76acd4a778ab6cb0" + }, + { + "path": "printing/images/61.png", + "hash": "6bf483eb9155431f7b8a0592818375c2" + }, + { + "path": "printing/images/62.png", + "hash": "2a7c1edb268391bdf1b3a1ec064103e1" + }, + { + "path": "printing/images/63.png", + "hash": "725821184a8defc249382043632f4848" + }, + { + "path": "printing/images/64.png", + "hash": "4f8839993c49489c7eccd0e7b93c3f50" + }, + { + "path": "printing/images/65.png", + "hash": "7de3f303bd6415f46fd9ca4c99c1c2c6" + }, + { + "path": "printing/images/66.png", + "hash": "be3d33ec8caa9ebe286e52480bab794c" + }, + { + "path": "printing/images/67.png", + "hash": "75e5257d44f16697a230dc959554f6c9" + }, + { + "path": "printing/images/68.png", + "hash": "e52e73c209f028c8b9bdd3baf7d025bf" + }, + { + "path": "printing/images/69.png", + "hash": "fa9f2b49b619559effea9e40f5d7ecd4" + }, + { + "path": "printing/images/7.png", + "hash": "001b10e11da922e3ae037074454be1d0" + }, + { + "path": "printing/images/70.png", + "hash": "a753a853c71e1c2f9d872556a14fabff" + }, + { + "path": "printing/images/71.png", + "hash": "8adf4cf372980a71cebd5a195f955e30" + }, + { + "path": "printing/images/72.png", + "hash": "5c45b2906aaee6a42e01fd1ba6799c32" + }, + { + "path": "printing/images/73.png", + "hash": "674d3c828ea55aef6f5403c5962bde88" + }, + { + "path": "printing/images/74.png", + "hash": "8697148fdb62eaf4fcb3ba5d6d6b0d45" + }, + { + "path": "printing/images/75.png", + "hash": "1f574ff3f9fa2fcaaed49348eceff336" + }, + { + "path": "printing/images/76.png", + "hash": "048b2aae09f83ad559ee9c4f733327b5" + }, + { + "path": "printing/images/77.png", + "hash": "adf05d6f80151eef426075490d542689" + }, + { + "path": "printing/images/78.png", + "hash": "b76784a51340993c26222076ae1c7e19" + }, + { + "path": "printing/images/79.png", + "hash": "a896795729718db13a6dddb410c9ce27" + }, + { + "path": "printing/images/8.png", + "hash": "ab3e1334d642043899b90a78c4fd61f9" + }, + { + "path": "printing/images/80.png", + "hash": "a7dc03466b6bd804c503610906c6f853" + }, + { + "path": "printing/images/81.png", + "hash": "bfbc2cc1c6dd88e45c3842fbd1b90873" + }, + { + "path": "printing/images/82.png", + "hash": "5ca48057a33ee011ce9da553da7f926f" + }, + { + "path": "printing/images/83.png", + "hash": "1c658cc34d088660d29ec36df3c39f0d" + }, + { + "path": "printing/images/84.png", + "hash": "ec9221b4772f36dec3f3511fef90bb89" + }, + { + "path": "printing/images/85.png", + "hash": "5717a74c5271a239b39b525d1f7c6601" + }, + { + "path": "printing/images/86.png", + "hash": "ae6aadc1a4ee31717601b6ae9a33b755" + }, + { + "path": "printing/images/87.png", + "hash": "588ab7fd8d58c05a7874b68f67af4363" + }, + { + "path": "printing/images/88.png", + "hash": "3ffc2d672a8e8feb3db6b184c6b8588e" + }, + { + "path": "printing/images/89.png", + "hash": "c8f92188f211f3d13b760ea63bd26f22" + }, + { + "path": "printing/images/9.png", + "hash": "f99c09832d7c0381625174e9a7e0d392" + }, + { + "path": "printing/images/90.png", + "hash": "6690eec00bce15cda128cf846ea212f0" + }, + { + "path": "printing/images/91.png", + "hash": "070ee6cd8529b919b716f07074e0d167" + }, + { + "path": "printing/images/92.png", + "hash": "14bd48c391ae0baad5d3ef3d242f2fb9" + }, + { + "path": "printing/images/93.png", + "hash": "2ea865e0b43b0eba043b6b1b72f6f5c5" + }, + { + "path": "printing/images/94.png", + "hash": "3475397d42b855ebf9fb6500d194761e" + }, + { + "path": "printing/images/95.png", + "hash": "7fa50ae1f73e19ffa7ab5acb84cf9947" + }, + { + "path": "printing/images/96.png", + "hash": "9111106b9cb4a836b81f250446b3142b" + }, + { + "path": "printing/images/97.png", + "hash": "76ba9e5d54ecdb4bb7913563d9d6b7aa" + }, + { + "path": "printing/images/98.png", + "hash": "61aff8c626615c3fcae399c4e9874030" + }, + { + "path": "printing/images/99.png", + "hash": "0cf63257d2a31dc023d15e718e433300" + }, + { + "path": "prpr/images/0.png", + "hash": "0375726f9e7c54b6993129b790e7adcc" + }, + { + "path": "psyduck/images/0.jpg", + "hash": "6202ec5410070dc4c555da8f96bed178" + }, + { + "path": "psyduck/images/1.jpg", + "hash": "4bbd69e7d760ceb020ea183703ee3c4f" + }, + { + "path": "psyduck/images/10.jpg", + "hash": "2b88c97afddc019a361948db1d294c09" + }, + { + "path": "psyduck/images/11.jpg", + "hash": "443509125b7c6bf2f8d7bd2de1850e8f" + }, + { + "path": "psyduck/images/12.jpg", + "hash": "450c7e24cd5782923d5fc43ed6059274" + }, + { + "path": "psyduck/images/13.jpg", + "hash": "4d3c4db8e6d5603a670c1fda698d2a65" + }, + { + "path": "psyduck/images/14.jpg", + "hash": "fb05987bc8e71c10ea14945f5773998f" + }, + { + "path": "psyduck/images/15.jpg", + "hash": "d41d59768debb11cce3b8ddd459d9f73" + }, + { + "path": "psyduck/images/16.jpg", + "hash": "cb748afc1be5c6a24631e834e65dc788" + }, + { + "path": "psyduck/images/17.jpg", + "hash": "c907167d37716a05f9b98f67c738b5f9" + }, + { + "path": "psyduck/images/2.jpg", + "hash": "bcdada499bee10b55bcf89f3c4203c41" + }, + { + "path": "psyduck/images/3.jpg", + "hash": "2c56d83e9c28ecff169f2bc2934b7e51" + }, + { + "path": "psyduck/images/4.jpg", + "hash": "7d2d686127e5ecbdca634859f044b245" + }, + { + "path": "psyduck/images/5.jpg", + "hash": "44ef8e53403baed0104ec7be98a255f1" + }, + { + "path": "psyduck/images/6.jpg", + "hash": "1e5a3c85df09b32b7ba5e8b3e62aaa67" + }, + { + "path": "psyduck/images/7.jpg", + "hash": "4447c7004f6a34fe1dfa973899b74593" + }, + { + "path": "psyduck/images/8.jpg", + "hash": "567f517d1674346c98bd223b11549c93" + }, + { + "path": "psyduck/images/9.jpg", + "hash": "5d9e85e3e70a8f2488070a19b703452d" + }, + { + "path": "punch/images/0.png", + "hash": "5c50071615149514b42f692aea9d9290" + }, + { + "path": "punch/images/1.png", + "hash": "84e6a624d4546bfcc85c5544ee252c2b" + }, + { + "path": "punch/images/10.png", + "hash": "8c6f3c2838078b5c7241fdd5316f4363" + }, + { + "path": "punch/images/11.png", + "hash": "f25db4a8ee3a9ab72d57f434aa0ca865" + }, + { + "path": "punch/images/12.png", + "hash": "85aee422feae35c368fed239a2b1b0e0" + }, + { + "path": "punch/images/2.png", + "hash": "4c8c9b99f640c78cc634ae4c34191070" + }, + { + "path": "punch/images/3.png", + "hash": "412ac6464392446a77af45c6980e5228" + }, + { + "path": "punch/images/4.png", + "hash": "58c5395c3275558187d0c07c8e59b8b1" + }, + { + "path": "punch/images/5.png", + "hash": "f6a16aaf1d0c0f7239fb12d8f10400a7" + }, + { + "path": "punch/images/6.png", + "hash": "e827982690eaa7703178649a9f7d035b" + }, + { + "path": "punch/images/7.png", + "hash": "0086c46b42a8910c475615ce6c5a98a1" + }, + { + "path": "punch/images/8.png", + "hash": "ee9f371aff7718d1ed2dce523d2f89a0" + }, + { + "path": "punch/images/9.png", + "hash": "f17f4a89f7fed4ff5360b7a566303cd1" + }, + { + "path": "raise_image/images/raise_image.png", + "hash": "53034eae1c09898b82c778c1ea420139" + }, + { + "path": "raise_sign/images/0.jpg", + "hash": "e8151cf81d9c6944e38de9652f5ac409" + }, + { + "path": "read_book/images/0.png", + "hash": "c0bfd676ec62f8ef1a2e2c98244681ba" + }, + { + "path": "repeat/images/0.jpg", + "hash": "b3dabf0c895201454e66011eb88459ff" + }, + { + "path": "rip/images/0.png", + "hash": "ce5cab4dddc51f7c1627e5d135dc6336" + }, + { + "path": "rip/images/1.png", + "hash": "91cfac98b3e2857988c727c03ce76418" + }, + { + "path": "rip_angrily/images/0.png", + "hash": "0c58878dfbe96bdc8a4f8cb3a5d9ae79" + }, + { + "path": "rise_dead/images/0.png", + "hash": "bb4da42954caf82707ae808e07101365" + }, + { + "path": "rise_dead/images/1.png", + "hash": "b10c173d27820716bfa62c906d2fdfe0" + }, + { + "path": "rise_dead/images/10.png", + "hash": "ebc7017ada9ba2d340988a41def17a31" + }, + { + "path": "rise_dead/images/11.png", + "hash": "064625a135258a8525e23cdc44040157" + }, + { + "path": "rise_dead/images/12.png", + "hash": "78c77f0495aa78756ed7e1909009b2f6" + }, + { + "path": "rise_dead/images/13.png", + "hash": "86b71d80dea3789312eba925ea7e3b56" + }, + { + "path": "rise_dead/images/14.png", + "hash": "05993f523cdcceb0ec8bc9e6656c1f49" + }, + { + "path": "rise_dead/images/15.png", + "hash": "ac00807a618031c7f76928526503451f" + }, + { + "path": "rise_dead/images/16.png", + "hash": "8983a7c0ffd8b6ebd12fc2339c2edfeb" + }, + { + "path": "rise_dead/images/17.png", + "hash": "f3f90643dacf3f515bb6524fc87c7535" + }, + { + "path": "rise_dead/images/18.png", + "hash": "5f0b03fe62967453b1b9020ac056440d" + }, + { + "path": "rise_dead/images/19.png", + "hash": "347769d325378397d07e3532969eb868" + }, + { + "path": "rise_dead/images/2.png", + "hash": "0bc0586166d67e6a316228514d4fcb7d" + }, + { + "path": "rise_dead/images/20.png", + "hash": "0b7b35f43230dd8978969173b394d5ee" + }, + { + "path": "rise_dead/images/21.png", + "hash": "0f2e2388b681dbbd1d31fda06684e0b5" + }, + { + "path": "rise_dead/images/22.png", + "hash": "db7f48285b432b21535e8c96cb9d184c" + }, + { + "path": "rise_dead/images/23.png", + "hash": "f5d5737d78644c9f67029da754ca0ebf" + }, + { + "path": "rise_dead/images/24.png", + "hash": "6145e4ab2f5b0f92586b68b7f85ddc5e" + }, + { + "path": "rise_dead/images/25.png", + "hash": "5585c88626e8412b78bf4c51d045c2c1" + }, + { + "path": "rise_dead/images/26.png", + "hash": "be925adadeb85d0a3dce380f522440ef" + }, + { + "path": "rise_dead/images/27.png", + "hash": "339666a1146653e04cb89991310afc60" + }, + { + "path": "rise_dead/images/28.png", + "hash": "b3136958aa2f24b4c74b21a0e79bcd64" + }, + { + "path": "rise_dead/images/29.png", + "hash": "89c73842fa2b0390acbcac79014b849b" + }, + { + "path": "rise_dead/images/3.png", + "hash": "425bb05e042774c00b77a697733f9902" + }, + { + "path": "rise_dead/images/30.png", + "hash": "b36b2c85161ac3d73ece81485a725b25" + }, + { + "path": "rise_dead/images/31.png", + "hash": "dd172233ca3a26d5729ca48f8e212362" + }, + { + "path": "rise_dead/images/32.png", + "hash": "b4a080295ec55dc4e790d7f2eeaa5c88" + }, + { + "path": "rise_dead/images/33.png", + "hash": "b65493e53df17f3a9637b3e73996c111" + }, + { + "path": "rise_dead/images/4.png", + "hash": "8496a9a5c3d2a82ddaabdb477096d213" + }, + { + "path": "rise_dead/images/5.png", + "hash": "325cc724fe6e4a38dc89c08bb95aee06" + }, + { + "path": "rise_dead/images/6.png", + "hash": "23490018d2317c7feae489de998ac222" + }, + { + "path": "rise_dead/images/7.png", + "hash": "08994770e161777e630fd5436eb1e418" + }, + { + "path": "rise_dead/images/8.png", + "hash": "03c5ca3f5c0a26ea9e7c95892ff4c391" + }, + { + "path": "rise_dead/images/9.png", + "hash": "401693c6a4e254609bd2bff9864ea0ce" + }, + { + "path": "roll/images/0.png", + "hash": "4b7bd23b3f9d4c2ab7d36885a6edf21a" + }, + { + "path": "roll/images/1.png", + "hash": "19aa54e138172a2ddf7f031da195ebf1" + }, + { + "path": "roll/images/2.png", + "hash": "fa009d3c3dc2645600b3b8ba2200c240" + }, + { + "path": "roll/images/3.png", + "hash": "72ddb67a4589290b6cc7c2591c163401" + }, + { + "path": "roll/images/4.png", + "hash": "3d0292a3e7bfc90e32aa320f85d906e0" + }, + { + "path": "roll/images/5.png", + "hash": "5767ba5025f85dc60b65c1e448f4c243" + }, + { + "path": "roll/images/6.png", + "hash": "b1babecdb8a977ba477c033b9d929b73" + }, + { + "path": "roll/images/7.png", + "hash": "c0475533dc1e6282dfa50e7ee5f6d150" + }, + { + "path": "rub/images/0.png", + "hash": "a9b12cb6b809ae7bce00f90776a0366b" + }, + { + "path": "rub/images/1.png", + "hash": "dcaa808bd4d89084ab341ee5589dab75" + }, + { + "path": "rub/images/2.png", + "hash": "8e8eb0d22991b02c96b4098210a861ee" + }, + { + "path": "rub/images/3.png", + "hash": "4039152492625de12a188e0d80a2fc9c" + }, + { + "path": "rub/images/4.png", + "hash": "b80153e63c7918ae5b59aa2287803a94" + }, + { + "path": "rub/images/5.png", + "hash": "910edf679e3b3bf292a7f3a86fe878c0" + }, + { + "path": "run/images/0.png", + "hash": "8504969b4b3d302c15e37ab7033591a7" + }, + { + "path": "safe_sense/images/0.png", + "hash": "83653a8efa58498ae0ff8ea806e523ad" + }, + { + "path": "scratch_head/images/0.png", + "hash": "a72596f3beff01eaa56d20458175cf7b" + }, + { + "path": "scratch_head/images/1.png", + "hash": "7e2ffe8187564dd18cdbd7826c4cc264" + }, + { + "path": "scratch_head/images/2.png", + "hash": "53293a097661db4412b2cd4fd4d50b49" + }, + { + "path": "scratch_head/images/3.png", + "hash": "473644e2d0a98e9e4c6149485c7f57c1" + }, + { + "path": "scratch_head/images/4.png", + "hash": "4dc269cf571fe1ed75082ccb90acb5d5" + }, + { + "path": "scratch_head/images/5.png", + "hash": "477528b65f0672b6c98a285455c727c3" + }, + { + "path": "scratchcard/images/0.png", + "hash": "0a9f099c2ff528543c6c8a7cfb2566aa" + }, + { + "path": "scratchcard/images/1.png", + "hash": "8b4dd8c62fe06b2accb2ca8d79102e3a" + }, + { + "path": "scroll/images/corner1.png", + "hash": "53a18e9da0e4723e876976b06aebe1a2" + }, + { + "path": "scroll/images/corner2.png", + "hash": "5789f0bfbbfc745f5d5e37b77d911940" + }, + { + "path": "scroll/images/corner3.png", + "hash": "e6a10dded6652680d878434ca1a19830" + }, + { + "path": "scroll/images/corner4.png", + "hash": "40a04aa8c2ffb9243119c865ece04cc4" + }, + { + "path": "shutup/images/0.jpg", + "hash": "79462d2472da56f64f056b7c16b43b04" + }, + { + "path": "sit_still/images/0.png", + "hash": "7c80de7e9f83c87b8f099fda676cafde" + }, + { + "path": "slap/images/0.jpg", + "hash": "bca036d3b7a5de25c57e92525891c3e7" + }, + { + "path": "slogan/images/0.jpg", + "hash": "93e06a80b22c3b796f3bb90c590f8cd6" + }, + { + "path": "smash/images/0.png", + "hash": "f14a1ff64015a1cd5cf752e80e5cf367" + }, + { + "path": "step_on/images/0.png", + "hash": "560c088afdbeff7f0321455b0640b938" + }, + { + "path": "step_on/images/1.png", + "hash": "9ce4e4cee75d6d30385d7bd1b50b3882" + }, + { + "path": "step_on/images/2.png", + "hash": "2c3531495de3bfb2c0a631db0e2a6bf1" + }, + { + "path": "step_on/images/3.png", + "hash": "a6a77178a80d9cffdb4292901dc6cb14" + }, + { + "path": "step_on/images/4.png", + "hash": "f052852fa07b20fa4d9d48a7d8249d87" + }, + { + "path": "stew/images/0.png", + "hash": "7c4a16eda8b772b6b544060169dd3525" + }, + { + "path": "suck/images/0.png", + "hash": "848d6fe194940dc2fef9db9a354fb126" + }, + { + "path": "suck/images/1.png", + "hash": "74739c77b17df646533133ab49174379" + }, + { + "path": "suck/images/10.png", + "hash": "76688f982ae2e1c7e878ba185fcddd7d" + }, + { + "path": "suck/images/11.png", + "hash": "d1723c022b984588853956ad454c0eba" + }, + { + "path": "suck/images/2.png", + "hash": "a13a413108cc0e319449d549df0533f2" + }, + { + "path": "suck/images/3.png", + "hash": "5663af4b29aed543cbab978154d46a6c" + }, + { + "path": "suck/images/4.png", + "hash": "e51457c880f8bac176d7adcce7c2374f" + }, + { + "path": "suck/images/5.png", + "hash": "1d7a90731644d866ca75975da0b9b074" + }, + { + "path": "suck/images/6.png", + "hash": "95f8124f3135e813c1273b6261a49855" + }, + { + "path": "suck/images/7.png", + "hash": "138eb577148a6e2ffa7e9b21de644395" + }, + { + "path": "suck/images/8.png", + "hash": "e58d096d494249b94565a122b6bfc1e6" + }, + { + "path": "suck/images/9.png", + "hash": "35d5c2a770ca62666d054f7de229c01b" + }, + { + "path": "support/images/0.png", + "hash": "f82b0d023e4aab41df6159db726f4ae3" + }, + { + "path": "tankuku_raisesign/images/0.png", + "hash": "e4eac3dbf019343f3dd02597e982707d" + }, + { + "path": "tankuku_raisesign/images/1.png", + "hash": "896acaf1cc2cab04833244b89cb8dca7" + }, + { + "path": "tankuku_raisesign/images/10.png", + "hash": "e775c695c9875a67106d5f7f421def85" + }, + { + "path": "tankuku_raisesign/images/11.png", + "hash": "067068e71e648e0e79ef280e1bc49fc2" + }, + { + "path": "tankuku_raisesign/images/12.png", + "hash": "0dcb44d94c9422d1c2f5b37b7d0409c7" + }, + { + "path": "tankuku_raisesign/images/13.png", + "hash": "41fd25672049e69721d9f626247d4ac8" + }, + { + "path": "tankuku_raisesign/images/14.png", + "hash": "f798a270ffe2a4992e8ac23c4e749dc4" + }, + { + "path": "tankuku_raisesign/images/2.png", + "hash": "d60603b9dce7924f237c7610c636b6d0" + }, + { + "path": "tankuku_raisesign/images/3.png", + "hash": "c9eaf5c44495cd5b2e3a53e92dca9037" + }, + { + "path": "tankuku_raisesign/images/4.png", + "hash": "eadb1e2419fe3b138b83ac72d26c175f" + }, + { + "path": "tankuku_raisesign/images/5.png", + "hash": "31511f3f3bd656f0481cc43579806f69" + }, + { + "path": "tankuku_raisesign/images/6.png", + "hash": "140f1de7f05e51ca0024b7147978e5a6" + }, + { + "path": "tankuku_raisesign/images/7.png", + "hash": "7c595f3e0855121586e0e1d132a570f6" + }, + { + "path": "tankuku_raisesign/images/8.png", + "hash": "cbfc69c8c36e6b40b1f6d2b5de48cdd7" + }, + { + "path": "tankuku_raisesign/images/9.png", + "hash": "7b43a1b2f5c738b821224919141318dc" + }, + { + "path": "taunt/images/0.png", + "hash": "5c7c1026ecca7ec754ecdf622bdbcec9" + }, + { + "path": "teach/images/0.png", + "hash": "d035c0cb0ffcc2487cc563d9222fe37e" + }, + { + "path": "tease/images/0.png", + "hash": "8251e76997777ce41acf17ff15af23fd" + }, + { + "path": "tease/images/1.png", + "hash": "9d647800cdeedc8f3c5b1b776a7cccb0" + }, + { + "path": "tease/images/10.png", + "hash": "057cfbfad82bb0b0908007ebfed287a5" + }, + { + "path": "tease/images/11.png", + "hash": "da37ae44aed77e31d728b67661617ad5" + }, + { + "path": "tease/images/12.png", + "hash": "7b5aed610a21aa724d51b42b72a65c38" + }, + { + "path": "tease/images/13.png", + "hash": "78cb78fd9a69b688f32035c04b823799" + }, + { + "path": "tease/images/14.png", + "hash": "f35d24e56efebef538d35710f00e6705" + }, + { + "path": "tease/images/15.png", + "hash": "208655c7486c4a84e431001034d34f36" + }, + { + "path": "tease/images/16.png", + "hash": "2885f985790cb8faa62245a6eae275d5" + }, + { + "path": "tease/images/17.png", + "hash": "0ea6cec2b18fdf9c1114e478327735ce" + }, + { + "path": "tease/images/18.png", + "hash": "8d5d40c3632d608229f4654598504c2c" + }, + { + "path": "tease/images/19.png", + "hash": "2af25b9cd739f125ed554da6d42a57e4" + }, + { + "path": "tease/images/2.png", + "hash": "7082394ff52b33cda2cb8331d13abdb0" + }, + { + "path": "tease/images/20.png", + "hash": "73555cf10c26253029e27d6357ff7a68" + }, + { + "path": "tease/images/21.png", + "hash": "1ed333486a248a18a84348c7f5629639" + }, + { + "path": "tease/images/22.png", + "hash": "180f319575c668818299fbb7354665e6" + }, + { + "path": "tease/images/23.png", + "hash": "41a81c881a2a9b2232f36d7fe7f640c3" + }, + { + "path": "tease/images/3.png", + "hash": "9df8b76fba5c7efad4d2d41182ed23ec" + }, + { + "path": "tease/images/4.png", + "hash": "ecca01e1ea93aacf2b993eeac4c8a9a3" + }, + { + "path": "tease/images/5.png", + "hash": "f8b89e4d9227c84aab6327595e262341" + }, + { + "path": "tease/images/6.png", + "hash": "3581909eee488e81c478575b83366856" + }, + { + "path": "tease/images/7.png", + "hash": "efade3fa3148c398d3f7dbf7cb0b7ce2" + }, + { + "path": "tease/images/8.png", + "hash": "b731fabc810ff894d8204bb3d5070068" + }, + { + "path": "tease/images/9.png", + "hash": "841db44a3ea19ca016ba21a0f4d71564" + }, + { + "path": "telescope/images/0.png", + "hash": "c41e9d05c444d778ac6c86db0d85f937" + }, + { + "path": "telescope/images/1.png", + "hash": "d5e42e7fe9212ec737ddb6e73613ab21" + }, + { + "path": "telescope/images/10.png", + "hash": "5bb50ce60aba42514a271503320b203f" + }, + { + "path": "telescope/images/11.png", + "hash": "3fdc0118fa8a71150675b7e70e3d7dd6" + }, + { + "path": "telescope/images/12.png", + "hash": "67a5fdb48731d80b958ba805b100dd74" + }, + { + "path": "telescope/images/13.png", + "hash": "446b870ace6e7c9e78792e8bc5c608a8" + }, + { + "path": "telescope/images/14.png", + "hash": "9ca7f58e9b07574d53528a10c8b5fc93" + }, + { + "path": "telescope/images/15.png", + "hash": "cce35b572e61fc70e6e265f40dd526be" + }, + { + "path": "telescope/images/16.png", + "hash": "3657a2c04641dc129b350836fe41e4aa" + }, + { + "path": "telescope/images/17.png", + "hash": "3f8da97862268ca384307636a996d556" + }, + { + "path": "telescope/images/18.png", + "hash": "0ea9033660f0fbb60c6a06ae108726a8" + }, + { + "path": "telescope/images/19.png", + "hash": "d500027a9ba87976598aeb234d24891f" + }, + { + "path": "telescope/images/2.png", + "hash": "8df0021b4326694de69062b51cb517ab" + }, + { + "path": "telescope/images/20.png", + "hash": "06e08ecea85d6b86dba79bf2b91d16b5" + }, + { + "path": "telescope/images/21.png", + "hash": "dcd0d48e26975676fccf6c863524a23f" + }, + { + "path": "telescope/images/22.png", + "hash": "0c24d750e8eab9e24e597bb4b0d907e4" + }, + { + "path": "telescope/images/23.png", + "hash": "c93bacb6b5e79b1f1da8580944e57fbe" + }, + { + "path": "telescope/images/24.png", + "hash": "2d8650c6e75f74a8db0103d8635de8d8" + }, + { + "path": "telescope/images/25.png", + "hash": "57ef55cebaa899f9695e26359df58089" + }, + { + "path": "telescope/images/26.png", + "hash": "aa5ffbbfe4360fd8c14726d13d7d692a" + }, + { + "path": "telescope/images/27.png", + "hash": "71ca4f6a38a46bb00bd81a1e755045b7" + }, + { + "path": "telescope/images/28.png", + "hash": "dece33149e54e3e94f5abfada94bc1f2" + }, + { + "path": "telescope/images/29.png", + "hash": "c2e917d6e003142516f6068e6f9cb49e" + }, + { + "path": "telescope/images/3.png", + "hash": "5cd191af1597680d28d675b1b4eb4378" + }, + { + "path": "telescope/images/30.png", + "hash": "6b4ea969d8c41440f94a675fcd85a4c1" + }, + { + "path": "telescope/images/31.png", + "hash": "17522a458bc5ddd75d79414568f171b0" + }, + { + "path": "telescope/images/32.png", + "hash": "c8343923db91cd85967fa0a0d4335247" + }, + { + "path": "telescope/images/33.png", + "hash": "a5e343f8d7e91e05c74b1327ee4f2b0c" + }, + { + "path": "telescope/images/34.png", + "hash": "3853c070a1af62d58de4083d6f04e7ca" + }, + { + "path": "telescope/images/35.png", + "hash": "535422a6063c069864421df59ddfb15e" + }, + { + "path": "telescope/images/36.png", + "hash": "9846f13d97b218f549b07807a7277968" + }, + { + "path": "telescope/images/37.png", + "hash": "60bc61a0b77914557b4f7d3284f2f95d" + }, + { + "path": "telescope/images/38.png", + "hash": "db53ced6558f9ba28bd181bf7f6f50b0" + }, + { + "path": "telescope/images/39.png", + "hash": "766a622239beeb73c7669552c73f49e3" + }, + { + "path": "telescope/images/4.png", + "hash": "663b56a5a899d4943360be75a9d53856" + }, + { + "path": "telescope/images/40.png", + "hash": "28fe99b118c43a866ffdd55e7cf238d0" + }, + { + "path": "telescope/images/41.png", + "hash": "bb3af2fb3610230f2cd3e3bbd311e6e2" + }, + { + "path": "telescope/images/42.png", + "hash": "35d25cc4cb886c788775538b0e72e70c" + }, + { + "path": "telescope/images/43.png", + "hash": "bbb676417efac800988dc52280ce97d3" + }, + { + "path": "telescope/images/44.png", + "hash": "84af1d5cd1ce5322f20c3db22f343e64" + }, + { + "path": "telescope/images/45.png", + "hash": "738a8c19b8e26957e9900f6bca6b8642" + }, + { + "path": "telescope/images/46.png", + "hash": "7f938fe9839f320f6803e010382ca970" + }, + { + "path": "telescope/images/47.png", + "hash": "ef2522dbbbbb6ead80b385d2291a5e7e" + }, + { + "path": "telescope/images/48.png", + "hash": "546585028688db040304f06aa46ba667" + }, + { + "path": "telescope/images/49.png", + "hash": "1922d2e593643751701a99580bad4562" + }, + { + "path": "telescope/images/5.png", + "hash": "ba77bcfd62b0a2638c02a230fee2a009" + }, + { + "path": "telescope/images/50.png", + "hash": "2992e0ac616466e3d718836336a65e2a" + }, + { + "path": "telescope/images/51.png", + "hash": "493805462c4ddd56d2c6306385a65fb4" + }, + { + "path": "telescope/images/52.png", + "hash": "359f24e690906ff6760ddf1bd3d3d0b1" + }, + { + "path": "telescope/images/53.png", + "hash": "607838cf2a597b475cd6a29c75ab7eba" + }, + { + "path": "telescope/images/54.png", + "hash": "63e469d400a4913d85adba44155f65a0" + }, + { + "path": "telescope/images/55.png", + "hash": "bb97c3206dbad69e82ba1acdb5139f0e" + }, + { + "path": "telescope/images/56.png", + "hash": "f2cf92bcae512b48eea03b04af141c9f" + }, + { + "path": "telescope/images/57.png", + "hash": "792144594600379d326b64b92aa380a2" + }, + { + "path": "telescope/images/58.png", + "hash": "9790ae7260c2e8fbbd8a899e6f012a26" + }, + { + "path": "telescope/images/59.png", + "hash": "f5cf648e96fa8876a1c0242b447abc69" + }, + { + "path": "telescope/images/6.png", + "hash": "d886c9af9f875db9db93c835d69a5738" + }, + { + "path": "telescope/images/60.png", + "hash": "7fe21f8f3339667a99436b04da11eb7e" + }, + { + "path": "telescope/images/61.png", + "hash": "75a5a387ff70ad55d3b8de40fc7bb12d" + }, + { + "path": "telescope/images/62.png", + "hash": "b85dd020220b0ea23299be533b3264c6" + }, + { + "path": "telescope/images/63.png", + "hash": "b04839373a4f2ab6b975718b443983af" + }, + { + "path": "telescope/images/64.png", + "hash": "ffc1fd5129af31e5ecec98326a735a23" + }, + { + "path": "telescope/images/65.png", + "hash": "feacc00332b05c643541d1adf7f425c6" + }, + { + "path": "telescope/images/66.png", + "hash": "510c6bf8bb18ed960dd093c61188f18b" + }, + { + "path": "telescope/images/67.png", + "hash": "4d3f87379a919d9ada48811a413ae1b1" + }, + { + "path": "telescope/images/68.png", + "hash": "df2f6728bb098b5911c1fdde2b3868ea" + }, + { + "path": "telescope/images/7.png", + "hash": "b4faee5ebd2c1a0060e8a33c5b8a0173" + }, + { + "path": "telescope/images/8.png", + "hash": "2fbea6ed0a789d20487180ad4a76532d" + }, + { + "path": "telescope/images/9.png", + "hash": "31443a497fbb036767f0c367f65f960d" + }, + { + "path": "think_what/images/0.png", + "hash": "550c3e7829033511873a12d0a8e25447" + }, + { + "path": "this_chicken/images/0.png", + "hash": "ed79b572dd871fa72d815bd646c4f48b" + }, + { + "path": "throw/images/0.png", + "hash": "b3e1c12b34acc44e1dd63ce05330025e" + }, + { + "path": "throw_gif/images/0.png", + "hash": "1f0eab0cb4b06609712c14e788209b58" + }, + { + "path": "throw_gif/images/1.png", + "hash": "8d7168433eaa08d827d4165a1f47f76a" + }, + { + "path": "throw_gif/images/2.png", + "hash": "aae0c868f80bdeb5a3345326757c129f" + }, + { + "path": "throw_gif/images/3.png", + "hash": "770abef39d642b721896fc92237beb7a" + }, + { + "path": "throw_gif/images/4.png", + "hash": "29ed013453ef3495b16f231a3c423dd4" + }, + { + "path": "throw_gif/images/5.png", + "hash": "144ba24b867fb739dd2c497e325fb508" + }, + { + "path": "throw_gif/images/6.png", + "hash": "ce41dd6517baf2a389093a2b9a9d1b4b" + }, + { + "path": "throw_gif/images/7.png", + "hash": "08d7b581c394979ab9d63e004b23d67a" + }, + { + "path": "thump/images/0.png", + "hash": "a3db460ecbc8ed4d14bb900d535bf6a5" + }, + { + "path": "thump/images/1.png", + "hash": "4fb3e391510555e146d506705ea0f242" + }, + { + "path": "thump/images/2.png", + "hash": "f004a475c1cd77b1c3852b3df5027f0f" + }, + { + "path": "thump/images/3.png", + "hash": "4e9ef84cdbd3833171f74727ae007aa3" + }, + { + "path": "thump_wildly/images/0.png", + "hash": "1f6e57bccf7f58f6b140abeb1c3b941c" + }, + { + "path": "thump_wildly/images/1.png", + "hash": "22aec171174bb5957d74390e87b6ef83" + }, + { + "path": "thump_wildly/images/10.png", + "hash": "6fcc6eb6320db0a166bee663d999eae5" + }, + { + "path": "thump_wildly/images/11.png", + "hash": "4c3db37b7014adaff0c836f39d4c964f" + }, + { + "path": "thump_wildly/images/12.png", + "hash": "827281875b7952487f338771a4209983" + }, + { + "path": "thump_wildly/images/13.png", + "hash": "a325da842b19d4fe31ab95e0656315f8" + }, + { + "path": "thump_wildly/images/14.png", + "hash": "4d6016470d4d7e461529663cec234cf0" + }, + { + "path": "thump_wildly/images/15.png", + "hash": "4b39fd5edfa9d053c00d2990cd20ff41" + }, + { + "path": "thump_wildly/images/16.png", + "hash": "c48b6254004e13e205a06b70f5ea300d" + }, + { + "path": "thump_wildly/images/17.png", + "hash": "920f35e60237244358c8f9a47d04b7c6" + }, + { + "path": "thump_wildly/images/18.png", + "hash": "09677cbd43ec5d7dc791855ba0e2842e" + }, + { + "path": "thump_wildly/images/19.png", + "hash": "66f6a4dc418a6955ba7b9a5df64dd2d1" + }, + { + "path": "thump_wildly/images/2.png", + "hash": "7efa3aea81c37808f950335be0922424" + }, + { + "path": "thump_wildly/images/20.png", + "hash": "2c2b482fb1154a3cf885ba38223aa2da" + }, + { + "path": "thump_wildly/images/21.png", + "hash": "673ec97403e5d92fc44788942b152642" + }, + { + "path": "thump_wildly/images/22.png", + "hash": "641d5f6862d18b43c2c8c4670f40eb74" + }, + { + "path": "thump_wildly/images/23.png", + "hash": "6af4359dea571c1f14f9f7fba43838d1" + }, + { + "path": "thump_wildly/images/24.png", + "hash": "c055a22db19722fb2f4ea5c4026d8fdd" + }, + { + "path": "thump_wildly/images/25.png", + "hash": "5ef2c5f1a390eb74147291d51ecbc5af" + }, + { + "path": "thump_wildly/images/26.png", + "hash": "b7005e93b8971a5d0e410b3a2fad6722" + }, + { + "path": "thump_wildly/images/27.png", + "hash": "c3a792b3c53f0c20e5d7e11b20ed4545" + }, + { + "path": "thump_wildly/images/28.png", + "hash": "a53192f9a057b5fac112a722a6df83b6" + }, + { + "path": "thump_wildly/images/29.png", + "hash": "12b2d0924e1d697f43a95024e2c5cc47" + }, + { + "path": "thump_wildly/images/3.png", + "hash": "eccebf3e49a818599407970f1835f951" + }, + { + "path": "thump_wildly/images/30.png", + "hash": "f2df7fed5364434fc87f2c200ee8230d" + }, + { + "path": "thump_wildly/images/4.png", + "hash": "0831aee0b3a2def7bef42ac7eae538f4" + }, + { + "path": "thump_wildly/images/5.png", + "hash": "af37e14eba37d272867bc16a650d6cc7" + }, + { + "path": "thump_wildly/images/6.png", + "hash": "af0eebbf35bdf5a9b0726c86322af301" + }, + { + "path": "thump_wildly/images/7.png", + "hash": "cf85f256a80234fbc2cb8dd5fb10a536" + }, + { + "path": "thump_wildly/images/8.png", + "hash": "01a470586d3ca7b4f5ce1701e4a2ea31" + }, + { + "path": "thump_wildly/images/9.png", + "hash": "d191535c58006ac23687e7910d84970e" + }, + { + "path": "tightly/images/0.png", + "hash": "a75986b79eb610e85c68d27a68e121ce" + }, + { + "path": "tightly/images/1.png", + "hash": "ffc5cd12eff13d205b5873810939d071" + }, + { + "path": "tightly/images/10.png", + "hash": "c3be7c205aca24c400e83a98a007a4b1" + }, + { + "path": "tightly/images/11.png", + "hash": "cd36590de435081542abc4f8b5e03ed7" + }, + { + "path": "tightly/images/12.png", + "hash": "dd3dc95f856c43fa3dcad347d7942506" + }, + { + "path": "tightly/images/13.png", + "hash": "5a57c97e80873ac64a2db11e71d0331c" + }, + { + "path": "tightly/images/14.png", + "hash": "d5f7e6eafabe6c1a17b1f985b154ff08" + }, + { + "path": "tightly/images/15.png", + "hash": "85075732dbd183a02b93b7b4eb8c2592" + }, + { + "path": "tightly/images/16.png", + "hash": "8ad15d7c72142b9b3f81146ced8196c8" + }, + { + "path": "tightly/images/17.png", + "hash": "43ec85f7f7fc18485acdb329a7b9c173" + }, + { + "path": "tightly/images/18.png", + "hash": "ba7ac479234cfada00bebe34d96ae8b4" + }, + { + "path": "tightly/images/19.png", + "hash": "7e562d467024416aea69a05e3214cc0e" + }, + { + "path": "tightly/images/2.png", + "hash": "91ab512732c81e4f1ee8a1ed85834523" + }, + { + "path": "tightly/images/3.png", + "hash": "991e06589dd243c45560f4259627c673" + }, + { + "path": "tightly/images/4.png", + "hash": "170d0a57327cb7dc19a44d6dd801a292" + }, + { + "path": "tightly/images/5.png", + "hash": "021d95cebbf539d14d258253d10e9370" + }, + { + "path": "tightly/images/6.png", + "hash": "7f7cb2d5f554dbc3df70128e53653c1f" + }, + { + "path": "tightly/images/7.png", + "hash": "68683eaeb8e1a2d4aa81f6b627738d09" + }, + { + "path": "tightly/images/8.png", + "hash": "dc63be99d968fe0007527d8fc4dcfcf1" + }, + { + "path": "tightly/images/9.png", + "hash": "23e00f03f6a6a883f2550b91646e9fd7" + }, + { + "path": "together/images/0.png", + "hash": "ed562d9d1bf0d345ce83b1b7a83524ac" + }, + { + "path": "tom_tease/images/0.png", + "hash": "fa85e87e37e9c4b504a1780a3c4c6b88" + }, + { + "path": "tom_tease/images/1.png", + "hash": "93def2c1c29dd20ded0f0d0edff718bb" + }, + { + "path": "tom_tease/images/10.png", + "hash": "61581cc55b7d12b42cbd0c1d262f7b76" + }, + { + "path": "tom_tease/images/2.png", + "hash": "788839a66c32cd720963f558496f2f07" + }, + { + "path": "tom_tease/images/3.png", + "hash": "d6017770501a67faade33c99a8b943bd" + }, + { + "path": "tom_tease/images/4.png", + "hash": "bda67a180a0b37cf03730c348f7340a1" + }, + { + "path": "tom_tease/images/5.png", + "hash": "01395809ca036069b2dab6a08fb74dc8" + }, + { + "path": "tom_tease/images/6.png", + "hash": "46c45cab9638783baa241c72b42fdbe8" + }, + { + "path": "tom_tease/images/7.png", + "hash": "4141b5f19e0cb49f0a5642e2ae7c7646" + }, + { + "path": "tom_tease/images/8.png", + "hash": "e975bf0e3a4650dc9794a1dd777e8399" + }, + { + "path": "tom_tease/images/9.png", + "hash": "c481a32e49ac00db55b57d36d65b0d67" + }, + { + "path": "tomb_yeah/images/0.jpg", + "hash": "bc2ac4c1bd62d19c7ec2f98f21d6101d" + }, + { + "path": "twist/images/0.png", + "hash": "f0b59e60d234e2b145e453f1f3ccac5b" + }, + { + "path": "twist/images/1.png", + "hash": "380855eda516a3be0401a5dee662378e" + }, + { + "path": "twist/images/2.png", + "hash": "07b9cf8a73ed851f4965522143c74a8b" + }, + { + "path": "twist/images/3.png", + "hash": "f15b4a115675e62d213d25f6bc7237e8" + }, + { + "path": "twist/images/4.png", + "hash": "946914bdada2b87e06172331e288db83" + }, + { + "path": "wakeup/images/0.jpg", + "hash": "2737c1fd3d312729ee917f5bee3f9016" + }, + { + "path": "wallpaper/images/0.png", + "hash": "5d91e3669643cd2d45fe64c6c9501696" + }, + { + "path": "wallpaper/images/1.png", + "hash": "12eab235d0dc3272884509f6e1ca2bf2" + }, + { + "path": "wallpaper/images/10.png", + "hash": "bd5589b1c64998359a7e1d7bae363aba" + }, + { + "path": "wallpaper/images/11.png", + "hash": "474c2eb9906581e94ce89fcc1636d961" + }, + { + "path": "wallpaper/images/12.png", + "hash": "eb823e78e4088b6abc8273f4466f31c4" + }, + { + "path": "wallpaper/images/13.png", + "hash": "fc6c90ca74d9a8de92bcda226749809b" + }, + { + "path": "wallpaper/images/14.png", + "hash": "22e92ab92d43a4b83d572e2f3d58d6be" + }, + { + "path": "wallpaper/images/15.png", + "hash": "d1a5f088684f0b400a792efbb34c00cb" + }, + { + "path": "wallpaper/images/16.png", + "hash": "7db94297b51c8766705325cc7aa51a09" + }, + { + "path": "wallpaper/images/17.png", + "hash": "edabb58ee911b3d7970afab119ec0b38" + }, + { + "path": "wallpaper/images/18.png", + "hash": "3d8ffcd34928a1bbd75134f1ccee7f04" + }, + { + "path": "wallpaper/images/19.png", + "hash": "41879caa381e4c7107c6f1810a2c308a" + }, + { + "path": "wallpaper/images/2.png", + "hash": "c13be05187841b4b03263e545fe24b76" + }, + { + "path": "wallpaper/images/3.png", + "hash": "7b711459f62b49211078c1473f938062" + }, + { + "path": "wallpaper/images/4.png", + "hash": "d16b19293ef50f06c5ccd192697eec71" + }, + { + "path": "wallpaper/images/5.png", + "hash": "18eb7e80f997eadb512c2151162788dc" + }, + { + "path": "wallpaper/images/6.png", + "hash": "4a3a35a985229434c62e82278a788630" + }, + { + "path": "wallpaper/images/7.png", + "hash": "94dc43c774b32afaa43b42e2fac96ad4" + }, + { + "path": "wallpaper/images/8.png", + "hash": "f123ff9994c6b73a00503a0f71bb61c4" + }, + { + "path": "wallpaper/images/9.png", + "hash": "c622e4dcaca983ed072022692373abc8" + }, + { + "path": "walnut_pad/images/0.png", + "hash": "1868d25967cc950d811b0218d313b42e" + }, + { + "path": "walnut_zoom/images/0.png", + "hash": "54f145f1d66d15726196e6ae690158dc" + }, + { + "path": "walnut_zoom/images/1.png", + "hash": "f61d350a4d95a56083924cd88dbbcd14" + }, + { + "path": "walnut_zoom/images/10.png", + "hash": "0114a2c7010d751674794e9d61febcb5" + }, + { + "path": "walnut_zoom/images/11.png", + "hash": "7ece5bcc469a441e7d3b3f5166ab450f" + }, + { + "path": "walnut_zoom/images/12.png", + "hash": "3ce53d39a6fdb411f88cfbc71a02d553" + }, + { + "path": "walnut_zoom/images/13.png", + "hash": "80f449d1aa5b37f19be05952e9ea4690" + }, + { + "path": "walnut_zoom/images/14.png", + "hash": "3484665c49f4f8e4843be3e016703c01" + }, + { + "path": "walnut_zoom/images/15.png", + "hash": "52017060b380dd4dcab6c330defea997" + }, + { + "path": "walnut_zoom/images/16.png", + "hash": "bd0575ed22a9c9e84da546e15f3eaa36" + }, + { + "path": "walnut_zoom/images/17.png", + "hash": "3354b0a41977265d7768344ed4a01798" + }, + { + "path": "walnut_zoom/images/18.png", + "hash": "097143f19e124348e8823ab11feb2356" + }, + { + "path": "walnut_zoom/images/19.png", + "hash": "98b50bc4b8b8de10fb552821faff3947" + }, + { + "path": "walnut_zoom/images/2.png", + "hash": "90849c6c92dd907cebd0caab396aa36d" + }, + { + "path": "walnut_zoom/images/20.png", + "hash": "4c2d68c5b9299513c8da7a99b320042a" + }, + { + "path": "walnut_zoom/images/21.png", + "hash": "02758244cb76dbbdb087931c0b3aaae2" + }, + { + "path": "walnut_zoom/images/22.png", + "hash": "b8681ce06bda9297986edfa87ba8b9e5" + }, + { + "path": "walnut_zoom/images/23.png", + "hash": "cadf3d90bfc3d9c9989013223604cbb5" + }, + { + "path": "walnut_zoom/images/3.png", + "hash": "7075b474c816617ee6ae77e7a31ded3a" + }, + { + "path": "walnut_zoom/images/4.png", + "hash": "f9c430517346247063fcf9a751c9b497" + }, + { + "path": "walnut_zoom/images/5.png", + "hash": "b41589e48ffe5d2f7ebccb0ccbeb15ae" + }, + { + "path": "walnut_zoom/images/6.png", + "hash": "c247af529838e071ee28bbf89c6884f0" + }, + { + "path": "walnut_zoom/images/7.png", + "hash": "304e586f1c14a677283bcba85d2846ef" + }, + { + "path": "walnut_zoom/images/8.png", + "hash": "d61f4ba636a50858c013b3d271805867" + }, + { + "path": "walnut_zoom/images/9.png", + "hash": "2b3a75dc7874fc47612a0ebe82ead577" + }, + { + "path": "washer/images/0.png", + "hash": "0751d5a44f68ff21f15f1276149971a4" + }, + { + "path": "what_I_want_to_do/images/0.png", + "hash": "6f6f0b5452555aa8c162745db59587f0" + }, + { + "path": "what_he_wants/images/0.png", + "hash": "3e9ca1ac6dacf6cb3dceb30c4d2ca74d" + }, + { + "path": "why_at_me/images/0.png", + "hash": "46a89eb5567c049e12722511653722f7" + }, + { + "path": "why_have_hands/images/0.png", + "hash": "96487155465f64e3b79ef5c7d2a1b882" + }, + { + "path": "wish_fail/images/0.png", + "hash": "ecf3e01a1091ef0d035dd2114e7c9a29" + }, + { + "path": "wooden_fish/images/0.png", + "hash": "6d9a3a2283fa7804c7d0053d7dfd2564" + }, + { + "path": "wooden_fish/images/1.png", + "hash": "e0209aed76388832884846769156dceb" + }, + { + "path": "wooden_fish/images/10.png", + "hash": "cec873d2011eb7939946b7b4b3bff9a3" + }, + { + "path": "wooden_fish/images/11.png", + "hash": "712b2bfd606eb5efbddf673862436008" + }, + { + "path": "wooden_fish/images/12.png", + "hash": "5839329d4d13278ec1dad21e601bf006" + }, + { + "path": "wooden_fish/images/13.png", + "hash": "7aace48b94ec939fccbe0123482193c7" + }, + { + "path": "wooden_fish/images/14.png", + "hash": "ecfca6644fbc21c8a0d1b65ddf10c5f7" + }, + { + "path": "wooden_fish/images/15.png", + "hash": "28ac570cd87020781c754eae7062c91e" + }, + { + "path": "wooden_fish/images/16.png", + "hash": "2361ffd34ff8bfcc4a70da139c92af4d" + }, + { + "path": "wooden_fish/images/17.png", + "hash": "884dee4b95f5e58348f0dbeb38e6120a" + }, + { + "path": "wooden_fish/images/18.png", + "hash": "c5fc69e1b72e4576fae6928b09d77942" + }, + { + "path": "wooden_fish/images/19.png", + "hash": "01bf0df0405a5f3bec8a88f1955c487f" + }, + { + "path": "wooden_fish/images/2.png", + "hash": "2d3f89df34bbbf50314030e19582ac82" + }, + { + "path": "wooden_fish/images/20.png", + "hash": "28c1e84abd5af68d67933cba7cb39293" + }, + { + "path": "wooden_fish/images/21.png", + "hash": "7433c06114ff44dcfdfa586d05b9e12a" + }, + { + "path": "wooden_fish/images/22.png", + "hash": "401386db0da8d0f451f037a83055fb97" + }, + { + "path": "wooden_fish/images/23.png", + "hash": "d88ca4f0cbe0baba69cc5124a26ac271" + }, + { + "path": "wooden_fish/images/24.png", + "hash": "6a0b876ccd4fc868da1b1482130724b2" + }, + { + "path": "wooden_fish/images/25.png", + "hash": "facabd578b33beecebaaad619a931cfc" + }, + { + "path": "wooden_fish/images/26.png", + "hash": "c9b3fbd6530cec0851ab8ad4f4f3e2dd" + }, + { + "path": "wooden_fish/images/27.png", + "hash": "e8e7f3d0cd8fcbc949162cfb513db643" + }, + { + "path": "wooden_fish/images/28.png", + "hash": "28345563148569bfc1c87bdaf15512cd" + }, + { + "path": "wooden_fish/images/29.png", + "hash": "6e509f0cf10d8d0eed6694ad4d67d417" + }, + { + "path": "wooden_fish/images/3.png", + "hash": "408ee9928d337a3e1093b360ce1f9c42" + }, + { + "path": "wooden_fish/images/30.png", + "hash": "e17e47ec541b137347ee5092f50b7af4" + }, + { + "path": "wooden_fish/images/31.png", + "hash": "c46afd5cfe31fbb0dff54a21b5275652" + }, + { + "path": "wooden_fish/images/32.png", + "hash": "c733975ec503cbab59083075fdac7df1" + }, + { + "path": "wooden_fish/images/33.png", + "hash": "6fd18280a7b3daeba31211ec357432ce" + }, + { + "path": "wooden_fish/images/34.png", + "hash": "3469e52d0176a91ab0bde381ac609b3e" + }, + { + "path": "wooden_fish/images/35.png", + "hash": "55a55c562ec107000c6a37cd0b6dc93a" + }, + { + "path": "wooden_fish/images/36.png", + "hash": "cfbd99fac76a8f4730aa2abd0d1f9fc7" + }, + { + "path": "wooden_fish/images/37.png", + "hash": "e0c36d441526f5f0ae1d4f7ebf33f783" + }, + { + "path": "wooden_fish/images/38.png", + "hash": "9b344ef9f6f5d0cef32f7fae1aeb867d" + }, + { + "path": "wooden_fish/images/39.png", + "hash": "0eaf38b4b65ba9d8acb18ddedb482c26" + }, + { + "path": "wooden_fish/images/4.png", + "hash": "7a2c835125447d2c2c91022e9da5bba0" + }, + { + "path": "wooden_fish/images/40.png", + "hash": "605ffccc8dd614b3776bcb1b68f8392d" + }, + { + "path": "wooden_fish/images/41.png", + "hash": "6c3942c1f933048da5842556d45b41fd" + }, + { + "path": "wooden_fish/images/42.png", + "hash": "de6cdb5e5dc569b93bd110e328ccee48" + }, + { + "path": "wooden_fish/images/43.png", + "hash": "a2590f5e678b4b49951d457bff4d7416" + }, + { + "path": "wooden_fish/images/44.png", + "hash": "e25bbc2b3d6b004107a78a07472a26bc" + }, + { + "path": "wooden_fish/images/45.png", + "hash": "f0b6b348a1e95793535a963cdec0c526" + }, + { + "path": "wooden_fish/images/46.png", + "hash": "feaf6200470ca2670250a5ecf1d82638" + }, + { + "path": "wooden_fish/images/47.png", + "hash": "f20eea970a4f715bed311fd3292b6ffe" + }, + { + "path": "wooden_fish/images/48.png", + "hash": "c131eac6cb07efb11fc0db34344375cd" + }, + { + "path": "wooden_fish/images/49.png", + "hash": "4d02f896bd3add73f0607efbd399405a" + }, + { + "path": "wooden_fish/images/5.png", + "hash": "9808b4dfc0739cc92801c07218c437a1" + }, + { + "path": "wooden_fish/images/50.png", + "hash": "79390633b41372c3697d0f5cb875c920" + }, + { + "path": "wooden_fish/images/51.png", + "hash": "094b6e5646bfe1ba46a5a37075316aa4" + }, + { + "path": "wooden_fish/images/52.png", + "hash": "110f85d76529735911de6f2aed883c8d" + }, + { + "path": "wooden_fish/images/53.png", + "hash": "a06dd450c09157782cb1dca8cad9ea88" + }, + { + "path": "wooden_fish/images/54.png", + "hash": "f8417b9eeb8dff82385cd20a5acdb5be" + }, + { + "path": "wooden_fish/images/55.png", + "hash": "db3b4b5518a00cc83db2d6cb1190b4b3" + }, + { + "path": "wooden_fish/images/56.png", + "hash": "0d3848e808467b632a273a51e4b94b94" + }, + { + "path": "wooden_fish/images/57.png", + "hash": "67c3ec213de1f043b3123262c2dcba24" + }, + { + "path": "wooden_fish/images/58.png", + "hash": "9c58d568c71c2724985853f7843ae11a" + }, + { + "path": "wooden_fish/images/59.png", + "hash": "d6e191f08943eeda4afd3d038447810a" + }, + { + "path": "wooden_fish/images/6.png", + "hash": "25d5ae7ef4a3cd3f4443f632fdd968e7" + }, + { + "path": "wooden_fish/images/60.png", + "hash": "e834e553cc5f24fbbe99c8dbd92d440e" + }, + { + "path": "wooden_fish/images/61.png", + "hash": "45491e4be378af118a0d55628837ae64" + }, + { + "path": "wooden_fish/images/62.png", + "hash": "d71f36fca51f8713105c1d2a855b89bb" + }, + { + "path": "wooden_fish/images/63.png", + "hash": "aeef95bbadaa5fb5f0e5845a96d82dbf" + }, + { + "path": "wooden_fish/images/64.png", + "hash": "8c2465ab4495a49e3be4fdc8a0e1c773" + }, + { + "path": "wooden_fish/images/65.png", + "hash": "c09e998c676b8d1982a1db064823bf6e" + }, + { + "path": "wooden_fish/images/7.png", + "hash": "01a98a53bda386901f09ed2e146c0c3c" + }, + { + "path": "wooden_fish/images/8.png", + "hash": "e16848c937770c31d310aa71661558aa" + }, + { + "path": "wooden_fish/images/9.png", + "hash": "64d52829d84b8f4a1aa98c0248be1380" + }, + { + "path": "worship/images/0.png", + "hash": "bd2f7121444b63365141cb292da532d5" + }, + { + "path": "worship/images/1.png", + "hash": "6145ed9f4c81b253d53fdedab1a63886" + }, + { + "path": "worship/images/2.png", + "hash": "c5e679727b7a5d5ca5a5f32bfba08f87" + }, + { + "path": "worship/images/3.png", + "hash": "56174982455efd6b7e7d41711cb72d0c" + }, + { + "path": "worship/images/4.png", + "hash": "661d4a2397fdf2f07d9ef4a48c825ed1" + }, + { + "path": "worship/images/5.png", + "hash": "6eeff86edfbe977e92ee1027ec68b011" + }, + { + "path": "worship/images/6.png", + "hash": "91ccfb9ae60b673e765a5e616c032a77" + }, + { + "path": "worship/images/7.png", + "hash": "e298d69f5c3eade7b741d6ec260f7a15" + }, + { + "path": "worship/images/8.png", + "hash": "9053063bc46e88f0a33c642037dafc39" + }, + { + "path": "worship/images/9.png", + "hash": "3861aae5494bd34ce6937d6224c48915" + }, + { + "path": "wujing/images/0.jpg", + "hash": "c187cfc302ce2c8583e7d18bfdde245a" + }, + { + "path": "youtube/images/corner.png", + "hash": "2f6f9a380e8c3045022d28fed799ff1c" + } +] diff --git a/resources/update_list.py b/resources/update_list.py index d17db930d1276c97bdf5de3bf75c99b1fed9e0a4..ed1d45d6cd2b0845dbceaf12f0355c67fec7a89e 100644 --- a/resources/update_list.py +++ b/resources/update_list.py @@ -9,7 +9,7 @@ memes_path = dir_path.parent / "meme_generator" / "memes" def update(): resource_list = [] for file in memes_path.rglob("*"): - if not file.is_file() or not file.suffix in [".jpg", ".png", ".gif"]: + if not file.is_file() or file.suffix not in [".jpg", ".png", ".gif"]: continue resource_list.append( { @@ -19,7 +19,8 @@ def update(): ) resource_list.sort(key=lambda i: i["path"]) with open(dir_path / "resource_list.json", "w", encoding="utf-8") as f: - json.dump(resource_list, f, ensure_ascii=False, indent=4) + json.dump(resource_list, f, ensure_ascii=False, indent=2) + f.write("\n") if __name__ == "__main__":