diff --git a/core/utils.py b/core/utils.py index 6e84455..45d7cda 100644 --- a/core/utils.py +++ b/core/utils.py @@ -103,9 +103,9 @@ def ip_enclosed_alphanumeric(ips, ip): intab = "1234567890abcdefghijklmnopqrstuvwxyz" if ip == "127.0.0.1": - ips.add("ⓛⓞⓒⓐⓛⓣⓔⓢⓣ.ⓜⓔ") + ips.add("ⓛⓞⒸⒶⓛⓣⒺⓢⓣ.ⓜⒺ") - outtab = "①②③④⑤⑥⑦⑧⑨⓪ⓐⓑⓒⓓⓔⓕⓖⓗⓘⓙⓚⓛⓜⓝⓞⓟⓠⓡⓢⓣⓤⓥⓦⓧⓨⓩ" + outtab = "①②③④⑤⑥⑦⑧⑨⓪ⒶⒷⒸⒹⒺⒻⒼⒽⒾⒿⓀⓁⓂⓃⓄⓅⓆⓇⓈⓉⓊⓋⓌⓍⓎⓏ" trantab = ip.maketrans(intab, outtab) ips.add( ip.translate(trantab) )