├── .github ├── final.json ├── geoip.db ├── merge.sh ├── rule-sets.sh ├── serenity.db ├── serenity.json ├── tag-dedup.sh ├── tagging.py ├── warp-singbox-config.py └── workflows │ ├── sing-box.yaml │ └── warp.yaml.disabled ├── LICENSE ├── README.md ├── banner.jpg ├── release ├── rule-sets │ ├── block.json │ ├── block.srs │ ├── direct.json │ ├── direct.srs │ ├── proxy.json │ └── proxy.srs └── sing-box │ ├── cn-notun.json │ ├── cn-sfw-notun.json │ ├── cn-sfw.json │ ├── cn.json │ ├── ir-notun.json │ ├── ir-sfw-notun.json │ ├── ir-sfw.json │ ├── ir.json │ ├── ru-notun.json │ ├── ru-sfw-notun.json │ ├── ru-sfw.json │ ├── ru.json │ ├── un-notun.json │ ├── un-sfw-notun.json │ ├── un-sfw.json │ └── un.json └── templates └── sing-box ├── template-cn-notun.json ├── template-cn-sfw-notun.json ├── template-cn-sfw.json ├── template-cn.json ├── template-ir-notun.json ├── template-ir-sfw-notun.json ├── template-ir-sfw.json ├── template-ir.json ├── template-ru-notun.json ├── template-ru-sfw-notun.json ├── template-ru-sfw.json ├── template-ru.json ├── template-un-notun.json ├── template-un-sfw-notun.json ├── template-un-sfw.json └── template-un.json /.github/final.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/.github/final.json -------------------------------------------------------------------------------- /.github/geoip.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/.github/geoip.db -------------------------------------------------------------------------------- /.github/merge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/.github/merge.sh -------------------------------------------------------------------------------- /.github/rule-sets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/.github/rule-sets.sh -------------------------------------------------------------------------------- /.github/serenity.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/.github/serenity.db -------------------------------------------------------------------------------- /.github/serenity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/.github/serenity.json -------------------------------------------------------------------------------- /.github/tag-dedup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/.github/tag-dedup.sh -------------------------------------------------------------------------------- /.github/tagging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/.github/tagging.py -------------------------------------------------------------------------------- /.github/warp-singbox-config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/.github/warp-singbox-config.py -------------------------------------------------------------------------------- /.github/workflows/sing-box.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/.github/workflows/sing-box.yaml -------------------------------------------------------------------------------- /.github/workflows/warp.yaml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/.github/workflows/warp.yaml.disabled -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/README.md -------------------------------------------------------------------------------- /banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/banner.jpg -------------------------------------------------------------------------------- /release/rule-sets/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/release/rule-sets/block.json -------------------------------------------------------------------------------- /release/rule-sets/block.srs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/release/rule-sets/block.srs -------------------------------------------------------------------------------- /release/rule-sets/direct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/release/rule-sets/direct.json -------------------------------------------------------------------------------- /release/rule-sets/direct.srs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/release/rule-sets/direct.srs -------------------------------------------------------------------------------- /release/rule-sets/proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/release/rule-sets/proxy.json -------------------------------------------------------------------------------- /release/rule-sets/proxy.srs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/release/rule-sets/proxy.srs -------------------------------------------------------------------------------- /release/sing-box/cn-notun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/release/sing-box/cn-notun.json -------------------------------------------------------------------------------- /release/sing-box/cn-sfw-notun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/release/sing-box/cn-sfw-notun.json -------------------------------------------------------------------------------- /release/sing-box/cn-sfw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/release/sing-box/cn-sfw.json -------------------------------------------------------------------------------- /release/sing-box/cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/release/sing-box/cn.json -------------------------------------------------------------------------------- /release/sing-box/ir-notun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/release/sing-box/ir-notun.json -------------------------------------------------------------------------------- /release/sing-box/ir-sfw-notun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/release/sing-box/ir-sfw-notun.json -------------------------------------------------------------------------------- /release/sing-box/ir-sfw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/release/sing-box/ir-sfw.json -------------------------------------------------------------------------------- /release/sing-box/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/release/sing-box/ir.json -------------------------------------------------------------------------------- /release/sing-box/ru-notun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/release/sing-box/ru-notun.json -------------------------------------------------------------------------------- /release/sing-box/ru-sfw-notun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/release/sing-box/ru-sfw-notun.json -------------------------------------------------------------------------------- /release/sing-box/ru-sfw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/release/sing-box/ru-sfw.json -------------------------------------------------------------------------------- /release/sing-box/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/release/sing-box/ru.json -------------------------------------------------------------------------------- /release/sing-box/un-notun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/release/sing-box/un-notun.json -------------------------------------------------------------------------------- /release/sing-box/un-sfw-notun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/release/sing-box/un-sfw-notun.json -------------------------------------------------------------------------------- /release/sing-box/un-sfw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/release/sing-box/un-sfw.json -------------------------------------------------------------------------------- /release/sing-box/un.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/release/sing-box/un.json -------------------------------------------------------------------------------- /templates/sing-box/template-cn-notun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/templates/sing-box/template-cn-notun.json -------------------------------------------------------------------------------- /templates/sing-box/template-cn-sfw-notun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/templates/sing-box/template-cn-sfw-notun.json -------------------------------------------------------------------------------- /templates/sing-box/template-cn-sfw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/templates/sing-box/template-cn-sfw.json -------------------------------------------------------------------------------- /templates/sing-box/template-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/templates/sing-box/template-cn.json -------------------------------------------------------------------------------- /templates/sing-box/template-ir-notun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/templates/sing-box/template-ir-notun.json -------------------------------------------------------------------------------- /templates/sing-box/template-ir-sfw-notun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/templates/sing-box/template-ir-sfw-notun.json -------------------------------------------------------------------------------- /templates/sing-box/template-ir-sfw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/templates/sing-box/template-ir-sfw.json -------------------------------------------------------------------------------- /templates/sing-box/template-ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/templates/sing-box/template-ir.json -------------------------------------------------------------------------------- /templates/sing-box/template-ru-notun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/templates/sing-box/template-ru-notun.json -------------------------------------------------------------------------------- /templates/sing-box/template-ru-sfw-notun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/templates/sing-box/template-ru-sfw-notun.json -------------------------------------------------------------------------------- /templates/sing-box/template-ru-sfw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/templates/sing-box/template-ru-sfw.json -------------------------------------------------------------------------------- /templates/sing-box/template-ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/templates/sing-box/template-ru.json -------------------------------------------------------------------------------- /templates/sing-box/template-un-notun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/templates/sing-box/template-un-notun.json -------------------------------------------------------------------------------- /templates/sing-box/template-un-sfw-notun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/templates/sing-box/template-un-sfw-notun.json -------------------------------------------------------------------------------- /templates/sing-box/template-un-sfw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/templates/sing-box/template-un-sfw.json -------------------------------------------------------------------------------- /templates/sing-box/template-un.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demarcush/breakfree/HEAD/templates/sing-box/template-un.json --------------------------------------------------------------------------------